@@ -1088,8 +1088,6 @@ def test_copymode_follow_symlinks(self):
1088
1088
shutil .copymode (src_link , dst_link )
1089
1089
self .assertEqual (os .stat (src ).st_mode , os .stat (dst ).st_mode )
1090
1090
1091
- # TODO: RUSTPYTHON
1092
- @unittest .expectedFailure
1093
1091
@unittest .skipUnless (hasattr (os , 'lchmod' ) or os .name == 'nt' , 'requires os.lchmod' )
1094
1092
@os_helper .skip_unless_symlink
1095
1093
def test_copymode_symlink_to_symlink (self ):
@@ -3008,7 +3006,6 @@ def test_unhandled_exception(self):
3008
3006
self .assertRaises (ZeroDivisionError ,
3009
3007
shutil .copyfile , TESTFN , TESTFN2 )
3010
3008
3011
- @unittest .skipIf (sys .platform == "darwin" , "TODO: RUSTPYTHON, OSError.error on macOS" )
3012
3009
def test_exception_on_first_call (self ):
3013
3010
# Emulate a case where the first call to the zero-copy
3014
3011
# function raises an exception in which case the function is
@@ -3019,7 +3016,6 @@ def test_exception_on_first_call(self):
3019
3016
with self .assertRaises (_GiveupOnFastCopy ):
3020
3017
self .zerocopy_fun (src , dst )
3021
3018
3022
- @unittest .skipIf (sys .platform == "darwin" , "TODO: RUSTPYTHON, OSError.error on macOS" )
3023
3019
def test_filesystem_full (self ):
3024
3020
# Emulate a case where filesystem is full and sendfile() fails
3025
3021
# on first call.
0 commit comments