@@ -79,22 +79,22 @@ def test_evaluate_with_exception
79
79
end
80
80
81
81
def test_evaluate_with_encoding_error_without_lineno
82
- skip if RUBY_ENGINE == 'truffleruby'
82
+ pend if RUBY_ENGINE == 'truffleruby'
83
83
assert_raise_with_message ( EncodingError , /invalid symbol/ ) {
84
84
@context . evaluate ( %q[{"\xAE": 1}] , 1 )
85
85
# The backtrace of this invalid encoding hash doesn't contain lineno.
86
86
}
87
87
end
88
88
89
89
def test_evaluate_with_onigmo_warning
90
- skip if RUBY_ENGINE == 'truffleruby'
90
+ pend if RUBY_ENGINE == 'truffleruby'
91
91
assert_warning ( "(irb):1: warning: character class has duplicated range: /[aa]/\n " ) do
92
92
@context . evaluate ( '/[aa]/' , 1 )
93
93
end
94
94
end
95
95
96
96
def test_eval_input
97
- skip if RUBY_ENGINE == 'truffleruby'
97
+ pend if RUBY_ENGINE == 'truffleruby'
98
98
verbose , $VERBOSE = $VERBOSE, nil
99
99
input = TestInputMethod . new ( [
100
100
"raise 'Foo'\n " ,
@@ -117,7 +117,7 @@ def test_eval_input
117
117
end
118
118
119
119
def test_eval_input_raise2x
120
- skip if RUBY_ENGINE == 'truffleruby'
120
+ pend if RUBY_ENGINE == 'truffleruby'
121
121
input = TestInputMethod . new ( [
122
122
"raise 'Foo'\n " ,
123
123
"raise 'Bar'\n " ,
@@ -449,7 +449,7 @@ def main.inspect
449
449
end
450
450
451
451
def test_eval_input_with_exception
452
- skip if RUBY_ENGINE == 'truffleruby'
452
+ pend if RUBY_ENGINE == 'truffleruby'
453
453
verbose , $VERBOSE = $VERBOSE, nil
454
454
input = TestInputMethod . new ( [
455
455
"def hoge() fuga; end; def fuga() raise; end; hoge\n " ,
@@ -479,7 +479,7 @@ def test_eval_input_with_exception
479
479
end
480
480
481
481
def test_eval_input_with_invalid_byte_sequence_exception
482
- skip if RUBY_ENGINE == 'truffleruby'
482
+ pend if RUBY_ENGINE == 'truffleruby'
483
483
verbose , $VERBOSE = $VERBOSE, nil
484
484
input = TestInputMethod . new ( [
485
485
%Q{def hoge() fuga; end; def fuga() raise "A\\ xF3B"; end; hoge\n } ,
@@ -509,7 +509,7 @@ def test_eval_input_with_invalid_byte_sequence_exception
509
509
end
510
510
511
511
def test_eval_input_with_long_exception
512
- skip if RUBY_ENGINE == 'truffleruby'
512
+ pend if RUBY_ENGINE == 'truffleruby'
513
513
verbose , $VERBOSE = $VERBOSE, nil
514
514
nesting = 20
515
515
generated_code = ''
0 commit comments