diff options
author | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2022-01-11 21:17:53 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2022-01-11 21:17:59 +0900 |
commit | f95039af7584a2fa27e4d1cbcdf28bbf5b5ecdcf (patch) | |
tree | 7e33786ef34003463a1abadec4ee99a8185ed04f /test/ruby/test_gc.rb | |
parent | 6d3ee418c2e12adaf292ad74b7d46a7708e91889 (diff) | |
download | ruby-f95039af7584a2fa27e4d1cbcdf28bbf5b5ecdcf.tar.gz |
Use omit instead of skip without the default gems tests
Diffstat (limited to 'test/ruby/test_gc.rb')
-rw-r--r-- | test/ruby/test_gc.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_gc.rb b/test/ruby/test_gc.rb index 2e91b5eb2d..788f2974b5 100644 --- a/test/ruby/test_gc.rb +++ b/test/ruby/test_gc.rb @@ -140,7 +140,7 @@ class TestGc < Test::Unit::TestCase end def test_stat_heap - skip 'stress' if GC.stress + omit 'stress' if GC.stress stat_heap = {} stat = {} @@ -187,7 +187,7 @@ class TestGc < Test::Unit::TestCase end def test_stat_heap_constraints - skip 'stress' if GC.stress + omit 'stress' if GC.stress stat = GC.stat stat_heap = GC.stat_heap |