From a87c3b4869daaadbeeea0b5b067bc9cd19ac4911 Mon Sep 17 00:00:00 2001 From: akr Date: Thu, 24 Apr 2014 13:56:09 +0000 Subject: [PATCH] * bootstraptest/test_io.rb: Add etc.so to $" before require 'tmpdir'. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45711 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ bootstraptest/test_io.rb | 2 ++ 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 2a1987feed..ac6a27621b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu Apr 24 22:55:22 2014 Tanaka Akira + + * bootstraptest/test_io.rb: Add etc.so to $" before require 'tmpdir'. + Thu Apr 24 21:09:55 2014 Kazuhiro NISHIYAMA * man/ruby.1: fix broken link. diff --git a/bootstraptest/test_io.rb b/bootstraptest/test_io.rb index f7360f34b3..881431c93e 100644 --- a/bootstraptest/test_io.rb +++ b/bootstraptest/test_io.rb @@ -42,6 +42,7 @@ assert_finish 1, %q{ } assert_equal 'ok', %q{ + $" << 'etc.so' require 'tmpdir' begin tmpname = "#{Dir.tmpdir}/ruby-btest-#{$$}-#{rand(0x100000000).to_s(36)}" @@ -58,6 +59,7 @@ assert_equal 'ok', %q{ } assert_equal 'ok', %q{ + $" << 'etc.so' require 'tmpdir' begin tmpname = "#{Dir.tmpdir}/ruby-btest-#{$$}-#{rand(0x100000000).to_s(36)}"