summaryrefslogtreecommitdiff
path: root/rubytest.rb
diff options
context:
space:
mode:
author(no author) <(no author)@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-01-16 12:19:22 +0000
committer(no author) <(no author)@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-01-16 12:19:22 +0000
commitf12baed5df6d3c213dd75d2f0d9f36bb179fb843 (patch)
treec39f9c14cd6f8bcf85b6b842a2774cafb102bc2e /rubytest.rb
parent22ab6d39643b1bbc997e15b763d2b12996b1f1b9 (diff)
This commit was manufactured by cvs2svn to create branch 'RUBY'.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/RUBY@9 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'rubytest.rb')
-rw-r--r--rubytest.rb14
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"