aboutsummaryrefslogtreecommitdiffstats
path: root/test/ripper
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-26 12:41:25 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-26 12:41:25 +0000
commit2f262b2351aa5acaa072a1d288c54545bfa7c924 (patch)
treefec5dd12a9961fc7950686a1f7eae712974f8108 /test/ripper
parent9522466f4675543249a5dd0cfa1893cd61638a43 (diff)
downloadruby-2f262b2351aa5acaa072a1d288c54545bfa7c924.tar.gz
reduce tests.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23859 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ripper')
-rw-r--r--test/ripper/test_files.rb3
1 files changed, 3 insertions, 0 deletions
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