如何更改生成的 Visual Studio 文件中 CTest 运行的目录

发布于 2025-01-07 14:41:27 字数 242 浏览 0 评论 0原文

我目前在使用 CMake 生成的 RUN_TESTS 项目时更改目录 CTest 时遇到问题。当前 CMAKE_RUNTIME_OUTPUT_DIRECTORY 设置为自定义路径。因此,当 CTest 尝试运行时,它是从不包含二进制文件的目录中执行的。

作为临时解决方法,我使用 ${RUNTIME_OUTPUT_DIRECTORY}\test 调用 ADD_TEST 但我不确定这是否是正确的解决方案。有没有更好的方法更改 CTest 使用的默认目录?

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 CTest attempts to run, it is doing so from a directory that contains no binaries.

As a temporary workaround I am calling ADD_TEST using ${RUNTIME_OUTPUT_DIRECTORY}\test but I am not sure if this is the correct solution. Is there a way a better way change the default directory used by CTest?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南街九尾狐 2025-01-14 14:41:27

如果您的 ADD_EXECUTABLE 目标是 my_exe 且您的测试名称为 my_test,您应该能够调用 ADD_TEST,如下所示:

ADD_TEST(NAME my_test COMMAND my_exe)

有关更多信息,请运行

cmake --help-command ADD_TEST

If your ADD_EXECUTABLE target is say my_exe and your test name my_test, you should be able to call ADD_TEST like:

ADD_TEST(NAME my_test COMMAND my_exe)

For further info, run

cmake --help-command ADD_TEST
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文