From 17f462e6d8146606062b3d45b39ea248e06aec18 Mon Sep 17 00:00:00 2001 From: murphy Date: Thu, 19 Oct 2006 17:23:43 +0000 Subject: Don't run tests in debug mode per default. --- rake_tasks/test.rake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rake_tasks/test.rake b/rake_tasks/test.rake index 894cd19..457682e 100644 --- a/rake_tasks/test.rake +++ b/rake_tasks/test.rake @@ -1,17 +1,17 @@ namespace :test do desc 'run all sample tests' task :samples do - system 'ruby -wd ./sample/suite.rb' + system 'ruby -w ./sample/suite.rb' end desc 'run functional tests' task :functional do - system 'ruby -wd ./test/functional/suite.rb' + system 'ruby -w ./test/functional/suite.rb' end desc 'run all scanner tests' task :scanners do - system 'ruby -wd ./test/scanners/suite.rb' + system 'ruby -w ./test/scanners/suite.rb' end desc 'clean test output files' -- cgit v1.2.1