@@ -61,22 +61,14 @@ def test_dash_little_p_wraps_script_with_while_gets_and_prints
61
61
# -s option (-g-a=123) is passed and is ignored.
62
62
def test_dash_little_s
63
63
with_temp_script ( %q{puts $g, $v, $foo, *ARGV} ) do |s |
64
- assert_equal "nil\n 123\n bar\n 4\n 5\n 6" , `#{ RUBY } --1.8 -s #{ s . path } -g-a=123 -v=123 -foo=bar 4 5 6` . chomp
65
- assert_equal 0 , $?. exitstatus
66
- end
67
- with_temp_script ( %q{puts $g, $v, $foo, *ARGV} ) do |s |
68
- assert_equal "\n 123\n bar\n 4\n 5\n 6" , `#{ RUBY } --1.9 -s #{ s . path } -g-a=123 -v=123 -foo=bar 4 5 6` . chomp
64
+ assert_equal "\n 123\n bar\n 4\n 5\n 6" , `#{ RUBY } -s #{ s . path } -g-a=123 -v=123 -foo=bar 4 5 6` . chomp
69
65
assert_equal 0 , $?. exitstatus
70
66
end
71
67
end
72
68
73
69
def test_dash_little_s_options_must_come_after_script
74
70
with_temp_script ( %q{puts $v, *ARGV} ) do |s |
75
- assert_equal "nil\n a\n -v=123\n b\n c" , `#{ RUBY } --1.8 -s #{ s . path } a -v=123 b c` . chomp
76
- assert_equal 0 , $?. exitstatus
77
- end
78
- with_temp_script ( %q{puts $v, *ARGV} ) do |s |
79
- assert_equal "\n a\n -v=123\n b\n c" , `#{ RUBY } --1.9 -s #{ s . path } a -v=123 b c` . chomp
71
+ assert_equal "\n a\n -v=123\n b\n c" , `#{ RUBY } -s #{ s . path } a -v=123 b c` . chomp
80
72
assert_equal 0 , $?. exitstatus
81
73
end
82
74
end
@@ -126,35 +118,9 @@ def test_dash_big_S_resolves_relative___FILE___correctly
126
118
end
127
119
end
128
120
129
- def test_dash_little_v_version_verbose_T_taint_d_debug_K_kcode_r_require_b_benchmarks_a_splitsinput_I_loadpath_C_cwd_F_delimeter_J_javaprop_18
130
- e_line = 'puts $VERBOSE, $SAFE, $DEBUG, $KCODE, $F.join(59.chr), $LOAD_PATH.join(44.chr), Dir.pwd, Java::java::lang::System.getProperty(:foo.to_s)'
131
- args = "--1.8 -J-Dfoo=bar -v -T3 -d -Ku -a -n -Ihello -C .. -F, -e #{ q + e_line + q } "
132
- lines = jruby_with_pipe ( "echo 1,2,3" , args ) . split ( "\n " )
133
- assert_equal 0 , $?. exitstatus , "failed execution with output:\n #{ lines } "
134
- parent_dir = Dir . chdir ( '..' ) { Dir . pwd }
135
-
136
- assert_match /jruby \d +(\. \d +\. \d +)?/ , lines [ 0 ]
137
- assert_match /true$/ , lines [ 1 ]
138
- assert_equal "0" , lines [ 2 ]
139
- assert_equal "true" , lines [ 3 ]
140
- assert_equal "UTF8" , lines [ 4 ]
141
- assert_equal "1;2;3" , lines [ 5 ] . rstrip
142
- assert_match /^hello/ , lines [ 6 ]
143
- # The gsub is for windows
144
- assert_equal "#{ parent_dir } " , lines [ 7 ] . gsub ( '\\' , '/' )
145
- assert_equal "bar" , lines [ 8 ]
146
-
147
- e_line = 'puts Gem'
148
- args = " -rrubygems -e #{ q + e_line + q } "
149
- lines = jruby_with_pipe ( "echo 1,2,3" , args ) . split ( "\n " )
150
- assert_equal 0 , $?. exitstatus
151
-
152
- assert_equal "Gem" , lines [ 0 ]
153
- end
154
-
155
121
def test_dash_little_v_version_verbose_T_taint_d_debug_K_kcode_r_require_b_benchmarks_a_splitsinput_I_loadpath_C_cwd_F_delimeter_J_javaprop_19
156
122
e_line = 'puts $VERBOSE, $SAFE, $DEBUG, Encoding.default_external, $F.join(59.chr), $LOAD_PATH.join(44.chr), Dir.pwd, Java::java::lang::System.getProperty(:foo.to_s)'
157
- args = "--1.9 - J-Dfoo=bar -v -T3 -d -Ku -a -n -Ihello -C .. -F, -e #{ q + e_line + q } "
123
+ args = "-J-Dfoo=bar -v -T3 -d -Ku -a -n -Ihello -C .. -F, -e #{ q + e_line + q } "
158
124
lines = jruby_with_pipe ( "echo 1,2,3" , args ) . split ( "\n " )
159
125
assert_equal 0 , $?. exitstatus , "failed execution with output:\n #{ lines } "
160
126
parent_dir = Dir . chdir ( '..' ) { Dir . pwd }
0 commit comments