Exclude mach platform tests from default pattern in Rakefile.

This commit is contained in:
Patrick Mahoney 2012-02-01 19:40:00 -06:00
parent b1f7fd7fb8
commit 63d10c12a2
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ desc 'Run the tests'
task :default => [:test]
Rake::TestTask.new(:test => [:compile]) do |t|
t.pattern = 'spec/**/*_spec.rb'
t.pattern = 'spec/process_shared/**/*_spec.rb'
t.libs.push 'spec'
end