summaryrefslogtreecommitdiff
path: root/tests/Refcounted_Auto_Ptr_Test.cpp
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-03-05 19:34:02 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-03-05 19:34:02 +0000
commit01b6248a5b02533c3f5bcd90d1d09d310ebdca2d (patch)
tree8d34db0f48e5862388b9c00ab58c6ccffe48f01c /tests/Refcounted_Auto_Ptr_Test.cpp
parentcc34f4b1057073ae3398ecf74033786e5d164a8b (diff)
downloadATCD-fix_bug132_fin.tar.gz
This commit was manufactured by cvs2svn to create tagfix_bug132_fin
'fix_bug132_fin'.
Diffstat (limited to 'tests/Refcounted_Auto_Ptr_Test.cpp')
-rw-r--r--tests/Refcounted_Auto_Ptr_Test.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/Refcounted_Auto_Ptr_Test.cpp b/tests/Refcounted_Auto_Ptr_Test.cpp
index 9a171a7a0c1..1b64a7de9fe 100644
--- a/tests/Refcounted_Auto_Ptr_Test.cpp
+++ b/tests/Refcounted_Auto_Ptr_Test.cpp
@@ -339,7 +339,7 @@ main (int, ACE_TCHAR *[])
Printer_var r (printer1);
- for (int i = 0; i < n_loops; i++)
+ for(int i = 0; i < n_loops; i++)
// Spawn off the methods, which run in a separate thread as
// active object invocations.
scheduler->print (r);
@@ -359,7 +359,10 @@ main (int, ACE_TCHAR *[])
#endif /* ACE_HAS_THREADS */
ACE_END_TEST;
+#if defined (DIGITAL_UNIX)
+ // Never terminates on Tru64 5.1 [Bug
ACE_OS::exit (0);
- /* NOTREACHED */
+#endif /* DIGITAL_UNIX */
+
return 0;
}