Fix unit tests hanging when there's an exception in a sandbox run
Fixes #298 (closed)
Rather than having to go through extra effort to reproduce and debug when this happens, fixing the hang lets us see the cause during automated tests.
It's possible that it would be neater to make buildstream._signals.terminator
call the cleanup function as well during __exit__
. It would reduce the scope of the race condition between removing the signal handler and calling the cleanup manually, but that just moves it to inside buildstream._signals.terminator
, so a more complicated solution would be required.
Merge request reports
Activity
@tristanvb !329 (merged) has a test that will do that.
added 9 commits
-
1d132807...37d97414 - 8 commits from branch
master
- 621d0d85 - mount: Wrap yields in context managers with try-finally
-
1d132807...37d97414 - 8 commits from branch
enabled an automatic merge when the pipeline for 621d0d85 succeeds
It's possible that it would be neater to make
buildstream._signals.terminator
call the cleanup function as well during__exit__
.Looking into this, I'm wondering, is there a reason we can't simply call
sys.exit()
in the SIGTERM handler and completely rely onfinally
? I.e., why do we need the terminator stack in the first place?added 10 commits
-
621d0d85...be10c324 - 9 commits from branch
master
- 600e17e1 - mount: Wrap yields in context managers with try-finally
-
621d0d85...be10c324 - 9 commits from branch
added 4 commits
-
600e17e1...337fc965 - 3 commits from branch
master
- e3e72616 - mount: Wrap yields in context managers with try-finally
-
600e17e1...337fc965 - 3 commits from branch
enabled an automatic merge when the pipeline for e3e72616 succeeds