@@ -488,6 +488,8 @@ def test_license_exists_at_url(self):
488
488
489
489
class StartupImportTests (unittest .TestCase ):
490
490
491
+ # TODO: RUSTPYTHON
492
+ @unittest .expectedFailure
491
493
@support .requires_subprocess ()
492
494
def test_startup_imports (self ):
493
495
# Get sys.path in isolated mode (python3 -I)
@@ -604,6 +606,8 @@ def _calc_sys_path_for_underpth_nosite(self, sys_prefix, lines):
604
606
sys_path .append (abs_path )
605
607
return sys_path
606
608
609
+ # TODO: RUSTPYTHON
610
+ @unittest .expectedFailure
607
611
@support .requires_subprocess ()
608
612
def test_underpth_basic (self ):
609
613
libpath = test .support .STDLIB_DIR
@@ -625,6 +629,8 @@ def test_underpth_basic(self):
625
629
"sys.path is incorrect"
626
630
)
627
631
632
+ # TODO: RUSTPYTHON
633
+ @unittest .expectedFailure
628
634
@support .requires_subprocess ()
629
635
def test_underpth_nosite_file (self ):
630
636
libpath = test .support .STDLIB_DIR
@@ -654,6 +660,8 @@ def test_underpth_nosite_file(self):
654
660
"sys.path is incorrect"
655
661
)
656
662
663
+ # TODO: RUSTPYTHON
664
+ @unittest .expectedFailure
657
665
@support .requires_subprocess ()
658
666
def test_underpth_file (self ):
659
667
libpath = test .support .STDLIB_DIR
@@ -679,6 +687,8 @@ def test_underpth_file(self):
679
687
)], env = env )
680
688
self .assertTrue (rc , "sys.path is incorrect" )
681
689
690
+ # TODO: RUSTPYTHON
691
+ @unittest .expectedFailure
682
692
@support .requires_subprocess ()
683
693
def test_underpth_dll_file (self ):
684
694
libpath = test .support .STDLIB_DIR
0 commit comments