summaryrefslogtreecommitdiff
path: root/rubytest.rb
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-03-18 10:49:20 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-03-18 10:49:20 +0000
commit006e8d2e71375e5a9554115bc5771447bc44ec27 (patch)
tree5e97be4724c685c7b7dec065f48e493f60f75d81 /rubytest.rb
parentc223709c3b95127e7a0c0b3812ea2e89ecb8646f (diff)
* instruby.rb, rubytest.rb: do not depend on srcdir.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5973 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'rubytest.rb')
-rw-r--r--rubytest.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/rubytest.rb b/rubytest.rb
index 6f717a2b60..d664bcf3ae 100644
--- a/rubytest.rb
+++ b/rubytest.rb
@@ -34,7 +34,8 @@ end
$stderr.reopen($stdout)
error = ''
-`./#{CONFIG["ruby_install_name"]}#{CONFIG["EXEEXT"]} -I#{CONFIG["srcdir"]}/lib #{CONFIG["srcdir"]}/sample/test.rb`.each do |line|
+srcdir = File.dirname(__FILE__)
+`./#{CONFIG["ruby_install_name"]}#{CONFIG["EXEEXT"]} -I#{srcdir}/lib #{srcdir}/sample/test.rb`.each do |line|
if line =~ /^end of test/
print "test succeeded\n"
exit 0