summaryrefslogtreecommitdiff
path: root/tool/test/testunit
diff options
context:
space:
mode:
Diffstat (limited to 'tool/test/testunit')
-rw-r--r--tool/test/testunit/test_parallel.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/tool/test/testunit/test_parallel.rb b/tool/test/testunit/test_parallel.rb
index 24e1f89bcb..60fc2073dd 100644
--- a/tool/test/testunit/test_parallel.rb
+++ b/tool/test/testunit/test_parallel.rb
@@ -98,6 +98,7 @@ module TestParallel
while buf = @worker_out.gets
break if /^p (.+?)$/ =~ buf
end
+ assert_not_nil($1, "'p' was not found")
assert_match(/TestA#test_nothing_test = \d+\.\d+ s = \.\n/, $1.chomp.unpack("m")[0])
end
end
@@ -108,6 +109,7 @@ module TestParallel
while buf = @worker_out.gets
break if /^done (.+?)$/ =~ buf
end
+ assert_not_nil($1, "'done' was not found")
result = Marshal.load($1.chomp.unpack("m")[0])
assert_equal(5, result[0])