如何在cmake中将引用的参数传递给add_test?

时间:2013-06-23 20:14:17

标签: cmake googletest ctest

我正在尝试将参数从cmake传递给gtest测试套件:

add_test(NAME craft_test
         COMMAND craft --gtest_output='xml:report.xml')

问题是这些参数被引号包围,为什么?它看起来像一个bug,是否有一种避免它的好方法?

$ ctest -V
UpdateCTestConfiguration  from :/usr/local/src/craft/build-analyze/DartConfiguration.tcl
UpdateCTestConfiguration  from :/usr/local/src/craft/build-analyze/DartConfiguration.tcl
Test project /usr/local/src/craft/build-analyze
Constructing a list of tests
Done constructing a list of tests
Checking test dependency graph...
Checking test dependency graph end
test 1
    Start 1: craft_test

1: Test command: /usr/local/src/craft/build-analyze/craft "--gtest_output='xml:report.xml'"
1: Test timeout computed to be: 9.99988e+06
1: WARNING: unrecognized output format "'xml" ignored.
1: [==========] Running 1 test from 1 test case.
1: [----------] Global test environment set-up.
1: [----------] 1 test from best_answer_test
1: [ RUN      ] best_answer_test.test_sample
1: [       OK ] best_answer_test.test_sample (0 ms)
1: [----------] 1 test from best_answer_test (0 ms total)
1: 
1: [----------] Global test environment tear-down
1: [==========] 1 test from 1 test case ran. (0 ms total)
1: [  PASSED  ] 1 test.
1/1 Test #1: craft_test .......................   Passed    0.00 sec

100% tests passed, 0 tests failed out of 1

Total Test time (real) =   0.00 sec

1 个答案:

答案 0 :(得分:8)

这不是CMake补充的引用,这是问题所在;它是'xml:report.xml'中单引号的错误。

你应该这样做:

add_test(NAME craft_test
     COMMAND craft --gtest_output=xml:report.xml)