mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
This commit is contained in:
parent
4c2e2d8bde
commit
005953a17b
2 changed files with 5 additions and 0 deletions
|
@ -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]
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue