summaryrefslogtreecommitdiff
path: root/tests/test_config.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2004-04-26 07:16:15 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2004-04-26 07:16:15 +0000
commit57a44badbcb2478a239d7b2154c1a8012cb3691e (patch)
tree9ef51e25b7a7e50db23198a57eef7f0a45a969e6 /tests/test_config.h
parenta6872a3ffeb786d5215d2cd03d7168e29c23e9ee (diff)
downloadATCD-57a44badbcb2478a239d7b2154c1a8012cb3691e.tar.gz
ChangeLogTag: Mon Apr 26 07:16:11 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'tests/test_config.h')
-rw-r--r--tests/test_config.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/test_config.h b/tests/test_config.h
index 18bf8065557..f8e0c38ed85 100644
--- a/tests/test_config.h
+++ b/tests/test_config.h
@@ -1,6 +1,5 @@
// -*- C++ -*-
-
// ============================================================================
/**
* @file test_config.h
@@ -84,22 +83,12 @@ const size_t ACE_MAX_THREADS = 4;
#define ACE_CLOSE_TEST_LOG ace_file_stream::instance()->close ()
-#if !defined (ACE_WIN32)
-#define ACE_APPEND_LOG(NAME) \
- const ACE_TCHAR *program = NAME; \
- ACE_LOG_MSG->open (program, ACE_Log_Msg::OSTREAM | ACE_Log_Msg::VERBOSE_LITE); \
- ace_file_stream::instance()->close (); \
- if (ace_file_stream::instance()->set_output (program, 1) != 0) \
- ACE_ERROR_RETURN ((LM_ERROR, ACE_TEXT ("%p\n"), ACE_TEXT ("set_output failed")), -1); \
- ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("(%P|%t) Starting %s test at %D\n"), program));
-#else /* ACE_WIN32 */
#define ACE_APPEND_LOG(NAME) \
const ACE_TCHAR *program = NAME; \
ACE_LOG_MSG->open (program, ACE_Log_Msg::OSTREAM | ACE_Log_Msg::VERBOSE_LITE); \
if (ace_file_stream::instance()->set_output (program, 1) != 0) \
ACE_ERROR_RETURN ((LM_ERROR, ACE_TEXT ("%p\n"), ACE_TEXT ("set_output failed")), -1); \
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("(%P|%t) Starting %s test at %D\n"), program));
-#endif /* ACE_WIN32 */
#define ACE_END_LOG \
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("(%P|%t) Ending %s test at %D\n\n"), program)); \