Skip to content

Commit 715529b

Browse files
committed
mark failing tests
1 parent 68e7310 commit 715529b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Lib/test/test_posix.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1063,6 +1063,7 @@ def check_lchmod_link(self, chmod_func, target, link, **kwargs):
10631063
self.assertEqual(os.stat(target).st_mode, target_mode)
10641064
self.assertEqual(os.lstat(link).st_mode, new_mode)
10651065

1066+
@unittest.expectedFailureIfWindows('TODO: RUSTPYTHON')
10661067
@os_helper.skip_unless_symlink
10671068
def test_chmod_file_symlink(self):
10681069
target = os_helper.TESTFN
@@ -1350,6 +1351,7 @@ def test_get_and_set_scheduler_and_param(self):
13501351
param = posix.sched_param(sched_priority=-large)
13511352
self.assertRaises(OverflowError, posix.sched_setparam, 0, param)
13521353

1354+
@unittest.expectedFailureIf(sys.platform == 'linux', "TODO: RUSTPYTHON; TypeError: cannot pickle 'sched_param' object")
13531355
@requires_sched
13541356
def test_sched_param(self):
13551357
param = posix.sched_param(1)

0 commit comments

Comments
 (0)