summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2006-10-19 17:23:43 +0000
committermurphy <murphy@rubychan.de>2006-10-19 17:23:43 +0000
commit17f462e6d8146606062b3d45b39ea248e06aec18 (patch)
tree791b7a9a8738cbc014369a9d005a21abdda9cd51
parent51f5a7ee87bc156eabe4793e79d0a295996c99ac (diff)
downloadcoderay-17f462e6d8146606062b3d45b39ea248e06aec18.tar.gz
Don't run tests in debug mode per default.
-rw-r--r--rake_tasks/test.rake6
1 files 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'