Skip to content

Commit 4782bb3

Browse files
committed
Another attempt to skip test_ractor on ci.rvm.jp
This reverts commit 8d31a60.
1 parent 8d31a60 commit 4782bb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bootstraptest/test_ractor.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1673,7 +1673,7 @@ def initialize
16731673
}
16741674

16751675
# Selector#wait can support dynamic addition
1676-
yjit_enabled = defined?(RubyVM::YJIT) && RubyVM::YJIT.enabled?
1676+
yjit_enabled = ENV.key?('RUBY_YJIT_ENABLE') || ENV.fetch('RUN_OPTS', '').include?('yjit') || BT.ruby.include?('yjit')
16771677
assert_equal '600', %q{
16781678
RN = 100
16791679
s = Ractor::Selector.new

0 commit comments

Comments
 (0)