The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
87 views

CMake: setting an environmental variable for ctest (or otherwise getting failed test output from ctest/make test automatically)

I want ctest to show me the failed tests output by default. That is, I want to run: $ make all test and see any output of failed tests without having to cat Testing/Temporary/LastTest.log. It ...
0
votes
0answers
47 views

Why is CTest code coverage couting comment lines as uncovered?

This is a snippet of my code coverage report in CDash: 133 0 | /*! 134 0 | * @fn getTestErrorFileName() 135 0 | * @brief returns path of test error ...
1
vote
1answer
50 views

How to get the hostname with CMake or CTest

is it possible to easily get the hostname on which the CMake configuration is launched ? If it is not possible, how can I get the hostname on which CTest is launched ? I am using CMake and CTest ...
0
votes
2answers
97 views

Add bash command to CMake test

I recently found out about CMake testing possibilities. I wrote several test-clients using it, they work ok, but to perform tests I need to: cmake .. -> make -> then run my program in the background ...
2
votes
1answer
107 views

How to run ctest after building my project with cmake

I want my tests to be launched each time my project is successfully built. And if some tests are broken I want my build to be broken too. By default I need to run tests manually by running ctest ...
0
votes
0answers
53 views

CMake running CTest with check under Visual C++ 2010

im using CMake for my C++ project and CTest with libcheck for the unittests. Well, installing libcheck under Linux was pretty easy just, configure ./; make install. Asides, im talking about this ...
1
vote
1answer
51 views

CTest, VS2010. How to get rid of Nightly, NightlyMemCheck, etc?

I'm using CMake and CTest with Visual Studio 2010. After ENABLE_TESTING() and several ADD_TEST()s my solution contains projects with names 'Continuous', 'Experimental' and others. I don't need them ...
0
votes
2answers
90 views

CMake testing sources from different folder

I started playing around with CMake to create a project with Qt and test it with Google Test. At the moment, I succesfully found a way to compile and link all the required libraries. However, I ...
1
vote
1answer
256 views

No tests found when using gtest with cmake/ctest

I have a project with the following structure: linalg ├── build ├── CMakeLists.txt ├── docs │   └── Doxyfile ├── include │   └── linalg │   └── vector3.hpp ├── src │   ├── CMakeLists.txt │   └── ...
2
votes
1answer
108 views

How to rerun the failed tests with ctest?

I'm using CTest to launch the tests of my project. I would like to launch only the tests that have failed at the last execution. Is there a simple way to do that with CTest ?
3
votes
2answers
208 views

Access CMake cache variable from CTest script

My project links to a third-party library that comes with a valgrind suppression file, as well as a CMake script. The script stores the location of the suppression file in a CMake cache variable. I ...
2
votes
1answer
225 views

CMake/CTest & gcovr: filename extensions?

After compiling with CMake with flags --coverage, and running my boost unit test programs, files with extension .cpp.gcda and .cpp.gcno are created. If I then run gcovr it claims it cannot find the ...
0
votes
2answers
144 views

ctest create_test_sourcelist with fortran and char**

I have some fortran tests I would like to run in CTest using create_test_sourcelist. This is a utility that creates a driver in C or C++, which calls the fortran test routines and expects the ...
0
votes
1answer
139 views

Creating groups of tests with Ctest

I am trying to group individual ctest tests together but have so far been unsuccessful. For example if I have the following tests: add_test(test1) add_test(test2) add_test(test3) I would like to ...
1
vote
1answer
200 views

CMake and Continuous Integration with several dependent projects

I currently configure CMake/CTest for CI. Everything works fine except for the following: We have several projects which depend on each other. In our toplevel build script, though, they are just being ...
1
vote
1answer
346 views

How to pass ${CTEST_CONFIGURATION_TYPE} using add_test in cmake

I can't seem to figure out how to pass ${CTEST_CONFIGURATION_TYPE} using add_test in cmake without having CMake add additional escape characters. I am currently using cmake to generate VS project ...
6
votes
2answers
544 views

Ctest/CDash workflow : deploying nightly builds

I use/maintain a few CMake projects, so I started examining CTest/CDash, but there's something that I can't figure out: Is it only made to display build/test results? (aka beautified logs) Or : May ...
2
votes
1answer
137 views

How to change the directory CTest runs from in generated Visual Studio Files

I am currently having trouble changing the directory CTest in when using the RUN_TESTS project generated by CMake. Currently CMAKE_RUNTIME_OUTPUT_DIRECTORY is set to a custom path. As a result when ...
1
vote
1answer
248 views

How to use check library with CTest for unit testing in C

I have project in which I want to use check library for unit testing. My current project is using CMake and has following structure: . ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── README ├── ...
2
votes
1answer
279 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 ...
2
votes
2answers
314 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 ...
2
votes
1answer
690 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: ...
9
votes
1answer
3k 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 ?
9
votes
3answers
3k 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 ...
0
votes
1answer
151 views

CDash build ID not set (CTest, CMake)

I have a CDash configured to accept 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
168 views

CTest build ID not set

I have a CDash configured to accept 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 ...
4
votes
1answer
2k 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
3
votes
1answer
354 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 ...
9
votes
1answer
4k 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 ...
2
votes
2answers
1k 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 ...
5
votes
1answer
1k 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
150 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
1answer
1k 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 ...
20
votes
6answers
6k 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 ...