diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-01-22 05:52:14 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-01-22 05:52:14 +0000 |
| commit | 3a4bbe899419b0d530c1467ab093e9c7999dec9b (patch) | |
| tree | 7aafdd74bd358f8093c2c989b0264cf8042a3d26 | |
| parent | 7b88de811b2ba6d87b9df5f795e2556d1a64a55a (diff) | |
| download | ruby-3a4bbe899419b0d530c1467ab093e9c7999dec9b.tar.gz ruby-3a4bbe899419b0d530c1467ab093e9c7999dec9b.tar.xz ruby-3a4bbe899419b0d530c1467ab093e9c7999dec9b.zip | |
* test/ruby/test_process.rb (MANDATORY_ENVS): needs RUBYLIB to run
tests without install.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21728 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | test/ruby/test_process.rb | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -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 2be4e0d8a..33885f480 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 |
