summaryrefslogtreecommitdiff
path: root/test/lib/test
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-07-01 00:40:34 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-07-01 00:40:34 +0000
commitab606d8f111afdfa6408edd1428caedddbdb4d13 (patch)
treea8da33f2469721c99a0ce598a7b42f159a29c25b /test/lib/test
parent7ef7c6d6f3d21895bc6241fc3c6f01c96bda456c (diff)
exception must make process stop
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46632 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/lib/test')
-rw-r--r--test/lib/test/unit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/test/unit.rb b/test/lib/test/unit.rb
index 2f7ad48e45..f0bcf9ba80 100644
--- a/test/lib/test/unit.rb
+++ b/test/lib/test/unit.rb
@@ -555,7 +555,7 @@ module Test
r = Marshal.load($1.unpack("m")[0])
rescue
print "unknown object: #{$1.unpack("m")[0].dump}"
- return false
+ return true
end
result << r[0..1] unless r[0..1] == [nil,nil]
rep << {file: worker.real_file, report: r[2], result: r[3], testcase: r[5]}