diff options
author | Takashi Kokubun <[email protected]> | 2023-12-07 09:41:06 -0800 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2023-12-07 09:42:56 -0800 |
commit | 1721bb9dc6dcc3ecec05e9d6f72654099460ef50 (patch) | |
tree | f260ee1d75d0efa0b89bf34c55ed60aff7931c0d | |
parent | 3a88de3ca73052809f5c0bfb4ef8cd435b29ae5f (diff) |
Skip a flaky objspace test on Visual Studio
This seems to happen only on VisualStudio:
https://github.com/ruby/ruby/actions/runs/7130917319/job/19418375386
It fails relatively frequently. Nobody seems actively working on it, so
let's skip it until somebody starts working on it.
-rw-r--r-- | test/objspace/test_objspace.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/objspace/test_objspace.rb b/test/objspace/test_objspace.rb index 5f7bfd0971..4e09fe1af7 100644 --- a/test/objspace/test_objspace.rb +++ b/test/objspace/test_objspace.rb @@ -141,6 +141,7 @@ class TestObjSpace < Test::Unit::TestCase end def test_reachable_objects_during_iteration + omit 'flaky on Visual Studio with: [BUG] Unnormalized Fixnum value' if /mswin/ =~ RUBY_PLATFORM opts = %w[--disable-gem --disable=frozen-string-literal -robjspace] assert_separately opts, "#{<<-"begin;"}\n#{<<-'end;'}" begin; |