summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/TestSanity.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/ipdl/test/cxx/TestSanity.cpp')
-rw-r--r--ipc/ipdl/test/cxx/TestSanity.cpp52
1 files changed, 0 insertions, 52 deletions
diff --git a/ipc/ipdl/test/cxx/TestSanity.cpp b/ipc/ipdl/test/cxx/TestSanity.cpp
deleted file mode 100644
index ba1920fdcc..0000000000
--- a/ipc/ipdl/test/cxx/TestSanity.cpp
+++ /dev/null
@@ -1,52 +0,0 @@
-#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");
-}
-
-mozilla::ipc::IPCResult 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 IPC_OK();
-}
-
-//-----------------------------------------------------------------------------
-// child
-
-TestSanityChild::TestSanityChild() { MOZ_COUNT_CTOR(TestSanityChild); }
-
-TestSanityChild::~TestSanityChild() { MOZ_COUNT_DTOR(TestSanityChild); }
-
-mozilla::ipc::IPCResult 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 IPC_OK();
-}
-
-} // namespace _ipdltest
-} // namespace mozilla