aboutsummaryrefslogtreecommitdiff
path: root/mk/run-test.sh
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2023-03-14 19:10:59 +0100
committerEelco Dolstra <edolstra@gmail.com>2023-03-15 10:58:37 +0100
commitc536e00c9deeac58bc4b3299dbc702604c32adbe (patch)
tree1cf065115b5e83bd1bdc8c05f98ee565d99fa90c /mk/run-test.sh
parent19326ac2979f0d989835105a5d816a943a6bc7f2 (diff)
Move pseudoterminal slave open to child
Hopefully this fixes "unexpected EOF" failures on macOS (#3137, #3605, #7242, #7702). The problem appears to be that under some circumstances, macOS discards the output written to the slave side of the pseudoterminal. Hence the parent never sees the "sandbox initialized" message from the child, even though it succeeded. The conditions are: * The child finishes very quickly. That's why this bug is likely to trigger in nix-env tests, since that uses a builtin builder. Adding a short sleep before the child exits makes the problem go away. * The parent has closed its duplicate of the slave file descriptor. This shouldn't matter, since the child has a duplicate as well, but it does. E.g. moving the close to the bottom of startBuilder() makes the problem go away. However, that's not a solution because it would make Nix hang if the child dies before sending the "sandbox initialized" message. * The system is under high load. E.g. "make installcheck -j16" makes the issue pretty reproducible, while it's very rare under "make installcheck -j1". As a fix/workaround, we now open the pseudoterminal slave in the child, rather than the parent. This removes the second condition (i.e. the parent no longer needs to close the slave fd) and I haven't been able to reproduce the "unexpected EOF" with this.
Diffstat (limited to 'mk/run-test.sh')
0 files changed, 0 insertions, 0 deletions