summaryrefslogtreecommitdiff
path: root/tests/Bug_3334_Regression_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Bug_3334_Regression_Test.cpp')
-rw-r--r--tests/Bug_3334_Regression_Test.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/Bug_3334_Regression_Test.cpp b/tests/Bug_3334_Regression_Test.cpp
index f3e0ff4c815..b158e70731f 100644
--- a/tests/Bug_3334_Regression_Test.cpp
+++ b/tests/Bug_3334_Regression_Test.cpp
@@ -15,21 +15,23 @@
//
// ============================================================================
+#undef ACE_NLOGGING
#include "test_config.h"
+
#include "ace/Log_Msg.h"
#include "ace/Service_Config.h"
-ACE_RCSID(tests, Bug_3334_Regression_Test, "$Id$")
+ACE_RCSID (tests, Bug_3334_Regression_Test, "$Id$")
int
run_main (int, ACE_TCHAR *argv[])
{
ACE_START_TEST (ACE_TEXT ("Bug_3334_Regression_Test"));
- ACE_TCHAR *_argv[3] = { argv[0],
+ ACE_TCHAR * _argv[3] = {argv[0],
const_cast<ACE_TCHAR*> (ACE_TEXT ("-f")),
const_cast<ACE_TCHAR*>
- (ACE_TEXT ("Bug_3334_Regression_Test.conf")) };
+ (ACE_TEXT ("Bug_3334_Regression_Test.conf"))};
int status;
if ((status = ACE_Service_Config::open (3,
_argv,
@@ -41,6 +43,7 @@ run_main (int, ACE_TCHAR *argv[])
ACE_TEXT ("open"),
1));
+ ACE_Service_Config::fini_svcs ();
ACE_END_TEST;
return status;
}