summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-06-19 07:16:58 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-06-19 07:16:58 +0000
commit3bc707e13c072d431cd3ba77f31da8e1a586f3ad (patch)
tree8a3eca1ab9c2a706afc99263cc3a310fb80f29b3
parentbbda79cb58b561d652cf0085e03af832a2b8b5ed (diff)
downloadruby-3bc707e13c072d431cd3ba77f31da8e1a586f3ad.tar.gz
ruby-3bc707e13c072d431cd3ba77f31da8e1a586f3ad.tar.xz
ruby-3bc707e13c072d431cd3ba77f31da8e1a586f3ad.zip
* rubytest.rb: add library path to include standard libraries.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3962 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--rubytest.rb2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e3ad0319b..b3abd0b79 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Jun 19 16:13:54 2003 WATANABE Hirofumi <eban@ruby-lang.org>
+
+ * rubytest.rb: add library path to include standard libraries.
+
Thu Jun 19 13:13:10 2003 NAKAMURA Usaku <usa@ruby-lang.org>
* hash.c (env_delete, rb_f_getenv, env_fetch): case insensitive to
diff --git a/rubytest.rb b/rubytest.rb
index 05705dacf..841a8758b 100644
--- a/rubytest.rb
+++ b/rubytest.rb
@@ -32,7 +32,7 @@ end
$stderr.reopen($stdout)
error = ''
-`./#{CONFIG["ruby_install_name"]}#{CONFIG["EXEEXT"]} #{CONFIG["srcdir"]}/sample/test.rb`.each do |line|
+`./#{CONFIG["ruby_install_name"]}#{CONFIG["EXEEXT"]} -I#{CONFIG["srcdir"]}/lib #{CONFIG["srcdir"]}/sample/test.rb`.each do |line|
if line =~ /^end of test/
print "test succeeded\n"
exit 0