Skip to content

Commit 786a65e

Browse files
committed
unmark successful tests
1 parent 44e1e4d commit 786a65e

File tree

3 files changed

+0
-9
lines changed

3 files changed

+0
-9
lines changed

Lib/test/test_argparse.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6747,8 +6747,6 @@ def test_ambiguous_option(self):
67476747
"ambiguous option: --foob=1 could match --foobaz, --fooble$",
67486748
self.parser.parse_args, ['--foob=1', '--foogle', '2'])
67496749

6750-
# TODO: RUSTPYTHON
6751-
@unittest.expectedFailure
67526750
def test_os_error(self):
67536751
self.parser.add_argument('file')
67546752
self.assertRaisesRegex(argparse.ArgumentError,

Lib/test/test_py_compile.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,6 @@ def test_bad_syntax_with_quiet(self):
266266
self.assertEqual(stdout, b'')
267267
self.assertEqual(stderr, b'')
268268

269-
@unittest.expectedFailureIfWindows("TODO: RUSTPYTHON")
270269
def test_file_not_exists(self):
271270
should_not_exists = os.path.join(os.path.dirname(__file__), 'should_not_exists.py')
272271
rc, stdout, stderr = self.pycompilecmd_failure(self.source_path, should_not_exists)

Lib/test/test_subprocess.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1878,8 +1878,6 @@ def _get_chdir_exception(self):
18781878
self._nonexistent_dir)
18791879
return desired_exception
18801880

1881-
# TODO: RUSTPYTHON
1882-
@unittest.expectedFailure
18831881
def test_exception_cwd(self):
18841882
"""Test error in the child raised in the parent for a bad cwd."""
18851883
desired_exception = self._get_chdir_exception()
@@ -1895,8 +1893,6 @@ def test_exception_cwd(self):
18951893
else:
18961894
self.fail("Expected OSError: %s" % desired_exception)
18971895

1898-
# TODO: RUSTPYTHON
1899-
@unittest.expectedFailure
19001896
def test_exception_bad_executable(self):
19011897
"""Test error in the child raised in the parent for a bad executable."""
19021898
desired_exception = self._get_chdir_exception()
@@ -1912,8 +1908,6 @@ def test_exception_bad_executable(self):
19121908
else:
19131909
self.fail("Expected OSError: %s" % desired_exception)
19141910

1915-
# TODO: RUSTPYTHON
1916-
@unittest.expectedFailure
19171911
def test_exception_bad_args_0(self):
19181912
"""Test error in the child raised in the parent for a bad args[0]."""
19191913
desired_exception = self._get_chdir_exception()

0 commit comments

Comments
 (0)