Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | #include "TestRacyReentry.h" |
michael@0 | 2 | |
michael@0 | 3 | #include "IPDLUnitTests.h" // fail etc. |
michael@0 | 4 | |
michael@0 | 5 | namespace mozilla { |
michael@0 | 6 | namespace _ipdltest { |
michael@0 | 7 | |
michael@0 | 8 | //----------------------------------------------------------------------------- |
michael@0 | 9 | // parent |
michael@0 | 10 | |
michael@0 | 11 | TestRacyReentryParent::TestRacyReentryParent() : mRecvdE(false) |
michael@0 | 12 | { |
michael@0 | 13 | MOZ_COUNT_CTOR(TestRacyReentryParent); |
michael@0 | 14 | } |
michael@0 | 15 | |
michael@0 | 16 | TestRacyReentryParent::~TestRacyReentryParent() |
michael@0 | 17 | { |
michael@0 | 18 | MOZ_COUNT_DTOR(TestRacyReentryParent); |
michael@0 | 19 | } |
michael@0 | 20 | |
michael@0 | 21 | void |
michael@0 | 22 | TestRacyReentryParent::Main() |
michael@0 | 23 | { |
michael@0 | 24 | if (!SendStart()) |
michael@0 | 25 | fail("sending Start"); |
michael@0 | 26 | |
michael@0 | 27 | if (!SendN()) |
michael@0 | 28 | fail("sending N"); |
michael@0 | 29 | } |
michael@0 | 30 | |
michael@0 | 31 | bool |
michael@0 | 32 | TestRacyReentryParent::AnswerE() |
michael@0 | 33 | { |
michael@0 | 34 | if (!mRecvdE) { |
michael@0 | 35 | mRecvdE = true; |
michael@0 | 36 | return true; |
michael@0 | 37 | } |
michael@0 | 38 | |
michael@0 | 39 | if (!CallH()) |
michael@0 | 40 | fail("calling H"); |
michael@0 | 41 | |
michael@0 | 42 | return true; |
michael@0 | 43 | } |
michael@0 | 44 | |
michael@0 | 45 | //----------------------------------------------------------------------------- |
michael@0 | 46 | // child |
michael@0 | 47 | |
michael@0 | 48 | TestRacyReentryChild::TestRacyReentryChild() |
michael@0 | 49 | { |
michael@0 | 50 | MOZ_COUNT_CTOR(TestRacyReentryChild); |
michael@0 | 51 | } |
michael@0 | 52 | |
michael@0 | 53 | TestRacyReentryChild::~TestRacyReentryChild() |
michael@0 | 54 | { |
michael@0 | 55 | MOZ_COUNT_DTOR(TestRacyReentryChild); |
michael@0 | 56 | } |
michael@0 | 57 | |
michael@0 | 58 | bool |
michael@0 | 59 | TestRacyReentryChild::RecvStart() |
michael@0 | 60 | { |
michael@0 | 61 | if (!CallE()) |
michael@0 | 62 | fail("calling E"); |
michael@0 | 63 | |
michael@0 | 64 | Close(); |
michael@0 | 65 | |
michael@0 | 66 | return true; |
michael@0 | 67 | } |
michael@0 | 68 | |
michael@0 | 69 | bool |
michael@0 | 70 | TestRacyReentryChild::RecvN() |
michael@0 | 71 | { |
michael@0 | 72 | if (!CallE()) |
michael@0 | 73 | fail("calling E"); |
michael@0 | 74 | return true; |
michael@0 | 75 | } |
michael@0 | 76 | |
michael@0 | 77 | bool |
michael@0 | 78 | TestRacyReentryChild::AnswerH() |
michael@0 | 79 | { |
michael@0 | 80 | return true; |
michael@0 | 81 | } |
michael@0 | 82 | |
michael@0 | 83 | } // namespace _ipdltest |
michael@0 | 84 | } // namespace mozilla |