diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /ipc/ipdl/test/cxx/TestInterruptRaces.h | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'ipc/ipdl/test/cxx/TestInterruptRaces.h')
-rw-r--r-- | ipc/ipdl/test/cxx/TestInterruptRaces.h | 131 |
1 files changed, 131 insertions, 0 deletions
diff --git a/ipc/ipdl/test/cxx/TestInterruptRaces.h b/ipc/ipdl/test/cxx/TestInterruptRaces.h new file mode 100644 index 000000000..f83c49fd1 --- /dev/null +++ b/ipc/ipdl/test/cxx/TestInterruptRaces.h @@ -0,0 +1,131 @@ +#ifndef mozilla__ipdltest_TestInterruptRaces_h +#define mozilla__ipdltest_TestInterruptRaces_h + +#include "mozilla/_ipdltest/IPDLUnitTests.h" + +#include "mozilla/_ipdltest/PTestInterruptRacesParent.h" +#include "mozilla/_ipdltest/PTestInterruptRacesChild.h" + +namespace mozilla { +namespace _ipdltest { + +mozilla::ipc::RacyInterruptPolicy +MediateRace(const mozilla::ipc::MessageChannel::MessageInfo& parent, + const mozilla::ipc::MessageChannel::MessageInfo& child); + +class TestInterruptRacesParent : + public PTestInterruptRacesParent +{ +public: + TestInterruptRacesParent() : mHasReply(false), + mChildHasReply(false), + mAnsweredParent(false) + { } + virtual ~TestInterruptRacesParent() { } + + static bool RunTestInProcesses() { return true; } + static bool RunTestInThreads() { return true; } + + void Main(); + +protected: + virtual bool + RecvStartRace() override; + + virtual bool + AnswerRace(bool* hasRace) override; + + virtual bool + AnswerStackFrame() override; + + virtual bool + AnswerStackFrame3() override; + + virtual bool + AnswerParent() override; + + virtual bool + RecvGetAnsweredParent(bool* answeredParent) override; + + virtual mozilla::ipc::RacyInterruptPolicy + MediateInterruptRace(const MessageInfo& parent, + const MessageInfo& child) override + { + return MediateRace(parent, child); + } + + virtual void ActorDestroy(ActorDestroyReason why) override + { + if (NormalShutdown != why) + fail("unexpected destruction!"); + if (!(mHasReply && mChildHasReply)) + fail("both sides should have replies!"); + passed("ok"); + QuitParent(); + } + +private: + void OnRaceTime(); + + void Test2(); + void Test3(); + + bool mHasReply; + bool mChildHasReply; + bool mAnsweredParent; +}; + + +class TestInterruptRacesChild : + public PTestInterruptRacesChild +{ +public: + TestInterruptRacesChild() : mHasReply(false) { } + virtual ~TestInterruptRacesChild() { } + +protected: + virtual bool + RecvStart() override; + + virtual bool + AnswerRace(bool* hasRace) override; + + virtual bool + AnswerStackFrame() override; + + virtual bool + AnswerStackFrame3() override; + + virtual bool + RecvWakeup() override; + + virtual bool + RecvWakeup3() override; + + virtual bool + AnswerChild() override; + + virtual mozilla::ipc::RacyInterruptPolicy + MediateInterruptRace(const MessageInfo& parent, + const MessageInfo& child) override + { + return MediateRace(parent, child); + } + + virtual void ActorDestroy(ActorDestroyReason why) override + { + if (NormalShutdown != why) + fail("unexpected destruction!"); + QuitChild(); + } + +private: + bool mHasReply; +}; + + +} // namespace _ipdltest +} // namespace mozilla + + +#endif // ifndef mozilla__ipdltest_TestInterruptRaces_h |