summaryrefslogtreecommitdiff
path: root/TAO/tests
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-01-05 12:06:57 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-01-05 12:06:57 +0100
commitef581b6d38d0feba6956cacb3e409c271a302f72 (patch)
tree796f570539ee3a55bcbcda1cd572543983054079 /TAO/tests
parent78006062ece6be12eba3e81471961c74743ba071 (diff)
downloadATCD-ef581b6d38d0feba6956cacb3e409c271a302f72.tar.gz
Removed checks for DEC_CXX
* TAO/tests/Crashed_Callback/Crashed_Callback.cpp: * TAO/tests/Faults/test_i.cpp:
Diffstat (limited to 'TAO/tests')
-rw-r--r--TAO/tests/Crashed_Callback/Crashed_Callback.cpp2
-rw-r--r--TAO/tests/Faults/test_i.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tests/Crashed_Callback/Crashed_Callback.cpp b/TAO/tests/Crashed_Callback/Crashed_Callback.cpp
index bd41b09e3f9..b76d85f7670 100644
--- a/TAO/tests/Crashed_Callback/Crashed_Callback.cpp
+++ b/TAO/tests/Crashed_Callback/Crashed_Callback.cpp
@@ -17,7 +17,7 @@ Crashed_Callback::crash_now_please (void)
"(%P|%t) Crashed_Callback - crashing application\n"));
// OpenVMS seems to hang and not abort and dump core when abort() is called
// here. This needs further
-#if defined (DEC_CXX) || defined (ACE_OPENVMS)
+#if defined (ACE_OPENVMS)
ACE_OS::_exit();
#else
ACE_OS::abort();
diff --git a/TAO/tests/Faults/test_i.cpp b/TAO/tests/Faults/test_i.cpp
index 449e6db1780..a55e19ca977 100644
--- a/TAO/tests/Faults/test_i.cpp
+++ b/TAO/tests/Faults/test_i.cpp
@@ -15,7 +15,7 @@ Callback_i::shutdown (CORBA::Boolean is_clean)
// OpenVMS seems to hang and not abort and dump core when abort() is called
// here. This needs further investigation.
-#if defined (DEC_CXX) || defined (ACE_OPENVMS)
+#if defined (ACE_OPENVMS)
ACE_OS::_exit();
#else
ACE_OS::abort();
@@ -51,7 +51,7 @@ Simple_Server_i::shutdown_now (CORBA::Boolean is_clean)
if (is_clean == 0)
{
ACE_DEBUG ((LM_DEBUG, "Performing catastrophic shutdown\n"));
-#if defined (DEC_CXX) || defined (ACE_OPENVMS)
+#if defined (ACE_OPENVMS)
ACE_OS::_exit();
#else
ACE_OS::abort();