@@ -1476,7 +1476,6 @@ def test_dont_copy_file_onto_link_to_itself(self):
14761476 finally :
14771477 shutil .rmtree (TESTFN , ignore_errors = True )
14781478
1479- @unittest .expectedFailureIfWindows ('TODO: RUSTPYTHON; AssertionError: SameFileError not raised for copyfile' )
14801479 @os_helper .skip_unless_symlink
14811480 def test_dont_copy_file_onto_symlink_to_itself (self ):
14821481 # bug 851123.
@@ -2577,7 +2576,6 @@ def test_destinsrc_false_positive(self):
25772576 finally :
25782577 os_helper .rmtree (TESTFN )
25792578
2580- @unittest .expectedFailureIfWindows ("TODO: RUSTPYTHON" )
25812579 @os_helper .skip_unless_symlink
25822580 @mock_rename
25832581 def test_move_file_symlink (self ):
@@ -2587,7 +2585,6 @@ def test_move_file_symlink(self):
25872585 self .assertTrue (os .path .islink (self .dst_file ))
25882586 self .assertTrue (os .path .samefile (self .src_file , self .dst_file ))
25892587
2590- @unittest .expectedFailureIfWindows ("TODO: RUSTPYTHON" )
25912588 @os_helper .skip_unless_symlink
25922589 @mock_rename
25932590 def test_move_file_symlink_to_dir (self ):
@@ -2611,7 +2608,6 @@ def test_move_dangling_symlink(self):
26112608 self .assertTrue (os .path .islink (dst_link ))
26122609 self .assertEqual (os .path .realpath (src ), os .path .realpath (dst_link ))
26132610
2614- @unittest .expectedFailureIfWindows ("TODO: RUSTPYTHON" )
26152611 @os_helper .skip_unless_symlink
26162612 @mock_rename
26172613 def test_move_dir_symlink (self ):
@@ -2687,12 +2683,10 @@ def _test_move_symlink_to_dir_into_dir(self, dst):
26872683 self .assertTrue (os .path .samefile (self .dst_dir , dst_link ))
26882684 self .assertTrue (os .path .exists (src ))
26892685
2690- @unittest .expectedFailureIfWindows ("TODO: RUSTPYTHON" )
26912686 @os_helper .skip_unless_symlink
26922687 def test_move_symlink_to_dir_into_dir (self ):
26932688 self ._test_move_symlink_to_dir_into_dir (self .dst_dir )
26942689
2695- @unittest .expectedFailureIfWindows ("TODO: RUSTPYTHON" )
26962690 @os_helper .skip_unless_symlink
26972691 def test_move_symlink_to_dir_into_symlink_to_dir (self ):
26982692 dst = os .path .join (self .src_dir , 'otherlinktodir' )
0 commit comments