Skip to content

Commit 0c70492

Browse files
committed
unmark tests
1 parent 0880007 commit 0c70492

File tree

4 files changed

+0
-19
lines changed

4 files changed

+0
-19
lines changed

Lib/test/test_genericpath.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -352,13 +352,6 @@ def test_invalid_paths(self):
352352
with self.assertRaisesRegex(ValueError, 'embedded null'):
353353
func(b'/tmp\x00abcds')
354354

355-
@unittest.expectedFailureIfWindows('TODO: RUSTPYTHON')
356-
def test_samestat_on_symlink(self):
357-
return super().test_samestat_on_symlink()
358-
359-
@unittest.expectedFailureIfWindows('TODO: RUSTPYTHON')
360-
def test_samefile_on_symlink(self):
361-
return super().test_samefile_on_symlink()
362355

363356
# Following TestCase is not supposed to be run from test_genericpath.
364357
# It is inherited by other test modules (ntpath, posixpath).

Lib/test/test_logging.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6384,7 +6384,6 @@ def rotator(source, dest):
63846384
rh.close()
63856385

63866386
class TimedRotatingFileHandlerTest(BaseFileTest):
6387-
@unittest.expectedFailureIfWindows('TODO: RUSTPYTHON')
63886387
@unittest.skipIf(support.is_wasi, "WASI does not have /dev/null.")
63896388
def test_should_not_rollover(self):
63906389
# See bpo-45401. Should only ever rollover regular files

Lib/test/test_ntpath.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1458,8 +1458,6 @@ def test_isfile_named_pipe(self):
14581458
finally:
14591459
_winapi.CloseHandle(h)
14601460

1461-
# TODO: RUSTPYTHON
1462-
@unittest.expectedFailure
14631461
@unittest.skipIf(sys.platform != 'win32', "windows only")
14641462
def test_con_device(self):
14651463
self.assertFalse(os.path.isfile(r"\\.\CON"))
@@ -1527,14 +1525,6 @@ def test_expandvars(self):
15271525
def test_expandvars_nonascii(self):
15281526
return super().test_expandvars_nonascii()
15291527

1530-
@unittest.expectedFailureIfWindows('TODO: RUSTPYTHON')
1531-
def test_samefile_on_symlink(self):
1532-
return super().test_samefile_on_symlink()
1533-
1534-
@unittest.expectedFailureIfWindows('TODO: RUSTPYTHON')
1535-
def test_samestat_on_symlink(self):
1536-
return super().test_samestat_on_symlink()
1537-
15381528

15391529
class PathLikeTests(NtpathTestCase):
15401530

Lib/test/test_shutil.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.

0 commit comments

Comments
 (0)