summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/TestSelfManageRoot.cpp
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:14:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:14:29 +0000
commitfbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8 (patch)
tree4c1ccaf5486d4f2009f9a338a98a83e886e29c97 /ipc/ipdl/test/cxx/TestSelfManageRoot.cpp
parentReleasing progress-linux version 124.0.1-1~progress7.99u1. (diff)
downloadfirefox-fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8.tar.xz
firefox-fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8.zip
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ipc/ipdl/test/cxx/TestSelfManageRoot.cpp')
-rw-r--r--ipc/ipdl/test/cxx/TestSelfManageRoot.cpp54
1 files changed, 0 insertions, 54 deletions
diff --git a/ipc/ipdl/test/cxx/TestSelfManageRoot.cpp b/ipc/ipdl/test/cxx/TestSelfManageRoot.cpp
deleted file mode 100644
index 5e09aa4d7e..0000000000
--- a/ipc/ipdl/test/cxx/TestSelfManageRoot.cpp
+++ /dev/null
@@ -1,54 +0,0 @@
-#include "TestSelfManageRoot.h"
-
-#include "IPDLUnitTests.h" // fail etc.
-
-#define ASSERT(c) \
- do { \
- if (!(c)) fail(#c); \
- } while (0)
-
-namespace mozilla {
-namespace _ipdltest {
-
-//-----------------------------------------------------------------------------
-// parent
-
-void TestSelfManageRootParent::Main() {
- TestSelfManageParent* a =
- static_cast<TestSelfManageParent*>(SendPTestSelfManageConstructor());
- if (!a) fail("constructing PTestSelfManage");
-
- ASSERT(1 == ManagedPTestSelfManageParent().Count());
-
- TestSelfManageParent* aa =
- static_cast<TestSelfManageParent*>(a->SendPTestSelfManageConstructor());
- if (!aa) fail("constructing PTestSelfManage");
-
- ASSERT(1 == ManagedPTestSelfManageParent().Count() &&
- 1 == a->ManagedPTestSelfManageParent().Count());
-
- if (!PTestSelfManageParent::Send__delete__(aa))
- fail("destroying PTestSelfManage");
- ASSERT(Deletion == aa->mWhy && 1 == ManagedPTestSelfManageParent().Count() &&
- 0 == a->ManagedPTestSelfManageParent().Count());
- delete aa;
-
- aa = static_cast<TestSelfManageParent*>(a->SendPTestSelfManageConstructor());
- if (!aa) fail("constructing PTestSelfManage");
-
- ASSERT(1 == ManagedPTestSelfManageParent().Count() &&
- 1 == a->ManagedPTestSelfManageParent().Count());
-
- if (!PTestSelfManageParent::Send__delete__(a))
- fail("destroying PTestSelfManage");
- ASSERT(Deletion == a->mWhy && AncestorDeletion == aa->mWhy &&
- 0 == ManagedPTestSelfManageParent().Count() &&
- 0 == a->ManagedPTestSelfManageParent().Count());
- delete a;
- delete aa;
-
- Close();
-}
-
-} // namespace _ipdltest
-} // namespace mozilla