File tree Expand file tree Collapse file tree
graalpython/lib-python/3/test Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ import sys
12import unittest
23from test import support
34import gc
@@ -308,6 +309,7 @@ def test_badcmp(self):
308309 self .assertRaises (RuntimeError , s .discard , BadCmp ())
309310 self .assertRaises (RuntimeError , s .remove , BadCmp ())
310311
312+ @unittest .skipIf (sys .implementation .name == 'graalpython' , 'Functionality not yet supported' )
311313 def test_cyclical_repr (self ):
312314 w = ReprWrapper ()
313315 s = self .thetype ([w ])
@@ -318,6 +320,7 @@ def test_cyclical_repr(self):
318320 name = repr (s ).partition ('(' )[0 ] # strip class name
319321 self .assertEqual (repr (s ), '%s({%s(...)})' % (name , name ))
320322
323+ @unittest .skipIf (sys .implementation .name == 'graalpython' , 'Functionality not yet supported' )
321324 def test_cyclical_print (self ):
322325 w = ReprWrapper ()
323326 s = self .thetype ([w ])
You can’t perform that action at this time.
0 commit comments