summaryrefslogtreecommitdiff
path: root/tests/CLASSIX/CLASSIX_OS_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/CLASSIX/CLASSIX_OS_Test.cpp')
-rw-r--r--tests/CLASSIX/CLASSIX_OS_Test.cpp43
1 files changed, 0 insertions, 43 deletions
diff --git a/tests/CLASSIX/CLASSIX_OS_Test.cpp b/tests/CLASSIX/CLASSIX_OS_Test.cpp
deleted file mode 100644
index ba61f47fad1..00000000000
--- a/tests/CLASSIX/CLASSIX_OS_Test.cpp
+++ /dev/null
@@ -1,43 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// tests
-//
-// = FILENAME
-// CLASSIX_OS_Test.cpp
-//
-// = DESCRIPTION
-// This is a test of the <ACE_CLASSIX_OS> class.
-//
-// = AUTHOR
-// Wei Chiang
-//
-// ============================================================================
-
-#include "tests/test_config.h"
-#include "ace/CLASSIX/CLASSIX_OS.h"
-
-
-int
-main (int, char *[])
-{
- ACE_START_TEST ("CLASSIX_OS_Test");
-
- ACE_DEBUG((LM_INFO, "Empty Message\n"));
- ACE_CLASSIX_Msg msg1;
- msg1.dump();
-
- char buf[] ="This is a test message";
- int size = sizeof (buf);
- ACE_DEBUG((LM_INFO, "%s(size = %d)\n", buf, size));
- ACE_CLASSIX_Msg msg2(buf, size);
- msg2.dump();
-
-
- ACE_END_TEST;
- return 0;
-}
-