@@ -1614,8 +1614,6 @@ def test_file_not_found_includes_filename(self):
1614
1614
subprocess .call (['/opt/nonexistent_binary' , 'with' , 'some' , 'args' ])
1615
1615
self .assertEqual (c .exception .filename , '/opt/nonexistent_binary' )
1616
1616
1617
- # TODO: RUSTPYTHON
1618
- @unittest .expectedFailure
1619
1617
@unittest .skipIf (mswindows , "behavior currently not supported on Windows" )
1620
1618
def test_file_not_found_with_bad_cwd (self ):
1621
1619
with self .assertRaises (FileNotFoundError ) as c :
@@ -2033,8 +2031,6 @@ def test_start_new_session(self):
2033
2031
child_sid = int (output )
2034
2032
self .assertNotEqual (parent_sid , child_sid )
2035
2033
2036
- # TODO: RUSTPYTHON
2037
- @unittest .expectedFailure
2038
2034
@unittest .skipUnless (hasattr (os , 'setpgid' ) and hasattr (os , 'getpgid' ),
2039
2035
'no setpgid or getpgid on platform' )
2040
2036
def test_process_group_0 (self ):
@@ -2053,8 +2049,6 @@ def test_process_group_0(self):
2053
2049
child_pgid = int (output )
2054
2050
self .assertNotEqual (parent_pgid , child_pgid )
2055
2051
2056
- # TODO: RUSTPYTHON
2057
- @unittest .expectedFailure
2058
2052
@unittest .skipUnless (hasattr (os , 'setreuid' ), 'no setreuid on platform' )
2059
2053
def test_user (self ):
2060
2054
# For code coverage of the user parameter. We don't care if we get a
@@ -2112,8 +2106,6 @@ def test_user_error(self):
2112
2106
with self .assertRaises (ValueError ):
2113
2107
subprocess .check_call (ZERO_RETURN_CMD , user = 65535 )
2114
2108
2115
- # TODO: RUSTPYTHON, observed gids do not match expected gids
2116
- @unittest .expectedFailure
2117
2109
@unittest .skipUnless (hasattr (os , 'setregid' ), 'no setregid() on platform' )
2118
2110
def test_group (self ):
2119
2111
gid = os .getegid ()
0 commit comments