aboutsummaryrefslogtreecommitdiffstats
path: root/test/testunit
diff options
context:
space:
mode:
Diffstat (limited to 'test/testunit')
-rw-r--r--test/testunit/test_parallel.rb5
-rw-r--r--test/testunit/tests_for_parallel/test_third.rb3
2 files changed, 4 insertions, 4 deletions
diff --git a/test/testunit/test_parallel.rb b/test/testunit/test_parallel.rb
index 7a2e9aece6..4c4d14b226 100644
--- a/test/testunit/test_parallel.rb
+++ b/test/testunit/test_parallel.rb
@@ -122,7 +122,7 @@ module TestParallel
def spawn_runner(*opt_args)
@test_out, o = IO.pipe
@test_pid = spawn(*@options[:ruby], TESTS+"/runner.rb",
- "-j","t2",*opt_args, out: o, err: o)
+ "-j","t1",*opt_args, out: o, err: o)
o.close
end
@@ -153,14 +153,13 @@ module TestParallel
def test_should_run_all_without_any_leaks
spawn_runner
buf = timeout(10){@test_out.read}
- assert_match(/^\.*(\.SF\.*F|F\.*\.+SF)\.*$/,buf)
+ assert_match(/^[SF\.]{7}$/,buf)
end
def test_should_retry_failed_on_workers
spawn_runner
buf = timeout(10){@test_out.read}
assert_match(/^Retrying\.+$/,buf)
- assert_match(/^\.*SF\.*$/,buf)
end
def test_no_retry_option
diff --git a/test/testunit/tests_for_parallel/test_third.rb b/test/testunit/tests_for_parallel/test_third.rb
index 2746a9ba71..61124b291a 100644
--- a/test/testunit/tests_for_parallel/test_third.rb
+++ b/test/testunit/tests_for_parallel/test_third.rb
@@ -3,7 +3,8 @@ require_relative "misc.rb"
class TestD < TestCaseForParallelTest
def ptest_fail_at_worker
- if /test\/unit\/parallel\.rb/ =~ $0
+ #if /test\/unit\/parallel\.rb/ =~ $0
+ if on_parallel_worker?
assert_equal(0,1)
end
end