blob: bbe63d11e39e247a98933bc614330b616f66d492 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
#ifndef mozilla__ipdltest_TestUrgentHangs_h
#define mozilla__ipdltest_TestUrgentHangs_h 1
#include "mozilla/_ipdltest/IPDLUnitTests.h"
#include "mozilla/_ipdltest/PTestUrgentHangsParent.h"
#include "mozilla/_ipdltest/PTestUrgentHangsChild.h"
namespace mozilla {
namespace _ipdltest {
class TestUrgentHangsParent :
public PTestUrgentHangsParent
{
public:
TestUrgentHangsParent();
virtual ~TestUrgentHangsParent();
static bool RunTestInProcesses() { return true; }
static bool RunTestInThreads() { return false; }
void Main();
void SecondStage();
void ThirdStage();
bool RecvTest1_2();
bool RecvTestInner();
bool RecvTestInnerUrgent();
bool ShouldContinueFromReplyTimeout() override
{
return false;
}
virtual void ActorDestroy(ActorDestroyReason why) override
{
if (mInnerCount != 1) {
fail("wrong mInnerCount");
}
if (mInnerUrgentCount != 2) {
fail("wrong mInnerUrgentCount");
}
passed("ok");
QuitParent();
}
private:
size_t mInnerCount, mInnerUrgentCount;
};
class TestUrgentHangsChild :
public PTestUrgentHangsChild
{
public:
TestUrgentHangsChild();
virtual ~TestUrgentHangsChild();
bool RecvTest1_1();
bool RecvTest1_3();
bool RecvTest2();
bool RecvTest3();
bool RecvTest4();
bool RecvTest4_1();
bool RecvTest5();
bool RecvTest5_1();
virtual void ActorDestroy(ActorDestroyReason why) override
{
QuitChild();
}
};
} // namespace _ipdltest
} // namespace mozilla
#endif // ifndef mozilla__ipdltest_TestUrgentHangs_h
|