summaryrefslogtreecommitdiff
path: root/test/ruby/test_process.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-06 06:00:12 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-06 06:00:12 +0000
commit2bfc88a45e7f1bf5d6a522471fa05ae1601eff93 (patch)
treecbe79703bc0ce8adae3226a860c1db9993cbbd38 /test/ruby/test_process.rb
parentf476726323027191e35600e63f58f479e5c45bd3 (diff)
test_process.rb: suppress warnings
* test/ruby/test_process.rb (test_exec_close_reserved_fd): suppress "cannot close fd before spawn" warnings. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51775 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_process.rb')
-rw-r--r--test/ruby/test_process.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index 49cfed8381..60a1c233cb 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -2094,6 +2094,7 @@ EOS
(3..6).each do |i|
ret = run_in_child(<<-INPUT)
begin
+ $VERBOSE = nil
Process.exec('#{cmd}', 'dummy', #{i} => :close)
rescue SystemCallError
end