summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-14 07:42:30 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-14 07:42:30 +0000
commit005953a17b68f11e430a467d48531668b3f8e9b1 (patch)
tree860447c09ec740aa81079c6d47041fcda77039a8
parent4c2e2d8bdefa8cd43adf1e28358353c1ded53049 (diff)
* 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
-rw-r--r--ChangeLog4
-rw-r--r--test/test_tmpdir.rb1
2 files changed, 5 insertions, 0 deletions
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 <usa@ruby-lang.org>
+
+ * test/test_tmpdir.rb (TestTmpdir#test_world_writable): skip on Windows.
+
Wed Mar 14 15:09:23 2012 Marc-Andre Lafortune <ruby-core@marc-andre.ca>
* 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