~cppunit2/cppunit2/monitor

« back to all changes in this revision

Viewing changes to include/cpput/ipc.h

  • Committer: Teho
  • Date: 2009-08-17 13:54:13 UTC
  • Revision ID: teho@microtux-20090817135413-c0g07nbwruj71sqm
- added example that cause crash by using null pointer
- fixed bug: infinite loop if a test succeeded
- prevent the O.S. from displaying the dialog "do you want to debug" when a crash occurs in the executable under test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
197
197
   bool stopWaiting_;
198
198
};
199
199
 
 
200
class CPPUT_API NoDialogOnCrashForScope
 
201
{
 
202
public:
 
203
   NoDialogOnCrashForScope();
 
204
   virtual ~NoDialogOnCrashForScope();
 
205
private:
 
206
   Impl::NoDialogOnCrashForScopeState *impl_;
 
207
};
 
208
 
200
209
 
201
210
} // namespace CppUT {
202
211