Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
1answer
2k views

CMake & CTest : make test doesn't build tests

I'm trying CTest in CMake in order to automatically run some of my tests using make test target. The problem is CMake does not "understand" that the test I'm willing to run has to be built since it is ...
5
votes
1answer
892 views

How to get CTest results in Hudson / Jenkins

I'm using CTest (part of CMake) for my automated tests. How do I get CTest results in the Jenkins dashboard ? Or, phrased differently, how do I get CTest to output in JUnit-like XML ?
3
votes
2answers
786 views

Using cmake how do I get verbose output from ctest?

I'm using CMake to build my project. I have added a unit test binary which is using boost unit testing framework. This one binary contains all of the unit tests. I've added that binary to be run by ...
3
votes
1answer
1k views

How to adapt my unit tests to cmake and ctest?

Until now, I've used an improvised unit testing procedure - basically a whole load of unit test programs run automatically by a batch file. Although a lot of these explicitly check their results, a ...
3
votes
1answer
370 views

CTest with multiple commands

I'm building some tests using CTest. Usually, I can set up the test by simply the line: ADD_TEST(Test_Name executable args) However, I've run into a problem, I have some tests that require two ...
2
votes
1answer
122 views

CMake CTest prevent truncation of test name

I'm currently running CTest, but I have a problem whereby tests with long names. For example: "API Part1 : Some test information w/ this input file" get's truncated to something like "API Part1 : ...
1
vote
2answers
83 views

cmake/ctest: is it possible to use the creation of build targets as tests?

I have a program which reads a description of a file format (ISO 10303-11 for the curious) and generates c++ from it. The generated code is compiled into a library, and the library is linked with ...
1
vote
1answer
98 views

How to find where the error is while running ctest

I got the following output after running make test, but how do i get to know what the error is? Running tests... Test project /home/puneet/puneet/office/alkimia/payment/build Start 1: ...
1
vote
1answer
73 views

CDash build id not set (CTest, CMake)

I have a cdash configured to accepts posts for automatic builds and tests. However, when any system attempts to post results to the CDash, the following error is produced. The result is that each ...
1
vote
2answers
75 views

CTest build id not set

I have a cdash configured to accepts posts for automatic builds and tests. However, when any system attempts to post results to the CDash, the following error is produced. The result is that each ...
1
vote
1answer
496 views

Build Qt Tests with CMake

Can anyone give me an example of some QT test code and a CMakeLists.txt that build with Cmake and ran with CTest. I can't seem to find any! -Kurtis
1
vote
1answer
112 views

How do you use CTEST_CUSTOM_PRE_TEST?

I've searched all the docs but can't seem to find a single example of using CTEST_CUSTOM_PRE_TEST. Basically I need to start and run some commands on the server before the test runs. So I need to add ...
1
vote
2answers
477 views

CMake and CTest: How to make target “Nightly” actually build the tests

It's a well known problem that executing make "test" doesn't build the tests as discussed here. As suggested, the problem can be partly solved with the artificial target "check". I want to know how I ...
1
vote
1answer
696 views

CMake and CTest question

In the test that I want to run using CTest I should be adding the test that I want to run, with the following command: add_test(TestName ExeName) problem is what if I want to supply an argument to ...
0
votes
0answers
43 views

Running Nested Tests with CTest

I have a small, but non-trivial project, which for architectural reasons is built as three separete projects, they are inter-dependent, so unless I'm particularly focused, or improving test-coverage ...