8000 Mark failing tests in test_ntpath · RustPython/RustPython@e9749e8 · GitHub
[go: up one dir, main page]

Skip to content

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit e9749e8

Browse files
committed
Mark failing tests in test_ntpath
1 parent b7bfe5f commit e9749e8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Lib/test/test_ntpath.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -981,6 +981,8 @@ def test_isfile_driveletter(self):
981981
raise unittest.SkipTest('SystemDrive is not defined or malformed')
982982
self.assertFalse(os.path.isfile('\\\\.\\' + drive))
983983

984+
# TODO: RUSTPYTHON
985+
@unittest.expectedFailure
984986
@unittest.skipIf(sys.platform != 'win32', "windows only")
985987
def test_con_device(self):
986988
self.assertFalse(os.path.isfile(r"\\.\CON"))
@@ -1003,6 +1005,8 @@ def test_fast_paths_in_use(self):
10031005
self.assertTrue(os.path.exists is nt._path_exists)
10041006
self.assertFalse(inspect.isfunction(os.path.exists))
10051007

1008+
# TODO: RUSTPYTHON
1009+
@unittest.expectedFailure
10061010
@unittest.skipIf(os.name != 'nt', "Dev Drives only exist on Win32")
10071011
def test_isdevdrive(self):
10081012
# Result may be True or False, but shouldn't raise

0 commit comments

Comments
 (0)
0