diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 1998-01-16 12:19:09 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 1998-01-16 12:19:09 +0000 |
commit | 62e41d3f2e48422bbdf1bb2db83ae60b255b1a1a (patch) | |
tree | 4d0edb1c1986e1578b181ebe2441acfee27f1fab /rubytest.rb | |
parent | 3db12e8b236ac8f88db8eb4690d10e4a3b8dbcd4 (diff) | |
download | ruby-62e41d3f2e48422bbdf1bb2db83ae60b255b1a1a.tar.gz |
Initial revision
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'rubytest.rb')
-rw-r--r-- | rubytest.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/rubytest.rb b/rubytest.rb new file mode 100644 index 0000000000..f0e4bf8c8e --- /dev/null +++ b/rubytest.rb @@ -0,0 +1,14 @@ +require 'rbconfig' +include Config + +$stderr.reopen($stdout) +error = '' +`./ruby #{CONFIG["srcdir"]}/sample/test.rb`.each do |line| + if line =~ /^end of test/ + print "test succeeded\n" + exit 0 + end + error << line if line =~ %r:^(sample/test.rb|not): +end +print error +print "test failed\n" |