Skip to content

Commit

Permalink
Missed method from jruby-1_7 merge
Browse files Browse the repository at this point in the history
  • Loading branch information
enebo committed Feb 9, 2015
1 parent 5e6f311 commit 4c6a550
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions rakelib/test.rake
Expand Up @@ -63,6 +63,15 @@ namespace :test do
:all => [:int, :jit, :aot]
}

def files_in_file(filename)
files = []
File.readlines(filename).each do |line|
filename = "test/#{line.chomp}.rb"
files << filename if File.exist? filename
end
files
end

namespace :mri do
mri_test_files = File.readlines('test/mri.index').grep(/^[^#]\w+/).map(&:chomp).join(' ')
task :int do
Expand Down

0 comments on commit 4c6a550

Please sign in to comment.