diff --git a/ChangeLog b/ChangeLog index ae5bc26efc..ef753a43b9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Nov 1 21:42:20 2012 Yusuke Endoh + + * test/ruby/test_process.rb: Revert r37404. My ubuntu box has + actually the directory named "/nonexistent"... Sorry. + Thu Nov 1 21:28:28 2012 Yusuke Endoh * test/ruby/test_process.rb: Process.exec raised EACCES on Linux diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb index 2fc9a568a5..515e6e3d24 100644 --- a/test/ruby/test_process.rb +++ b/test/ruby/test_process.rb @@ -351,7 +351,7 @@ class TestProcess < Test::Unit::TestCase prog = "/nonexistent" begin Process.exec({"mgg" => "mggoo"}, [prog, prog]) - rescue Errno::ENOENT, Errno::EACCES + rescue Errno::ENOENT end open('out', 'w') {|f| f.print ENV["mgg"].inspect