summaryrefslogtreecommitdiff
path: root/tests/Refcounted_Auto_Ptr_Test.cpp
diff options
context:
space:
mode:
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;
}