File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
graalpython/lib-python/3/test Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change
1
+ import sys
1
2
import unittest
2
3
from test import support
3
4
import gc
@@ -308,6 +309,7 @@ def test_badcmp(self):
308
309
self .assertRaises (RuntimeError , s .discard , BadCmp ())
309
310
self .assertRaises (RuntimeError , s .remove , BadCmp ())
310
311
312
+ @unittest .skipIf (sys .implementation .name == 'graalpython' , 'Functionality not yet supported' )
311
313
def test_cyclical_repr (self ):
312
314
w = ReprWrapper ()
313
315
s = self .thetype ([w ])
@@ -318,6 +320,7 @@ def test_cyclical_repr(self):
318
320
name = repr (s ).partition ('(' )[0 ] # strip class name
319
321
self .assertEqual (repr (s ), '%s({%s(...)})' % (name , name ))
320
322
323
+ @unittest .skipIf (sys .implementation .name == 'graalpython' , 'Functionality not yet supported' )
321
324
def test_cyclical_print (self ):
322
325
w = ReprWrapper ()
323
326
s = self .thetype ([w ])
You can’t perform that action at this time.
0 commit comments