summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authornahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-05 01:47:41 +0000
committernahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-05 01:47:41 +0000
commite45738a2976eed3ff291ec075606f64baa3198cb (patch)
tree449b2a00c68622d658d9171021ef833720c924f8 /test/ruby
parentaf49aecff16d6969551eec0072e0713702aac18f (diff)
* test/runner.rb: added. gets testcases from command line and runs it.
* test/ruby/test_gc.rb: remove useless part which was for dumping test result. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4503 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_gc.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/ruby/test_gc.rb b/test/ruby/test_gc.rb
index b513e44dc6..b55c391802 100644
--- a/test/ruby/test_gc.rb
+++ b/test/ruby/test_gc.rb
@@ -31,11 +31,5 @@ class TestGc < Test::Unit::TestCase
}
GC.start
assert true # reach here or dumps core
-
- if $failed > 0
- printf "test: %d failed %d\n", $ntest, $failed
- else
- printf "end of test(test: %d)\n", $ntest
- end
end
end