From 005953a17b68f11e430a467d48531668b3f8e9b1 Mon Sep 17 00:00:00 2001 From: usa Date: Wed, 14 Mar 2012 07:42:30 +0000 Subject: [PATCH] * test/test_tmpdir.rb (TestTmpdir#test_world_writable): skip on Windows. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35014 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ test/test_tmpdir.rb | 1 + 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index 950d71381d..08f19f5472 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Wed Mar 14 16:41:55 2012 NAKAMURA Usaku + + * test/test_tmpdir.rb (TestTmpdir#test_world_writable): skip on Windows. + Wed Mar 14 15:09:23 2012 Marc-Andre Lafortune * numeric.c: fix flodivmod for cornercases [Bug #6044] diff --git a/test/test_tmpdir.rb b/test/test_tmpdir.rb index 9ef22e3f55..c48b4b7fb2 100644 --- a/test/test_tmpdir.rb +++ b/test/test_tmpdir.rb @@ -3,6 +3,7 @@ require 'tmpdir' class TestTmpdir < Test::Unit::TestCase def test_world_writable + skip "no meaning on this platform" if /mswin|mingw/ =~ RUBY_PLATFORM Dir.mktmpdir do |tmpdir| # ToDo: fix for parallel test olddir, ENV["TMPDIR"] = ENV["TMPDIR"], tmpdir