diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-08-27 18:14:04 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-08-27 18:14:04 +0000 |
commit | 6c13de310492e31ede379bb04df1c62cbdb4b09f (patch) | |
tree | e97ae496cdcdecfec591b74ea60dde5ceb33d32a /tests/CLASSIX/CLASSIX_OS_Test.cpp | |
parent | b5e068afb139dc7c6b9cf90c53571a4333105c95 (diff) | |
download | ATCD-pre_dynamic_any.tar.gz |
This commit was manufactured by cvs2svn to create tagpre_dynamic_any
'pre_dynamic_any'.
Diffstat (limited to 'tests/CLASSIX/CLASSIX_OS_Test.cpp')
-rw-r--r-- | tests/CLASSIX/CLASSIX_OS_Test.cpp | 43 |
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; -} - |