The forked build process should never run at_exit handlers

We don't use at_exit anywhere that matters, but the test framework does.
This commit is contained in:
Jack Nagel 2015-04-28 01:39:28 -04:00
parent bae31c0b9e
commit c07da9485f

View File

@ -17,7 +17,9 @@ module Utils
rescue Exception => e
Marshal.dump(e, write)
write.close
exit! 1
exit!
else
exit!(true)
end
end