mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
5adae8dcb1
--HG-- extra : rebase_source : 806feb88f71efe10512b084156b88534bc6236bf
59 lines
1.1 KiB
C++
59 lines
1.1 KiB
C++
#ifndef mozilla__ipdltest_TestCrashCleanup_h
|
|
#define mozilla__ipdltest_TestCrashCleanup_h 1
|
|
|
|
#include "mozilla/_ipdltest/IPDLUnitTests.h"
|
|
|
|
#include "mozilla/_ipdltest/PTestCrashCleanupParent.h"
|
|
#include "mozilla/_ipdltest/PTestCrashCleanupChild.h"
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
|
|
class TestCrashCleanupParent :
|
|
public PTestCrashCleanupParent
|
|
{
|
|
public:
|
|
TestCrashCleanupParent();
|
|
virtual ~TestCrashCleanupParent();
|
|
|
|
void Main();
|
|
|
|
protected:
|
|
NS_OVERRIDE
|
|
virtual void ActorDestroy(ActorDestroyReason why)
|
|
{
|
|
if (AbnormalShutdown != why)
|
|
fail("unexpected destruction!");
|
|
mCleanedUp = true;
|
|
}
|
|
|
|
bool mCleanedUp;
|
|
};
|
|
|
|
|
|
class TestCrashCleanupChild :
|
|
public PTestCrashCleanupChild
|
|
{
|
|
public:
|
|
TestCrashCleanupChild();
|
|
virtual ~TestCrashCleanupChild();
|
|
|
|
protected:
|
|
NS_OVERRIDE
|
|
virtual bool AnswerDIEDIEDIE();
|
|
|
|
NS_OVERRIDE
|
|
virtual void ActorDestroy(ActorDestroyReason why)
|
|
{
|
|
fail("should have 'crashed'!");
|
|
}
|
|
};
|
|
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|
|
|
|
|
|
#endif // ifndef mozilla__ipdltest_TestCrashCleanup_h
|