@@ -57,6 +57,8 @@ def test_import_module(self):
57
57
self .assertRaises (unittest .SkipTest ,
58
58
import_helper .import_module , "foo" )
59
59
60
+ # TODO: RUSTPYTHON
61
+ @unittest .expectedFailure
60
62
def test_import_fresh_module (self ):
61
63
import_helper .import_fresh_module ("ftplib" )
62
64
@@ -323,6 +325,8 @@ def test_check_syntax_error(self):
323
325
with self .assertRaises (AssertionError ):
324
326
support .check_syntax_error (self , "x=1" )
325
327
328
+ # TODO: RUSTPYTHON
329
+ @unittest .expectedFailure
326
330
def test_CleanImport (self ):
327
331
import importlib
328
332
with import_helper .CleanImport ("pprint" ):
@@ -515,6 +519,8 @@ def check_options(self, args, func, expected=None):
515
519
self .assertEqual (proc .stdout .rstrip (), repr (expected ))
516
520
self .assertEqual (proc .returncode , 0 )
517
521
522
+ # TODO: RUSTPYTHON
523
+ @unittest .expectedFailure
518
524
def test_args_from_interpreter_flags (self ):
519
525
# Test test.support.args_from_interpreter_flags()
520
526
for opts in (
@@ -697,6 +703,8 @@ def test_print_warning(self):
697
703
self .check_print_warning ("a\n b" ,
698
704
'Warning -- a\n Warning -- b\n ' )
699
705
706
+ # TODO: RUSTPYTHON
707
+ @unittest .expectedFailure
700
708
def test_has_strftime_extensions (self ):
701
709
if support .is_emscripten or sys .platform == "win32" :
702
710
self .assertFalse (support .has_strftime_extensions )
0 commit comments