You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using collect output, collectOutput will block until the long process exit for every process.
Without collectOutput, the short process will die first at 2 seconds then the long process will die at 8 seconds
Output
With collect output:
Process Spawned 11C
Process Spawned 150
Process Spawned 17C
Process Spawned 164
Process Spawned 138
Process Spawned 198
Process Collected 150 at 8
Process Collected 164 at 8
Process Collected 138 at 8
Process Collected 198 at 8
Process Collected 11C at 8
Process Collected 17C at 8
Process Died 150 at 8
Process Died 164 at 8
Process Died 138 at 8
Process Died 198 at 8
Process Died 11C at 8
Process Died 17C at 8
Without collect output:
Process Spawned D0
Process Spawned 180
Process Spawned 1D4
Process Spawned 1C0
Process Spawned 150
Process Spawned 1B0
Process Died D0 at 2
Process Died 180 at 2
Process Died 150 at 2
Process Died 1D4 at 2
Process Died 1C0 at 2
Process Died 1B0 at 8
Expected Behavior
Expected behavior
When using collect output, collectOutput should block until the process that it is called on die not the longest living process.
The text was updated successfully, but these errors were encountered:
Zig Version
0.14.0-dev.3012+3348478fc
Steps to Reproduce and Observed Behavior
How to reproduce
In a Windows 11 machine run
Observed behavior
When using collect output, collectOutput will block until the long process exit for every process.
Without collectOutput, the short process will die first at 2 seconds then the long process will die at 8 seconds
Output
Expected Behavior
Expected behavior
When using collect output, collectOutput should block until the process that it is called on die not the longest living process.
The text was updated successfully, but these errors were encountered: