(self)
| 3326 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 3327 | @requires_os_func('spawnlp') |
| 3328 | def test_spawnlp(self): |
| 3329 | program, args = self.create_args() |
| 3330 | exitcode = os.spawnlp(os.P_WAIT, program, *args) |
| 3331 | self.assertEqual(exitcode, self.exitcode) |
| 3332 | |
| 3333 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 3334 | @requires_os_func('spawnlpe') |
nothing calls this directly
no test coverage detected