Skip to content

Commit 8666476

Browse files
committed
Mark some specs as pending on JRuby due to a possible bug
jruby/jruby#7136
1 parent ee1be19 commit 8666476

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

spec/concurrent/executor/safe_task_executor_spec.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ def execute
109109
end
110110

111111
it 'should return success' do
112+
(pending('possible local jump bug on JRuby https://github.com/jruby/jruby/issues/7136'); fails) if Concurrent.on_jruby?
112113
success, _value, _reason = subject
113114
expect(success).to be_truthy
114115
end
@@ -119,6 +120,7 @@ def execute
119120
end
120121

121122
it 'should return a nil reason' do
123+
(pending('possible local jump bug on JRuby https://github.com/jruby/jruby/issues/7136'); fails) if Concurrent.on_jruby?
122124
_success, _value, reason = subject
123125
expect(reason).to be_nil
124126
end

0 commit comments

Comments
 (0)