[前][次][番号順一覧][スレッド一覧]

ruby-changes:51530

From: k0kubun <ko1@a...>
Date: Sun, 24 Jun 2018 20:07:50 +0900 (JST)
Subject: [ruby-changes:51530] k0kubun:r63740 (trunk): test_process.rb: skip tests for Bug 14867

k0kubun	2018-06-24 20:07:44 +0900 (Sun, 24 Jun 2018)

  New Revision: 63740

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=63740

  Log:
    test_process.rb: skip tests for Bug 14867

  Modified files:
    trunk/test/ruby/test_process.rb
Index: test/ruby/test_process.rb
===================================================================
--- test/ruby/test_process.rb	(revision 63739)
+++ test/ruby/test_process.rb	(revision 63740)
@@ -1426,6 +1426,7 @@ class TestProcess < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/ruby/test_process.rb#L1426
   end
 
   def test_wait_without_arg
+    skip "[Bug #14867]" if RubyVM::MJIT.enabled?
     with_tmpchdir do
       write_file("foo", "sleep 0.1")
       pid = spawn(RUBY, "foo")
@@ -1434,6 +1435,7 @@ class TestProcess < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/ruby/test_process.rb#L1435
   end
 
   def test_wait2
+    skip "[Bug #14867]" if RubyVM::MJIT.enabled?
     with_tmpchdir do
       write_file("foo", "sleep 0.1")
       pid = spawn(RUBY, "foo")
@@ -1442,6 +1444,7 @@ class TestProcess < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/ruby/test_process.rb#L1444
   end
 
   def test_waitall
+    skip "[Bug #14867]" if RubyVM::MJIT.enabled?
     with_tmpchdir do
       write_file("foo", "sleep 0.1")
       ps = (0...3).map { spawn(RUBY, "foo") }.sort

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]