From 917681a3b7fdaec37da91c06b6c2b21a9c55f4e0 Mon Sep 17 00:00:00 2001 From: akr Date: Thu, 24 Apr 2014 13:54:07 +0000 Subject: revert r45709. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45710 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bootstraptest/test_io.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'bootstraptest/test_io.rb') diff --git a/bootstraptest/test_io.rb b/bootstraptest/test_io.rb index c37888fb1a..f7360f34b3 100644 --- a/bootstraptest/test_io.rb +++ b/bootstraptest/test_io.rb @@ -42,8 +42,9 @@ assert_finish 1, %q{ } assert_equal 'ok', %q{ + require 'tmpdir' begin - tmpname = "/tmp/ruby-btest-#{$$}-#{rand(0x100000000).to_s(36)}" + tmpname = "#{Dir.tmpdir}/ruby-btest-#{$$}-#{rand(0x100000000).to_s(36)}" rw = File.open(tmpname, File::RDWR|File::CREAT|File::EXCL) rescue Errno::EEXIST retry @@ -57,8 +58,9 @@ assert_equal 'ok', %q{ } assert_equal 'ok', %q{ + require 'tmpdir' begin - tmpname = "/tmp/ruby-btest-#{$$}-#{rand(0x100000000).to_s(36)}" + tmpname = "#{Dir.tmpdir}/ruby-btest-#{$$}-#{rand(0x100000000).to_s(36)}" rw = File.open(tmpname, File::RDWR|File::CREAT|File::EXCL) rescue Errno::EEXIST retry -- cgit v1.2.3