File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
graalpython/lib-python/3/test Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 4
4
5
5
class XDRTest (unittest .TestCase ):
6
6
7
+ @unittest .skipIfGraalPython (reason = "not yet supported, causes SEGFAULT" )
7
8
def test_xdr (self ):
8
9
p = xdrlib .Packer ()
9
10
@@ -58,15 +59,19 @@ def setUp(self):
58
59
def assertRaisesConversion (self , * args ):
59
60
self .assertRaises (xdrlib .ConversionError , * args )
60
61
62
+ @unittest .skipIfGraalPython (reason = "not yet supported, causes SEGFAULT" )
61
63
def test_pack_int (self ):
62
64
self .assertRaisesConversion (self .packer .pack_int , 'string' )
63
65
66
+ @unittest .skipIfGraalPython (reason = "not yet supported, causes SEGFAULT" )
64
67
def test_pack_uint (self ):
65
68
self .assertRaisesConversion (self .packer .pack_uint , 'string' )
66
69
70
+ @unittest .skipIfGraalPython (reason = "not yet supported, causes SEGFAULT" )
67
71
def test_float (self ):
68
72
self .assertRaisesConversion (self .packer .pack_float , 'string' )
69
73
74
+ @unittest .skipIfGraalPython (reason = "not yet supported, causes SEGFAULT" )
70
75
def test_double (self ):
71
76
self .assertRaisesConversion (self .packer .pack_double , 'string' )
72
77
You can’t perform that action at this time.
0 commit comments