File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -110,17 +110,20 @@ def execute
110
110
111
111
it 'should return success' do
112
112
( pending ( 'possible local jump bug on JRuby https://github.com/jruby/jruby/issues/7136' ) ; fails ) if Concurrent . on_jruby?
113
+ ( pending ( 'the test does not make sense: https://github.com/ruby-concurrency/concurrent-ruby/issues/931' ) ; fails ) if Concurrent . on_truffleruby?
113
114
success , _value , _reason = subject
114
115
expect ( success ) . to be_truthy
115
116
end
116
117
117
118
it 'should return a nil value' do
119
+ ( pending ( 'the test does not make sense: https://github.com/ruby-concurrency/concurrent-ruby/issues/931' ) ; fails ) if Concurrent . on_truffleruby?
118
120
_success , value , _reason = subject
119
121
expect ( value ) . to be_nil
120
122
end
121
123
122
124
it 'should return a nil reason' do
123
125
( pending ( 'possible local jump bug on JRuby https://github.com/jruby/jruby/issues/7136' ) ; fails ) if Concurrent . on_jruby?
126
+ ( pending ( 'the test does not make sense: https://github.com/ruby-concurrency/concurrent-ruby/issues/931' ) ; fails ) if Concurrent . on_truffleruby?
124
127
_success , _value , reason = subject
125
128
expect ( reason ) . to be_nil
126
129
end
You can’t perform that action at this time.
0 commit comments