diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-03-15 23:32:57 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-03-15 23:32:57 +0000 |
commit | cbbc37651681238615e4a3935496ab74b085fb97 (patch) | |
tree | 8ec3b36fdb7ab72530f24d672116c95c79e09298 /tests/CLASSIX/CLASSIX_OS_Test.cpp | |
parent | aec4807cfcc242a7b8de22a90c1c0be1aab1984a (diff) | |
download | ATCD-TAO-1_1.tar.gz |
This commit was manufactured by cvs2svn to create tag 'TAO-1_1'.TAO-1_1
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; -} - |