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
|
#include "TestSanity.h"
#include "IPDLUnitTests.h" // fail etc.
namespace mozilla {
namespace _ipdltest {
//-----------------------------------------------------------------------------
// parent
TestSanityParent::TestSanityParent()
{
MOZ_COUNT_CTOR(TestSanityParent);
}
TestSanityParent::~TestSanityParent()
{
MOZ_COUNT_DTOR(TestSanityParent);
}
void
TestSanityParent::Main()
{
if (!SendPing(0, 0.5f, 0))
fail("sending Ping");
}
bool
TestSanityParent::RecvPong(const int& one, const float& zeroPtTwoFive,
const uint8_t&/*unused*/)
{
if (1 != one)
fail("invalid argument `%d', should have been `1'", one);
if (0.25f != zeroPtTwoFive)
fail("invalid argument `%g', should have been `0.25'", zeroPtTwoFive);
Close();
return true;
}
//-----------------------------------------------------------------------------
// child
TestSanityChild::TestSanityChild()
{
MOZ_COUNT_CTOR(TestSanityChild);
}
TestSanityChild::~TestSanityChild()
{
MOZ_COUNT_DTOR(TestSanityChild);
}
bool
TestSanityChild::RecvPing(const int& zero, const float& zeroPtFive,
const int8_t&/*unused*/)
{
if (0 != zero)
fail("invalid argument `%d', should have been `0'", zero);
if (0.5f != zeroPtFive)
fail("invalid argument `%g', should have been `0.5'", zeroPtFive);
if (!SendPong(1, 0.25f, 0))
fail("sending Pong");
return true;
}
} // namespace _ipdltest
} // namespace mozilla
|