File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
graalpython/com.oracle.graal.python.hpy.test/src/hpytest Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 33
33
34
34
35
35
class TestHPyStructSequence (HPyTest ):
36
- def test_structseq (self ):
36
+ def test_structseq (self , hpy_abi ):
37
37
import pytest
38
+ if hpy_abi == "cpython" :
39
+ pytest .skip ("structseq not supported on GraalPy" )
38
40
mod = self .make_module ("""
39
41
static HPyStructSequence_Field structseq_fields[] = {
40
42
{ "field0", "doc0" },
Original file line number Diff line number Diff line change @@ -1507,7 +1507,10 @@ def __new__(self):
1507
1507
with pytest .raises (TypeError ):
1508
1508
mod .create_type ("mytest.DummyIntMeta" , int )
1509
1509
1510
- def test_get_name (self ):
1510
+ def test_get_name (self , hpy_abi ):
1511
+ import pytest
1512
+ if "debug" in hpy_abi :
1513
+ pytest .skip ("unsupported on GraalPy" )
1511
1514
import array
1512
1515
mod = self .make_module ("""
1513
1516
static HPyType_Spec Dummy_spec = {
You can’t perform that action at this time.
0 commit comments