File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
graalpython/lib-graalpython/modules/hpy/test Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -308,6 +308,7 @@ def count_pairs():
308
308
gc .collect ()
309
309
assert count_pairs () == 0
310
310
311
+ @pytest .mark .syncgc
311
312
def test_tp_finalize (self ):
312
313
# Tests the contract of tp_finalize: what it should see
313
314
# if called from within HPyField_Store
Original file line number Diff line number Diff line change @@ -95,6 +95,7 @@ def test_legacy_dealloc(self):
95
95
import gc ; gc .collect ()
96
96
assert mod .get_counter () == 1
97
97
98
+ @pytest .mark .syncgc
98
99
def test_legacy_dealloc_and_HPy_tp_traverse (self ):
99
100
import pytest
100
101
mod_src = """
@@ -129,6 +130,7 @@ def test_legacy_dealloc_and_HPy_tp_traverse(self):
129
130
mod = self .make_module (mod_src )
130
131
assert "legacy tp_dealloc" in str (err .value )
131
132
133
+ @pytest .mark .syncgc
132
134
def test_legacy_dealloc_and_HPy_tp_destroy (self ):
133
135
import pytest
134
136
mod_src = """
You can’t perform that action at this time.
0 commit comments