I found a solution that is not very elegant, but at least it works. I use a device in my unit testing framework (Boost.Test) that runs system("pause") in a stall method:
struct Global_fixture { Global_fixture() {} ~Global_fixture() { system("pause"); } }; BOOST_GLOBAL_FIXTURE(Global_fixture)
Hope you guys can find a better way.
source share