summaryrefslogtreecommitdiff
path: root/test/ruby/test_process.rb
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-22 02:17:15 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-22 02:17:15 +0000
commit784ddb80d257ca1ca5a75a26917f584c029c7686 (patch)
treeb34f350327f5de4df4efb588bfbc4387bb8c5e45 /test/ruby/test_process.rb
parent51596d4ac214b8cf75d857b485bcc54d04de56f6 (diff)
* test/ruby/test_dir.rb: use realpath of tmpdir. [ruby-dev:35481]
* test/ruby/test_process.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18153 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_process.rb')
-rw-r--r--test/ruby/test_process.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index b45cbcc2dd..cd4410302b 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -1,5 +1,6 @@
require 'test/unit'
require 'tmpdir'
+require 'pathname'
require_relative 'envutil'
class TestProcess < Test::Unit::TestCase
@@ -21,6 +22,7 @@ class TestProcess < Test::Unit::TestCase
def with_tmpchdir
Dir.mktmpdir {|d|
+ d = Pathname.new(d).realpath.to_s
Dir.chdir(d) {
yield d
}