diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-10 19:59:37 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-10 19:59:37 +0000 |
commit | 3df4acfa816441fc28a95dee6d0191a927145d95 (patch) | |
tree | b5ae7ca44662cfd8e5c95f1826e4406021a606f5 /tests/CLASSIX/CLASSIX_OS_Test.cpp | |
parent | 60a5612b83d856fc0adc52b9f39fac9960ec9818 (diff) | |
download | ATCD-pre-subset.tar.gz |
This commit was manufactured by cvs2svn to create tag 'pre-subset'.pre-subset
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; -} - |