mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-30 21:55:31 +00:00
78 lines
1.8 KiB
C++
78 lines
1.8 KiB
C++
#ifndef mozilla__ipdltest_TestRaceDeadlock_h
|
|
#define mozilla__ipdltest_TestRaceDeadlock_h 1
|
|
|
|
#include "mozilla/_ipdltest/IPDLUnitTests.h"
|
|
|
|
#include "mozilla/_ipdltest/PTestRaceDeadlockParent.h"
|
|
#include "mozilla/_ipdltest/PTestRaceDeadlockChild.h"
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
class TestRaceDeadlockParent :
|
|
public PTestRaceDeadlockParent
|
|
{
|
|
public:
|
|
TestRaceDeadlockParent();
|
|
virtual ~TestRaceDeadlockParent();
|
|
|
|
static bool RunTestInProcesses() { return true; }
|
|
static bool RunTestInThreads() { return true; }
|
|
|
|
void Main();
|
|
|
|
protected:
|
|
virtual bool ShouldContinueFromReplyTimeout() override;
|
|
|
|
void Test1();
|
|
|
|
virtual bool RecvStartRace() override;
|
|
virtual bool AnswerLose() override;
|
|
|
|
virtual mozilla::ipc::RacyInterruptPolicy
|
|
MediateInterruptRace(const MessageInfo& parent,
|
|
const MessageInfo& child) override;
|
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) override
|
|
{
|
|
if (NormalShutdown != why)
|
|
fail("unexpected destruction!");
|
|
passed("ok");
|
|
QuitParent();
|
|
}
|
|
};
|
|
|
|
|
|
class TestRaceDeadlockChild :
|
|
public PTestRaceDeadlockChild
|
|
{
|
|
public:
|
|
TestRaceDeadlockChild();
|
|
virtual ~TestRaceDeadlockChild();
|
|
|
|
protected:
|
|
virtual bool RecvStartRace() override;
|
|
|
|
virtual bool AnswerWin() override;
|
|
|
|
virtual bool AnswerRpc() override;
|
|
|
|
virtual mozilla::ipc::RacyInterruptPolicy
|
|
MediateInterruptRace(const MessageInfo& parent,
|
|
const MessageInfo& child) override;
|
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) override
|
|
{
|
|
if (NormalShutdown != why)
|
|
fail("unexpected destruction!");
|
|
QuitChild();
|
|
}
|
|
};
|
|
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|
|
|
|
|
|
#endif // ifndef mozilla__ipdltest_TestRaceDeadlock_h
|