From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-3.9 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.1 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 425531F660 for ; Mon, 25 Jun 2018 00:22:22 +0000 (UTC) From: Eric Wong To: spew@80x24.org Subject: [PATCH 4/5] Revert "test_process.rb: skip tests for Bug 14867" Date: Mon, 25 Jun 2018 00:22:19 +0000 Message-Id: <20180625002220.29490-5-e@80x24.org> In-Reply-To: <20180625002220.29490-1-e@80x24.org> References: <20180625002220.29490-1-e@80x24.org> List-Id: This reverts r63740 (commit 042395a7f7262464265ce70cdffbe1812aa145d3). --- test/ruby/test_process.rb | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb index 8b7d8f0c57..a9052b4706 100644 --- a/test/ruby/test_process.rb +++ b/test/ruby/test_process.rb @@ -1426,7 +1426,6 @@ def test_status_quit 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") @@ -1435,7 +1434,6 @@ def test_wait_without_arg end def test_wait2 - skip "[Bug #14867]" if RubyVM::MJIT.enabled? with_tmpchdir do write_file("foo", "sleep 0.1") pid = spawn(RUBY, "foo") @@ -1444,7 +1442,6 @@ def test_wait2 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 -- EW