8000 use -w in executable tests · tricknotes/coderay@965b8f4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 965b8f4

Browse files
committed
use -w in executable tests
1 parent b89caf9 commit 965b8f4

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 -I%s %s"
21+
"#{RUBY_COMMAND}--ng -w -I%s %s"
2222
else
23-
"#{RUBY_COMMAND} -I%s %s"
23+
"#{RUBY_COMMAND} -w -I%s %s"
2424
end % [ROOT_DIR + 'lib', EXECUTABLE]
2525

2626
def coderay args, options = {}

0 commit comments

Comments
 (0)
0