summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/TestSyncError.cpp
blob: b9d8ec938545439ec3432375bbb29b311ebe9f53 (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
#include "TestSyncError.h"

#include "IPDLUnitTests.h"      // fail etc.

namespace mozilla {
namespace _ipdltest {

//-----------------------------------------------------------------------------
// parent

TestSyncErrorParent::TestSyncErrorParent()
{
    MOZ_COUNT_CTOR(TestSyncErrorParent);
}

TestSyncErrorParent::~TestSyncErrorParent()
{
    MOZ_COUNT_DTOR(TestSyncErrorParent);
}

void
TestSyncErrorParent::Main()
{
    if (!SendStart())
        fail("sending Start");
}

bool
TestSyncErrorParent::RecvError()
{
    return false;
}


//-----------------------------------------------------------------------------
// child

TestSyncErrorChild::TestSyncErrorChild()
{
    MOZ_COUNT_CTOR(TestSyncErrorChild);
}

TestSyncErrorChild::~TestSyncErrorChild()
{
    MOZ_COUNT_DTOR(TestSyncErrorChild);
}

bool
TestSyncErrorChild::RecvStart()
{
    if (SendError())
        fail("Error() should have return false");

    Close();

    return true;
}


} // namespace _ipdltest
} // namespace mozilla