...
What is the strategy for testing the problem to detect if it comes back. When possible we try to find automated ways to test things since these are the easiest for us to scale up as our test coverage gets higher and higher.
We have an excellent build Build system which runs immediately on every git push. As part of the development of IguanaX I designed a new multi-threaded C++ unit testing framework which runs the tests on multiple threads. That lets us run more tests, faster.
...