1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

test_process.rb: fix parameters

* test/ruby/test_process.rb (test_{,a}spawn_too_long_path): fix
  missing parameters in r38934.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39375 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2013-02-22 02:58:53 +00:00
parent 2027a05247
commit e51a9b49f1

View file

@ -1380,15 +1380,15 @@ class TestProcess < Test::Unit::TestCase
def test_spawn_too_long_path
bug4314 = '[ruby-core:34842]'
assert_fail_too_long_path(bug4314)
assert_fail_too_long_path("a", bug4314)
end
def test_aspawn_too_long_path
bug4315 = '[ruby-core:34833]'
assert_fail_too_long_path(bug4315)
assert_fail_too_long_path("a|", bug4315)
end
def assert_fail_too_long_path(cmd, mesg = nil)
def assert_fail_too_long_path(cmd, mesg)
size = 1_000_000 / cmd.size
exs = [Errno::ENOENT]
exs << Errno::E2BIG if defined?(Errno::E2BIG)