We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4d9ea49 + 091539d commit f19c54dCopy full SHA for f19c54d
argparser.cpp
@@ -9,6 +9,7 @@
9
#include <string>
10
#include <algorithm>
11
#include <unistd.h>
12
+#include <limits>
13
#include "utilsfuncs.h"
14
#include "argparser.h"
15
#include "argnames.h"
spec/launcher_spec.rb
@@ -12,10 +12,10 @@
it "should print help message" do
args = jruby_launcher_args("-Xhelp 2>&1")
- args.detect{|l| l =~ /JRuby Launcher usage/}.should be_true
+ args.select {|l| l =~ /JRuby Launcher usage/}.should_not be_empty
16
args.should include("-X")
17
args = jruby_launcher_args("-X 2>&1")
18
+ args.detect {|l| l =~ /JRuby Launcher usage/}.should_not be_empty
19
20
end
21
0 commit comments