aboutsummaryrefslogtreecommitdiffstats
path: root/tool
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-01-15 11:05:51 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-01-15 11:05:51 +0000
commitcaccc84bf1f424a8e35f11d224602327b6256ff4 (patch)
tree2ddd02b48d01f09d4968cb42aa8c4631ba6f3048 /tool
parent50b1e640c5df1ba948bda5e23b9df6e8e0fb910d (diff)
downloadruby-caccc84bf1f424a8e35f11d224602327b6256ff4.tar.gz
Revert "* common.mk: test-sample was changed to test-basic."
This reverts r53537. Fix chkbuild first. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53542 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool')
-rwxr-xr-xtool/rubytest.rb30
1 files changed, 30 insertions, 0 deletions
diff --git a/tool/rubytest.rb b/tool/rubytest.rb
new file mode 100755
index 0000000000..a06c400744
--- /dev/null
+++ b/tool/rubytest.rb
@@ -0,0 +1,30 @@
+#! ./miniruby
+
+exit if defined?(CROSS_COMPILING) and CROSS_COMPILING
+ruby = ENV["RUBY"]
+unless ruby
+ load './rbconfig.rb'
+ ruby = "./#{RbConfig::CONFIG['ruby_install_name']}#{RbConfig::CONFIG['EXEEXT']}"
+end
+unless File.exist? ruby
+ print "#{ruby} is not found.\n"
+ print "Try `make' first, then `make test', please.\n"
+ exit false
+end
+ARGV[0] and opt = ARGV[0][/\A--run-opt=(.*)/, 1] and ARGV.shift
+
+$stderr.reopen($stdout)
+error = ''
+
+srcdir = File.expand_path('..', File.dirname(__FILE__))
+`#{ruby} #{opt} #{srcdir}/sample/test.rb #{ARGV.join(' ')}`.each_line do |line|
+ if line =~ /^end of test/
+ print "\ntest succeeded\n"
+ exit true
+ end
+ error << line if %r:^(sample/test.rb|not): =~ line
+end
+puts
+print error
+print "test failed\n"
+exit false