Skip to content

Commit e75fece

Browse files
committed
don't use -w flag in executable tests
1 parent 990d1eb commit e75fece

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/executable/suite.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ class TestCodeRayExecutable < Test::Unit::TestCase
1818
EXE_COMMAND =
1919
if RUBY_PLATFORM === 'java' && `ruby --ng -e '' 2> /dev/null` && $?.success?
2020
# use Nailgun
21-
"#{RUBY_COMMAND}--ng -w -I%s %s"
21+
"#{RUBY_COMMAND}--ng -I%s %s"
2222
else
23-
"#{RUBY_COMMAND} -w -I%s %s"
23+
"#{RUBY_COMMAND} -I%s %s"
2424
end % [ROOT_DIR + 'lib', EXECUTABLE]
2525

2626
def coderay args, options = {}

0 commit comments

Comments
 (0)