2011-05-04 13:55:54 -07:00
|
|
|
#ifndef mozilla__ipdltest_TestRacyUndefer_h
|
|
|
|
#define mozilla__ipdltest_TestRacyUndefer_h 1
|
|
|
|
|
|
|
|
#include "mozilla/_ipdltest/IPDLUnitTests.h"
|
|
|
|
|
|
|
|
#include "mozilla/_ipdltest/PTestRacyUndeferParent.h"
|
|
|
|
#include "mozilla/_ipdltest/PTestRacyUndeferChild.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace _ipdltest {
|
|
|
|
|
|
|
|
|
|
|
|
class TestRacyUndeferParent :
|
|
|
|
public PTestRacyUndeferParent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TestRacyUndeferParent();
|
|
|
|
virtual ~TestRacyUndeferParent();
|
|
|
|
|
2011-11-30 08:27:22 -08:00
|
|
|
static bool RunTestInProcesses() { return true; }
|
|
|
|
static bool RunTestInThreads() { return true; }
|
|
|
|
|
2011-05-04 13:55:54 -07:00
|
|
|
void Main();
|
|
|
|
|
|
|
|
protected:
|
2012-07-06 11:15:45 -07:00
|
|
|
virtual bool AnswerSpam() MOZ_OVERRIDE;
|
2011-05-04 13:55:54 -07:00
|
|
|
|
2012-07-06 11:15:45 -07:00
|
|
|
virtual bool AnswerRaceWinTwice() MOZ_OVERRIDE;
|
2011-05-04 13:55:54 -07:00
|
|
|
|
2012-07-06 11:15:45 -07:00
|
|
|
virtual bool RecvDone() MOZ_OVERRIDE;
|
2011-05-04 13:55:54 -07:00
|
|
|
|
2012-07-06 11:15:45 -07:00
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) MOZ_OVERRIDE
|
2011-05-04 13:55:54 -07:00
|
|
|
{
|
|
|
|
if (NormalShutdown != why)
|
|
|
|
fail("unexpected destruction!");
|
|
|
|
passed("ok");
|
|
|
|
QuitParent();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class TestRacyUndeferChild :
|
|
|
|
public PTestRacyUndeferChild
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TestRacyUndeferChild();
|
|
|
|
virtual ~TestRacyUndeferChild();
|
|
|
|
|
|
|
|
protected:
|
2012-07-06 11:15:45 -07:00
|
|
|
virtual bool RecvStart() MOZ_OVERRIDE;
|
2011-05-04 13:55:54 -07:00
|
|
|
|
2012-07-06 11:15:45 -07:00
|
|
|
virtual bool RecvAwakenSpam() MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvAwakenRaceWinTwice() MOZ_OVERRIDE;
|
2011-05-04 13:55:54 -07:00
|
|
|
|
2012-07-06 11:15:45 -07:00
|
|
|
virtual bool AnswerRace() MOZ_OVERRIDE;
|
2011-05-04 13:55:54 -07:00
|
|
|
|
2012-07-06 11:15:45 -07:00
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) MOZ_OVERRIDE
|
2011-05-04 13:55:54 -07:00
|
|
|
{
|
|
|
|
if (NormalShutdown != why)
|
|
|
|
fail("unexpected destruction!");
|
|
|
|
QuitChild();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace _ipdltest
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
|
|
|
|
#endif // ifndef mozilla__ipdltest_TestRacyUndefer_h
|