From 2f262b2351aa5acaa072a1d288c54545bfa7c924 Mon Sep 17 00:00:00 2001 From: akr Date: Fri, 26 Jun 2009 12:41:25 +0000 Subject: reduce tests. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23859 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ripper/test_files.rb | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/ripper') diff --git a/test/ripper/test_files.rb b/test/ripper/test_files.rb index 2bbe4a0060..f30ee8ad2a 100644 --- a/test/ripper/test_files.rb +++ b/test/ripper/test_files.rb @@ -12,9 +12,12 @@ class TestRipper_Generic < Test::Unit::TestCase SCANNER_EVENTS.each {|n| eval "def on_#{n}(*args) r = [:#{n}, *args]; r.inspect; Object.new end" } end + TEST_RATIO = 0.05 + def test_parse_files Find.find("#{SRCDIR}/lib", "#{SRCDIR}/ext", "#{SRCDIR}/sample", "#{SRCDIR}/test") {|n| next if /\.rb\z/ !~ n || !File.file?(n) + next if TEST_RATIO < rand assert_nothing_raised("ripper failed to parse: #{n.inspect}") { Parser.new(File.read(n)).parse } } end -- cgit v1.2.3