1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* benchmark/driver.rb: exit benchmarking if a benchmark process

receives signals.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54052 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2016-03-09 06:02:18 +00:00
parent cccfe4774c
commit b065141050
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Wed Mar 9 14:59:11 2016 Koichi Sasada <ko1@atdot.net>
* benchmark/driver.rb: exit benchmarking if a benchmark process
receives signals.
Wed Mar 9 13:22:49 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
* test/lib/memory_status.rb: make Memory::Status independent of

View file

@ -319,6 +319,7 @@ class BenchmarkDriver
}
if $? != 0
raise $?.inspect if $? && $?.signaled?
output "\`#{cmd}\' exited with abnormal status (#{$?})"
0
else