summaryrefslogtreecommitdiff
path: root/ACE/tests/Reactor_Exceptions_Test.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-08-05 08:29:30 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-08-05 08:29:30 +0000
commit2f516c412c6353fb7b56ce831ff005fa33761c4c (patch)
tree15c34167a452dafaf428ca52ccaba65fe9e93630 /ACE/tests/Reactor_Exceptions_Test.cpp
parent544b4d2ad7afaab2910a753623e3358511980912 (diff)
downloadATCD-2f516c412c6353fb7b56ce831ff005fa33761c4c.tar.gz
Thu Aug 5 08:13:51 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/CORBA_macros.h: * ace/Global_Macros.h: * ace/Vector_T.h: * ace/ace_wchar.h: * ace/config-cxx-common.h: * ace/config-doxygen.h: * ace/config-g++-common.h: * ace/config-hpux-11.00.h: * ace/config-icc-common.h: * ace/config-integritySCA.h: * ace/config-macros.h: * ace/config-netbsd.h: * ace/config-openvms.h: * ace/config-suncc-common.h: * ace/config-sunos5.4-sunc++-4.x.h: * ace/config-sunos5.5.h: * ace/config-tandem-nsk-mips-v2.h: * ace/config-tandem-nsk-mips-v3.h: * ace/config-unixware-7.1.0.h: * ace/config-unixware-7.1.0.udk.h: * ace/config-win32-borland.h: * ace/config-win32-dmc.h: * ace/config-win32-ghs.h: * ace/config-win32-interix.h: * ace/config-win32-msvc-10.h: * ace/config-win32-msvc-7.h: * ace/config-win32-msvc-8.h: * ace/config-win32-msvc-9.h: * include/makeinclude/platform_aix.GNU: * include/makeinclude/platform_aix_g++.GNU: * include/makeinclude/platform_aix_ibm.GNU: * include/makeinclude/platform_cray.GNU: * include/makeinclude/platform_freebsd.GNU: * include/makeinclude/platform_gnuwin32_common.GNU: * include/makeinclude/platform_hpux_aCC.GNU: * include/makeinclude/platform_hpux_gcc.GNU: * include/makeinclude/platform_integrity_ghs.GNU: * include/makeinclude/platform_irix6.x_common.GNU: * include/makeinclude/platform_linux_common.GNU: * include/makeinclude/platform_lynxos.GNU: * include/makeinclude/platform_macosx.GNU: * include/makeinclude/platform_macosx_common.GNU: * include/makeinclude/platform_macosx_icc.GNU: * include/makeinclude/platform_macosx_panther.GNU: * include/makeinclude/platform_netbsd.GNU: * include/makeinclude/platform_openbsd.GNU: * include/makeinclude/platform_openvms.GNU: * include/makeinclude/platform_qnx_rtp_gcc.GNU: * include/makeinclude/platform_rtems.x_g++.GNU: * include/makeinclude/platform_sunos5_g++.GNU: * include/makeinclude/platform_sunos5_sunc++.GNU: * include/makeinclude/platform_tandem.GNU: * include/makeinclude/platform_tru64_cxx.GNU: * include/makeinclude/platform_tru64_g++.GNU: * include/makeinclude/platform_unixware_g++.GNU: * include/makeinclude/platform_vxworks5.5.x.GNU: * include/makeinclude/platform_vxworks6.2.GNU: * include/makeinclude/platform_vxworks6.3.GNU: * include/makeinclude/platform_win32_dmc.GNU: * include/makeinclude/platform_win32_icc.GNU: * include/makeinclude/platform_win32_interix.GNU: * include/makeinclude/wrapper_macros.GNU: * tests/Bug_3673_Regression_Test.cpp: * tests/Reactor_Exceptions_Test.cpp: Removed support for non exception builds, ACE_HAS_EXCEPTIONS is now always defined * rpmbuild/ace-tao.spec: Small updates * ace/Exception_Macros.h: * bin/MakeProjectCreator/config/exceptions.mpb: Removed these files.
Diffstat (limited to 'ACE/tests/Reactor_Exceptions_Test.cpp')
-rw-r--r--ACE/tests/Reactor_Exceptions_Test.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/ACE/tests/Reactor_Exceptions_Test.cpp b/ACE/tests/Reactor_Exceptions_Test.cpp
index eda68c3630e..be34ca436cf 100644
--- a/ACE/tests/Reactor_Exceptions_Test.cpp
+++ b/ACE/tests/Reactor_Exceptions_Test.cpp
@@ -26,8 +26,6 @@
ACE_RCSID(tests, Reactor_Exceptions_Test, "$Id$")
-#if defined (ACE_HAS_EXCEPTIONS)
-
// Just need a simple exception class.
class Except {};
@@ -129,14 +127,11 @@ worker (void)
}
#endif /* ACE_HAS_THREADS */
-#endif /* ACE_HAS_EXCEPTIONS */
-
int
run_main (int argc, ACE_TCHAR *argv[])
{
ACE_START_TEST (ACE_TEXT ("Reactor_Exceptions_Test"));
-#if defined (ACE_HAS_EXCEPTIONS)
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Starting tracing\n")));
@@ -186,12 +181,6 @@ run_main (int argc, ACE_TCHAR *argv[])
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT (" (%t) exiting main\n")));
-#else
- ACE_UNUSED_ARG (argc);
- ACE_UNUSED_ARG (argv);
- ACE_ERROR ((LM_INFO,
- ACE_TEXT ("C++ exception support not enabled on this platform\n")));
-#endif /* ACE_HAS_EXCEPTIONS */
ACE_END_TEST;
return 0;