1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
|
# Definitions:
# MSPEC_FILE:
# tagged - runs specs which a MSPEC_FILE
# all - runs specs without specifying an MSPEC_FILE
# !all,!tagged - runs specs with an MSPEC_FILE
# RUNTIME:
# interpreted - -X-C (or OFF)
# compiled - JIT w/ threshold 0
# precompiled - AOT (or FORCE)
# RUBYSPEC:
# latest - grab head of rubyspecs
# stable - get saved blessed version (see RUBYSPECS_VERSION)
# FIXME: Make Rubyspecs FAILED message appear?
namespace :spec do
# This set of tasks will run ci and retrieve the proper version of specs.
# The specs below this section will run specs, but they will not retrieve
# the specs they run against. This is so we can run the similiar mspec
# runs against a stable and head version of the rubyspecs.
desc "Run simple set of tests over both 1.8 and 1.9 modes"
task :short => 'spec:ci_interpreted_18_19'
desc "Run rubyspecs expected to pass (version-frozen)"
task :ci => ['spec:fetch_stable_specs', 'spec:tagged_18']
task :ci_18 => :ci
desc "Run rubyspecs expected to pass (version-frozen)"
task :ci_19 => ['spec:fetch_stable_specs', 'spec:tagged_19']
desc "Run rubyspecs expexted to pass in interpreted mode (version-frozem)"
task :ci_interpreted_18 => ['spec:fetch_stable_specs', 'spec:interpreted_18']
desc "Run rubyspecs expexted to pass in interpreted mode (version-frozem)"
task :ci_interpreted_19 => ['spec:fetch_stable_specs', 'spec:interpreted_19']
desc "Run rubyspecs expexted to pass in interpreted mode (version-frozem)"
task :ci_interpreted_18_19 => ['spec:fetch_stable_specs', 'spec:interpreted_18', 'spec:interpreted_19']
desc "Run all the specs including failures (version-frozen)"
task :ci_all => ['spec:fetch_stable_specs', 'spec:all_18']
desc "Run all the specs including failures (version-frozen)"
task :ci_all_19 => ['spec:fetch_stable_specs', 'spec:all_19']
desc "Run all the specs in precompiled mode (version-frozem)"
task :ci_all_precompiled_18 => ['spec:fetch_stable_specs', 'spec:all_precompiled_18']
desc "Run rubyspecs expected to pass (against latest rubyspec version)"
task :ci_latest => ['spec:fetch_latest_specs', 'spec:tagged_18']
# Note: For this point below it is your reponsibility to make sure specs
# are checked out.
desc "Run 1.8 tagged specs in interpreted, JIT, and pre-compiled modes"
task :tagged_18 => [:interpreted_18, :compiled_18, :precompiled_18] do
fail "One or more Ruby spec runs have failed" if spec_run_error
end
desc "Run all 1.8 specs in interpreted, JIT, and pre-compiled modes"
task :all_18 => [:all_interpreted_18, :all_compiled_18, :all_precompiled_18] do
fail "One or more Ruby spec runs have failed" if spec_run_error
end
desc "Run 1.9 tagged specs in interpreted, JIT, and pre-compiled modes"
task :tagged_19 => [:interpreted_19, :compiled_19, :precompiled_19] do
fail "One or more Ruby spec runs have failed" if spec_run_error
end
desc "Run all 1.9 specs in interpreted, JIT, and pre-compiled modes"
task :all_19 => [:all_interpreted_19, :all_compiled_19, :all_precompiled_19] do
fail "One or more Ruby spec runs have failed" if spec_run_error
end
desc "Tagged 1.8 specs in interpreted mode only"
task :interpreted_18 do
mspec :compile_mode => "OFF", :spec_config => RUBY18_MSPEC_FILE
end
desc "Tagged 1.8 specs in JIT mode only (threshold=0)"
task :compiled_18 do
mspec :compile_mode => "JIT", :spec_config => RUBY18_MSPEC_FILE,
:jit_threshold => 0
end
desc "Tagged 1.8 specs in AOT mode only"
task :precompiled_18 do
mspec :compile_mode => "FORCE", :spec_config => RUBY18_MSPEC_FILE,
:jit_threshold => 0
end
desc "All 1.8 specs in interpreted mode only"
task :all_interpreted_18 do
mspec :compile_mode => "OFF"
end
desc "All 1.8 specs in JIT mode only (threshold=0)"
task :all_compiled_18 do
mspec :compile_mode => "JIT", :jit_threshold => 0
end
desc "All 1.8 specs in AOT mode only"
task :all_precompiled_18 do
mspec :compile_mode => "FORCE", :jit_threshold => 0
end
desc "Tagged 1.9 specs in interpreted mode only"
task :interpreted_19 do
mspec :compile_mode => "OFF", :spec_config => RUBY19_MSPEC_FILE,
:compat => "RUBY1_9"
end
desc "Tagged 1.9 specs in JIT mode only (threshold=0)"
task :compiled_19 do
mspec :compile_mode => "JIT", :spec_config => RUBY19_MSPEC_FILE,
:jit_threshold => 0, :compat => "RUBY1_9"
end
desc "Tagged 1.9 specs in AOT mode only"
task :precompiled_19 do
mspec :compile_mode => "FORCE", :spec_config => RUBY19_MSPEC_FILE,
:jit_threshold => 0, :compat => "RUBY1_9"
end
desc "All 1.9 specs in interpreted mode only"
task :all_interpreted_19 do
mspec :compile_mode => "OFF", :compat => "RUBY1_9"
end
desc "All 1.9 specs in JIT mode only (threshold=0)"
task :all_compiled_19 do
mspec :compile_mode => "JIT", :jit_threshold => 0, :compat => "RUBY1_9"
end
desc "All 1.9 specs in AOT mode only"
task :all_precompiled_19 do
mspec :compile_mode => "FORCE", :jit_threshold => 0, :compat => "RUBY1_9"
end
# Put Rake on the load path for JI specs without requiring rubygems
rake_location = File.join(Gem.loaded_specs['rake'].full_gem_path, "lib")
gem 'rspec'
require 'spec/rake/spectask'
desc "Runs Java Integration Specs"
Spec::Rake::SpecTask.new("ji" => "build/jruby-test-classes.jar") do |t|
t.libs << rake_location
t.spec_opts ||= []
t.spec_opts << "--options" << "spec/java_integration/spec.opts"
t.spec_files = FileList['spec/java_integration/**/*_spec.rb']
end
desc "Runs Java Integration specs quietly"
Spec::Rake::SpecTask.new("ji:quiet" => "build/jruby-test-classes.jar") do |t|
t.libs << rake_location
t.spec_opts ||= []
t.spec_opts << "--options" << "spec/java_integration/spec.quiet.opts"
t.spec_files = FileList['spec/java_integration/**/*_spec.rb']
end
desc "Runs Compiler Specs"
Spec::Rake::SpecTask.new("compiler" => "build/jruby-test-classes.jar") do |t|
t.spec_files = FileList['spec/compiler/**/*_spec.rb']
end
desc "Runs FFI specs"
Spec::Rake::SpecTask.new("ffi" => "build/jruby-test-classes.jar") do |t|
t.spec_files = FileList['spec/ffi/**/*_spec.rb']
end
Spec::Rake::SpecTask.new("java_signature_parser") do |t|
t.spec_opts ||= []
# t.spec_opts << "--options" << "spec/java_integration/spec.quiet.opts"
t.spec_files = FileList['spec/grammar/**/*_spec.rb']
end
# Complimentary tasks for running specs
task :fetch_latest_specs => [:install_build_gems, :fetch_latest_rubyspec_repo, :fetch_latest_mspec_repo]
task :fetch_stable_specs => :fetch_latest_specs do
if stable_specs_changed?
puts "Rolling rubyspec to stable version"
git_checkout('rubyspec', RUBYSPECS_REVISION, RUBYSPEC_DIR)
puts "Rolling mspec to stable version"
git_checkout('mspec', MSPEC_REVISION, MSPEC_DIR)
ant.propertyfile(:file => "#{SPEC_DIR}/rubyspecs.current.revision",
:comment => "Revision of downloaded specs") do
entry :key => "rubyspecs.current.revision", :value => RUBYSPECS_REVISION
entry :key => "mspec.current.revision", :value => MSPEC_REVISION
end
end
end
desc "Retrieve latest tagged rubyspec git repository"
task :fetch_latest_rubyspec_repo do
unless git_repo_exists? RUBYSPEC_DIR
clean_spec_dirs
git_clone('rubyspec', RUBYSPEC_GIT_REPO, RUBYSPEC_DIR)
else
git_fetch('rubyspec', RUBYSPEC_DIR)
end
end
desc "Retrieve latest tagged mspec git repository"
task :fetch_latest_mspec_repo do
unless git_repo_exists? MSPEC_DIR
git_clone('mspec', MSPEC_GIT_REPO, MSPEC_DIR)
else
git_fetch('mspec', MSPEC_DIR)
end
end
desc "Clean up spec dirs"
task :clean_specs do
clean_spec_dirs(true)
end
def stable_specs_changed?
ant.property :file => "${SPEC_DIR}/rubyspecs.current.revision"
p = ant.properties
!File.exists?(RUBYSPEC_DIR) || !File.exists?(MSPEC_DIR) ||
RUBYSPECS_REVISION != p['rubyspecs.current.revision'] ||
MSPEC_REVISION != p['mspec.current.revision']
end
def clean_spec_dirs(wipe_spec_dir = false)
rm_rf RUBYSPEC_DIR if wipe_spec_dir
rm_rf MSPEC_DIR
rm_f RUBYSPEC_TAR_FILE
rm_f MSPEC_TAR_FILE
rm_f File.join(SPEC_DIR, "rubyspecs.current.revision")
end
def spec_run_error
# Obtuseriffic - If any previous spec runs were non-zero return we failed
['OFF', 'JIT', 'FORCE'].any? {|n| ant.properties["spec.status.#{n}"] != "0"}
end
end
|