You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spec/concurrent/executor/safe_task_executor_spec.rb
+3Lines changed: 3 additions & 0 deletions
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)ifConcurrent.on_jruby?
113
+
(pending('the test does not make sense: https://github.com/ruby-concurrency/concurrent-ruby/issues/931');fails)ifConcurrent.on_truffleruby?
113
114
success,_value,_reason=subject
114
115
expect(success).tobe_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)ifConcurrent.on_truffleruby?
118
120
_success,value,_reason=subject
119
121
expect(value).tobe_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)ifConcurrent.on_jruby?
126
+
(pending('the test does not make sense: https://github.com/ruby-concurrency/concurrent-ruby/issues/931');fails)ifConcurrent.on_truffleruby?
0 commit comments