Skip to content

Commit c49c02e

Browse files
committed
test_xdrlib: skip SIGSEG tests
1 parent a80d5fd commit c49c02e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

graalpython/lib-python/3/test/test_xdrlib.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
class XDRTest(unittest.TestCase):
66

7+
@unittest.skipIfGraalPython(reason="not yet supported, causes SEGFAULT")
78
def test_xdr(self):
89
p = xdrlib.Packer()
910

@@ -58,15 +59,19 @@ def setUp(self):
5859
def assertRaisesConversion(self, *args):
5960
self.assertRaises(xdrlib.ConversionError, *args)
6061

62+
@unittest.skipIfGraalPython(reason="not yet supported, causes SEGFAULT")
6163
def test_pack_int(self):
6264
self.assertRaisesConversion(self.packer.pack_int, 'string')
6365

66+
@unittest.skipIfGraalPython(reason="not yet supported, causes SEGFAULT")
6467
def test_pack_uint(self):
6568
self.assertRaisesConversion(self.packer.pack_uint, 'string')
6669

70+
@unittest.skipIfGraalPython(reason="not yet supported, causes SEGFAULT")
6771
def test_float(self):
6872
self.assertRaisesConversion(self.packer.pack_float, 'string')
6973

74+
@unittest.skipIfGraalPython(reason="not yet supported, causes SEGFAULT")
7075
def test_double(self):
7176
self.assertRaisesConversion(self.packer.pack_double, 'string')
7277

0 commit comments

Comments
 (0)