- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一个执行 ctest
的 Jenkins
,后者又执行多个单元测试。为测试运行配置了 120 分钟的全局超时。
我的一个测试程序偶尔会因配置的超时而卡住和终止。
我喜欢的是问题情况下测试程序的核心转储。所以我想在达到超时时执行自定义命令(例如 gcore XXX
)。
如何在 Jenkins
和/或 ctest
中配置它?
最佳答案
我编写了自己的不可移植 脚本来完成这项工作。希望它能为他人提供帮助和/或启发......
#!/usr/bin/env ruby
#watchers the children of ctest.
#takes a gcore of the child and kills it, if its runtime exceeds the configured timeout
#make test will show a line like this, if this watch dog killed the test:
# Start 49: test_logging
#49/86 Test #49: test_logging ......................***Exception: Other 62.33 sec
require "time"
TIMEOUT_SEC = (ENV["TIMEOUT_SEC"] || 23*60).to_i
DIR_CORES = ENV["DIR_CORES"] || "/tmp/corefiles/"
KILL_SIGNAL = ENV["KILL_SIGNAL"] || 9
SLEEP_TIME_SEC = (ENV["SLEEP_TIME_SEC"] || 5).to_i
puts "Started ctest watch dog."
puts Process.daemon
while true do
pid_ctest = %x(pgrep ctest).strip
if !pid_ctest.nil? && !pid_ctest.empty?
# puts "ctest: #{pid_ctest}"
pid_child = %x(ps -o ppid= -o pid= -A | awk '$1 == #{pid_ctest}{print $2}').strip
if !pid_child.nil? && !pid_child.empty?
# puts "child: #{pid_child}"
runtime_child = %x(ps -o etime= -p #{pid_child}).strip
timeary = runtime_child.strip.split(":")
hour, min, sec = 0
if timeary.length > 2
hour = timeary[0]
min = timeary[1]
sec = timeary[2]
else
min = timeary[0]
sec = timeary[1]
end
res = %x(pstree #{pid_ctest})
ary = res.split("-")
ary.delete_if {|x| x.empty?}
child_name = ary[1].strip
t = hour.to_i*60*60 + min.to_i*60 + sec.to_i
if t > TIMEOUT_SEC
puts "kill child: #{pid_child} #{runtime_child} #{t.to_i}"
puts "dumping core to #{DIR_CORES}/#{child_name}"
%x(gcore -o #{DIR_CORES}/#{child_name} #{pid_child} )
puts "killing with signal #{KILL_SIGNAL}"
%x(kill --signal #{KILL_SIGNAL} #{pid_child})
else
puts "Letting child alive. ctest: #{pid_ctest}, child: #{pid_child}, name: #{child_name}, runtime: #{runtime_child}, in sec: #{t}. Killing in #{TIMEOUT_SEC-t} sec"
end
end
end
sleep SLEEP_TIME_SEC
end
关于linux - 如何在 jenkins 上的 ctest 超时时执行自定义命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46092689/
我希望 ctest 在默认情况下向我显示失败的测试输出。也就是说,我要运行: $ make all test 无需 cat Testing/Temporary/LastTest.log 即可查看失败测
我发现通用 ctest命令没有提供关于测试的太多信息,所以我想添加 ctest --output-on-failure但不必让用户担心标志。我希望他们只是cmake , make项目并运行 ctest
我有一个结构的项目 ├── CMakeLists.txt ├── mzl.c ├── mzl.h └── tests ├── CMakeLists.txt ├── mzl-commun
我有一个基于 CMake 的项目,它由几个子组件组成,它们都可以独立编译和测试。目录布局如下所示: . ├── CMakeLists.txt ├── comp1 │ ├── CMakeLists.
在 CMake 中,可以使用 add_subdirectory(foo EXCLUDE_FROM_ALL)排除在 foo 下定义的目标默认情况下构建,除非其他目标需要它们,如下所示: add_subd
在 CMake 中,可以使用 add_subdirectory(foo EXCLUDE_FROM_ALL)排除在 foo 下定义的目标默认情况下构建,除非其他目标需要它们,如下所示: add_subd
这个问题在这里已经有了答案: How to tell a test under cmake/ctest where to find its input data ... without changi
我的 cmake 项目具有以下树结构: ├── CMakeLists.txt ├── basis ├── build ├── deps ├── study 其中 /deps 包含所有第 3 方依赖项,
我只想运行特定选择的测试。来自CMake Documentation我找到了 -R 和 -E , 所以我可以运行像 ctest -E UNWANTED_TESTS -R WANTED_TESTS 这
假设在 CMakeLists.txt 我有 add_executable(mytarget main.cpp) enable_testing() add_test(mytarget_test0 myt
我找不到如何指定标签。应该是这样的 ADD_TEST( FirstTest RunSomeProgram "withArguments" ) SET_TESTS_PROPERTIES( FirstTe
我想默认禁用一组测试,但能够在明确定位时运行它们。 例如。假设我有一个项目,其中包含许多通过 add_test(NAME SomeNameHere COMMAND SomeCommandHere) 添
我为我的项目编写了许多单元测试,并使用 CTest 执行。我想将结果集成到我的 TeamCity 构建中。我已经为我的测试框架(Boost Test)下载并设置了插件。 我遇到的问题是,测试运行时使用
我正在使用 CMake 开发一个项目,并且刚刚集成了一些 CppUnit 测试。我想使用 CTest,因此我在 CMakeLists.txt 文件中使用了 add_test,以便在键入 make te
当我使用 ctest 接口(interface)进行 cmake ( add_test(...) ),并运行 make 目标 make test ,我的几个测试失败了。当我直接从二进制构建文件夹的命令
如上指定 https://cmake.org/cmake/help/v3.7/manual/ctest.1.html , ctest 支持过滤测试以通过正则表达式运行。不幸的是,我似乎无法找出 cte
打电话 ctest -j4 -DCTEST_MEMORYCHECK_COMMAND="/usr/bin/valgrind" -DMemoryCheckCommand="/usr/bin/valgrin
我正在尝试为某些遗留软件创建一些集成测试。当前进行测试的方法是使用已知输入运行代码,然后手动将输出与已知输出进行比较。 我想自动化这个过程,因为我已经在使用 CMake 我想用 CTest 来做这个。
我的任务是为基于 C++ 的项目构建 Python 绑定(bind)(使用 swig)。该项目使用 cmake 进行构建,使用 ctest 进行测试,并且应该将绑定(bind)的构建和测试集成到其中。
我可以在 this 之后使用 cmake 运行覆盖率检查维基页面。这非常简单,只需设置一个仪表板,我就可以在浏览器上很好地查看代码覆盖率(后一部分)。但我不想每次都 ctest 只是为了检查单个文件的
我是一名优秀的程序员,十分优秀!