Skip to content

Commit 994afe3

Browse files
committed
Mark newly failing tests
1 parent 81da4da commit 994afe3

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Lib/test/test_support.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -515,6 +515,8 @@ def check_options(self, args, func, expected=None):
515515
self.assertEqual(proc.stdout.rstrip(), repr(expected))
516516
self.assertEqual(proc.returncode, 0)
517517

518+
# TODO: RUSTPYTHON
519+
@unittest.expectedFailure
518520
def test_args_from_interpreter_flags(self):
519521
# Test test.support.args_from_interpreter_flags()
520522
for opts in (
@@ -703,6 +705,11 @@ def test_has_strftime_extensions(self):
703705
else:
704706
self.assertTrue(support.has_strftime_extensions)
705707

708+
# TODO: RUSTPYTHON
709+
if not sys.platform.startswith("win"):
710+
# TODO: RUSTPYTHON
711+
test_has_strftime_extensions = unittest.expectedFailure(test_has_strftime_extensions)
712+
706713
# XXX -follows a list of untested API
707714
# make_legacy_pyc
708715
# is_resource_enabled

0 commit comments

Comments
 (0)