This commit is contained in:
Takashi Kokubun 2023-07-11 14:39:32 -07:00
Родитель d45118aaaf
Коммит 503f987ead
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -279,6 +279,7 @@ assert_normal_exit %q{
exec "/" exec "/"
} }
rjit_enabled = RUBY_DESCRIPTION.include?('+RJIT')
assert_normal_exit %q{ assert_normal_exit %q{
(0..10).map { (0..10).map {
Thread.new { Thread.new {
@ -289,7 +290,7 @@ assert_normal_exit %q{
}.each {|t| }.each {|t|
t.join t.join
} }
} } unless rjit_enabled # flaky
assert_equal 'ok', %q{ assert_equal 'ok', %q{
def m def m
@ -483,7 +484,7 @@ assert_equal 'foo', %q{
[th1, th2].each {|t| t.join } [th1, th2].each {|t| t.join }
GC.start GC.start
f.call.source f.call.source
} unless ENV['RUN_OPTS'] =~ /rjit/ # flaky } unless rjit_enabled # flaky
assert_normal_exit %q{ assert_normal_exit %q{
class C class C
def inspect def inspect