diff --git a/ChangeLog b/ChangeLog index 27ac90c1be..843d54fade 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Aug 25 01:24:33 2011 Naohisa Goto + + * test/fileutils/test_fileutils.rb (test_chmod_symbol_mode): Solaris + seems to behave the same as FreeBSD. + Thu Aug 25 01:11:36 2011 Naohisa Goto * test/ruby/test_rubyoptions.rb (test_script_from_stdin): slave pty diff --git a/test/fileutils/test_fileutils.rb b/test/fileutils/test_fileutils.rb index d4068e5c86..f563068eda 100644 --- a/test/fileutils/test_fileutils.rb +++ b/test/fileutils/test_fileutils.rb @@ -913,8 +913,8 @@ class TestFileUtils # FreeBSD ufs and tmpfs don't allow to change sticky bit against # regular file. It's slightly strange. Anyway it's no effect bit. # see /usr/src/sys/ufs/ufs/ufs_chmod() - # NetBSD and OpenBSD also denies it. - if /freebsd|netbsd|openbsd/ !~ RUBY_PLATFORM + # NetBSD, OpenBSD and Solaris also denies it. + if /freebsd|netbsd|openbsd|solaris/ !~ RUBY_PLATFORM chmod "u+t,o+t", 'tmp/a' assert_equal 07500, File.stat('tmp/a').mode & 07777 chmod "a-t,a-s", 'tmp/a'