(self)
| 3312 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 3313 | @requires_os_func('spawnl') |
| 3314 | def test_spawnl(self): |
| 3315 | program, args = self.create_args() |
| 3316 | exitcode = os.spawnl(os.P_WAIT, program, *args) |
| 3317 | self.assertEqual(exitcode, self.exitcode) |
| 3318 | |
| 3319 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 3320 | @requires_os_func('spawnle') |
nothing calls this directly
no test coverage detected