summaryrefslogtreecommitdiff
path: root/test/executable/suite.rb
diff options
context:
space:
mode:
authorKornelius Kalnbach <murphy@rubychan.de>2013-06-30 05:58:31 +0200
committerKornelius Kalnbach <murphy@rubychan.de>2013-06-30 05:58:31 +0200
commita2c625b78d9cb7ff4e89176ade6869364b4f2f9b (patch)
tree8eeca64a75e814477c670fbcb9e607cd9bcdd5be /test/executable/suite.rb
parentdd9ec43a3ea4cfce8eb1e8dd38504a9d8f24df54 (diff)
parentdc57601571af8024700991b6a80129285a980e9e (diff)
downloadcoderay-a2c625b78d9cb7ff4e89176ade6869364b4f2f9b.tar.gz
Merge branch 'master' into go-scanner
Diffstat (limited to 'test/executable/suite.rb')
-rw-r--r--test/executable/suite.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/executable/suite.rb b/test/executable/suite.rb
index ac0ff1d..997405c 100644
--- a/test/executable/suite.rb
+++ b/test/executable/suite.rb
@@ -18,9 +18,9 @@ class TestCodeRayExecutable < Test::Unit::TestCase
EXE_COMMAND =
if RUBY_PLATFORM === 'java' && `ruby --ng -e '' 2> /dev/null` && $?.success?
# use Nailgun
- "#{RUBY_COMMAND}--ng -w -I%s %s"
+ "#{RUBY_COMMAND}--ng -I%s %s"
else
- "#{RUBY_COMMAND} -w -I%s %s"
+ "#{RUBY_COMMAND} -I%s %s"
end % [ROOT_DIR + 'lib', EXECUTABLE]
def coderay args, options = {}