fixed: real server dtor being called (we forgot to set m_mock - FUUUUUUUU). also added quick and dirty backtrace for osx, since we keep accidentally calling that singleton in unit tests... could be handy, we should consider refactoring into a func maybe.

This commit is contained in:
Nick Bolton
2013-04-11 05:50:59 +00:00
parent 34d52c8af4
commit 1dccfe6c53
2 changed files with 19 additions and 2 deletions

View File

@@ -27,5 +27,5 @@ class IEventQueue;
class CMockServer : public CServer
{
public:
CMockServer() : CServer() { }
CMockServer() : CServer() { m_mock = true; }
};