()
| 329 | |
| 330 | |
| 331 | def test_posixsubprocess(): |
| 332 | import multiprocessing.util |
| 333 | |
| 334 | exe = b"xxx" |
| 335 | args = [b"yyy", b"zzz"] |
| 336 | with TestHook() as hook: |
| 337 | multiprocessing.util.spawnv_passfds(exe, args, ()) |
| 338 | assert ("_posixsubprocess.fork_exec", ([exe], args, None)) in hook.seen |
| 339 | |
| 340 | |
| 341 | def test_excepthook(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…