From 1d6e2caf10b477739012f92e3c08be23d8459363 Mon Sep 17 00:00:00 2001 From: naruse Date: Mon, 7 Jul 2008 10:46:13 +0000 Subject: [PATCH] * test/ruby/test_dir.rb (test_chroot_nodir): add Errno::EPERM. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17941 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ test/ruby/test_dir.rb | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e533338d30..80ca996a66 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon Jul 7 19:45:22 2008 NARUSE, Yui + + * test/ruby/test_dir.rb (test_chroot_nodir): add Errno::EPERM. + Mon Jul 7 17:12:20 2008 Nobuyoshi Nakada * lib/ipaddr.rb (IPAddr#initialize): get rid of ArgumentError in diff --git a/test/ruby/test_dir.rb b/test/ruby/test_dir.rb index 39b47720a7..4301a61dc0 100644 --- a/test/ruby/test_dir.rb +++ b/test/ruby/test_dir.rb @@ -131,7 +131,8 @@ class TestDir < Test::Unit::TestCase end def test_chroot_nodir - assert_raise(NotImplementedError, Errno::ENOENT) { Dir.chroot(File.join(@nodir, "")) } + assert_raise(NotImplementedError, Errno::ENOENT, Errno::EPERM + ) { Dir.chroot(File.join(@nodir, "")) } end def test_close