diff options
author | Koichi Sasada <ko1@atdot.net> | 2020-08-18 02:22:32 +0900 |
---|---|---|
committer | Koichi Sasada <ko1@atdot.net> | 2020-08-18 02:23:12 +0900 |
commit | bc00e6aa909631c995473bc2f3d62fbe60b16ffe (patch) | |
tree | 769b01efbd05468bd0118d2dd225c6b5816a88a7 /test | |
parent | 264e4cd04fbcdcb739a1ff9a84e19afe66005cb2 (diff) | |
download | ruby-bc00e6aa909631c995473bc2f3d62fbe60b16ffe.tar.gz |
Disable debugging test.
```
1) Failure:
TestObjSpace#test_trace_object_allocations [/tmp/ruby/v3/src/trunk-gc_compact/test/objspace/test_objspace.rb:175]:
<nil> expected but was
<"/tmp/ruby/v3/src/trunk-gc_compact/test/objspace/test_objspace.rb">.
```
@tenderlove will re-enable it soon.
Diffstat (limited to 'test')
-rw-r--r-- | test/objspace/test_objspace.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/objspace/test_objspace.rb b/test/objspace/test_objspace.rb index 42fbc3e03c..28c0431456 100644 --- a/test/objspace/test_objspace.rb +++ b/test/objspace/test_objspace.rb @@ -194,7 +194,7 @@ class TestObjSpace < Test::Unit::TestCase assert_equal(self.class.name, ObjectSpace.allocation_class_path(o3)) assert_equal(__method__, ObjectSpace.allocation_method_id(o3)) } - end + end if false # TODO: tenderlove is debugging it [Tue Aug 18 11:00:49 2020 JST] def test_trace_object_allocations_start_stop_clear ObjectSpace.trace_object_allocations_clear # clear object_table to get rid of erroneous detection for obj3 |