summaryrefslogtreecommitdiff
path: root/test/testunit
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-15 18:09:47 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-15 18:09:47 +0000
commit72e8077957c252ff3f97afb1229c0553f1a82d0b (patch)
treec3c2d4da49bd84a33ba460dd7e2e3ae9c27db596 /test/testunit
parenta8bdd28d10c2c5981e944e945eed95f6c4ad44bc (diff)
* test/testunit/test_parallel.rb (TestParallel::TestParallelWorker#
setup): now can run on Windows, probably. * test/testunit/test_parallel.rb (TestParallel::TestParalle#setup): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32108 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/testunit')
-rw-r--r--test/testunit/test_parallel.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/testunit/test_parallel.rb b/test/testunit/test_parallel.rb
index 44c15f73b9..2f114bba69 100644
--- a/test/testunit/test_parallel.rb
+++ b/test/testunit/test_parallel.rb
@@ -8,10 +8,6 @@ module TestParallel
class TestParallelWorker < Test::Unit::TestCase
def setup
- if /mswin|mingw|cygwin/ =~ RUBY_PLATFORM
- skip "parallel testing doesn't support Windows yet."
- end
-
i, @worker_in = IO.pipe
@worker_out, o = IO.pipe
@worker_pid = spawn(*@options[:ruby], PARALLEL_RB,
@@ -123,12 +119,6 @@ module TestParallel
end
class TestParallel < Test::Unit::TestCase
- def setup
- if /mswin|mingw|cygwin/ =~ RUBY_PLATFORM
- skip "parallel testing doesn't support Windows yet."
- end
- end
-
def spawn_runner(*opt_args)
@test_out, o = IO.pipe
@test_pid = spawn(*@options[:ruby], TESTS+"/runner.rb",