Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

4
  • As said cauchy Jenkins might do the job, for the terminology Jenkins is a Continous Integration (CI) Platform Commented Jun 28, 2017 at 13:32
  • How do you run your existing tests currently? Some xUnit testing tool? Just some higher-level script running lower-level scripts? Commented Jun 28, 2017 at 18:21
  • @DocBrown: Our existing tests (that run automatically) are gtest executables. During CI, we run a script calling them all (and handling timeouts; crashes; etc.). We can tweak the script to allow for a wider variety of tests, but it's at the point where it's getting complex enough for me to look for established tools. Commented Jun 29, 2017 at 5:37
  • In the end I wound up using CTest, which does exactly what I was looking for here. However, since the question is one of definition and terminology, not a tool-request (and since CTest is pretty specific to certain environments), I'm leaving the question open. Commented May 2, 2019 at 17:48