(self)
| 3672 | |
| 3673 | @requires_os_func('spawnvpe') |
| 3674 | def test_spawnvpe(self): |
| 3675 | program, args = self.create_args(with_env=True) |
| 3676 | exitcode = os.spawnvpe(os.P_WAIT, program, args, self.env) |
| 3677 | self.assertEqual(exitcode, self.exitcode) |
| 3678 | |
| 3679 | @requires_os_func('spawnv') |
| 3680 | def test_nowait(self): |
nothing calls this directly
no test coverage detected