summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-28 09:21:28 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-28 09:21:28 +0000
commit063d6c71ecf591d7bd362c533b768dcc33b8836c (patch)
tree11e756afcbc6615c2587e926ca95a45d06d12ae9
parent4d70e4a70674b1c7894fef725927afd5a129f064 (diff)
merges r21728 from trunk into ruby_1_9_1.
* test/ruby/test_process.rb (MANDATORY_ENVS): needs RUBYLIB to run tests without install. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@21822 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--test/ruby/test_process.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 191b16bd20..8fa42c34d9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Jan 22 14:53:29 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * test/ruby/test_process.rb (MANDATORY_ENVS): needs RUBYLIB to run
+ tests without install.
+
Thu Jan 22 12:19:29 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* gc.c (define_final): cannot define finalizer for immediate
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index eda85c2e7f..8984caace1 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -199,7 +199,7 @@ class TestProcess < Test::Unit::TestCase
}
end
- MANDATORY_ENVS = []
+ MANDATORY_ENVS = %w[RUBYLIB]
if /linux/ =~ RbConfig::CONFIG['target_os']
MANDATORY_ENVS << 'LD_PRELOAD'
end