gpt4 book ai didi

c++ - Catch2 cmake函数 'catch_discover_tests()'在构建时不起作用

转载 作者:行者123 更新时间:2023-12-02 10:38:55 24 4
gpt4 key购买 nike

我使用Catch2进行单元测试。我要在构建后运行测试。
因此,我在Catch中使用了'cath_discover_test'函数。
但是在构建时,不要打印任何有关测试的内容。如下所示:

> cmake --build .
blah ~
blah ~
PostBuildEvent:
setlocal
"C:\Program Files\CMake\bin\cmake.exe" -D TEST_TARGET=foo -D TEST_EXECUTABLE=C:/Users/MyName/workspace/someproject/build/
Debug/foo.exe -D TEST_EXECUTOR= -D TEST_WORKING_DIR=C:/Users/MyName/workspace/someproject/build -D TEST_SPEC= -D TEST_EXT
RA_ARGS= -D TEST_PROPERTIES= -D TEST_PREFIX= -D TEST_SUFFIX= -D TEST_LIST=foo_TESTS -D CTEST_FILE=C:/Users/MyName/workspace/a
someproject/build/foo_tests-b858cb2.cmake -P "C:/Program Files (x86)/Catch2/lib/cmake/Catch2/CatchAddTests.cmake"
if %errorlevel% neq 0 goto :cmEnd
:cmEnd
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
:cmErrorLevel
exit /b %1
:cmDone
if %errorlevel% neq 0 goto :VCEnd
:VCEnd
blah ~
blah ~
end

这是 test.cmake 文件的源代码:
find_package(Catch2 REQUIRED)
add_executable(foo ${PROJECT_SOURCE_DIR}/test/test.cpp)
target_include_directories(foo PUBLIC ${PROJECT_SOURCE_DIR}/include)
target_link_libraries(foo Catch2::Catch2)

include(CTest)
include(Catch)
catch_discover_tests(foo)

但是,我通过下面的ctest执行测试,测试工作。
>ctest
Test project C:/Users/MyNames/workspace/someproject/build
Start 1: some class test
1/1 Test #1: some class test .............***Failed 0.02 sec

0% tests passed, 1 tests failed out of 1

Total Test time (real) = 0.04 sec

The following tests FAILED:
1 - some class test (Failed)
Errors while running CTest

构建后如何运行测试并显示测试结果的输出?

最佳答案

CMake不希望您在构建的同时运行测试。您可以想象一个交叉编译器的情况,其中目标体系结构与您的主机构建机器不同,在这种情况下,在构建时运行测试是没有意义的。

我想将已构建的测试作为CMake构建的一部分运行,请查看add_custom_command以运行POST_BUILD命令。

关于c++ - Catch2 cmake函数 'catch_discover_tests()'在构建时不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54388883/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com