2010-08-11 01:14:10 +04:00
|
|
|
#ifndef mozilla__ipdltest_TestSyncHang_h
|
|
|
|
#define mozilla__ipdltest_TestSyncHang_h 1
|
|
|
|
|
|
|
|
#include "mozilla/_ipdltest/IPDLUnitTests.h"
|
|
|
|
|
|
|
|
#include "mozilla/_ipdltest/PTestSyncHangParent.h"
|
|
|
|
#include "mozilla/_ipdltest/PTestSyncHangChild.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace _ipdltest {
|
|
|
|
|
|
|
|
|
|
|
|
class TestSyncHangParent :
|
|
|
|
public PTestSyncHangParent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TestSyncHangParent();
|
|
|
|
virtual ~TestSyncHangParent();
|
|
|
|
|
2011-11-30 20:27:22 +04:00
|
|
|
static bool RunTestInProcesses() { return true; }
|
|
|
|
// FIXME/bug 703323 Could work if modified
|
|
|
|
static bool RunTestInThreads() { return false; }
|
|
|
|
|
2010-08-11 01:14:10 +04:00
|
|
|
void Main();
|
|
|
|
|
|
|
|
protected:
|
2012-07-06 22:15:45 +04:00
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) MOZ_OVERRIDE
|
2010-08-11 01:14:10 +04:00
|
|
|
{
|
|
|
|
if (NormalShutdown != why)
|
|
|
|
fail("unexpected destruction!");
|
|
|
|
passed("ok");
|
|
|
|
QuitParent();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class TestSyncHangChild :
|
|
|
|
public PTestSyncHangChild
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TestSyncHangChild();
|
|
|
|
virtual ~TestSyncHangChild();
|
|
|
|
|
|
|
|
protected:
|
2012-07-06 22:15:45 +04:00
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) MOZ_OVERRIDE
|
2010-08-11 01:14:10 +04:00
|
|
|
{
|
|
|
|
if (NormalShutdown != why)
|
|
|
|
fail("unexpected destruction!");
|
|
|
|
QuitChild();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace _ipdltest
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
|
|
|
|
#endif // ifndef mozilla__ipdltest_TestSyncHang_h
|