summaryrefslogtreecommitdiff
path: root/examples/Misc/test_sstring.cpp
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-04-12 01:02:34 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-04-12 01:02:34 +0000
commit2996933cc12d5493d68fad3873a45c3aabba3e18 (patch)
treeeca5b8bdef0a38fe4736df3c33f73da99ab487bb /examples/Misc/test_sstring.cpp
parent55c07b3e66734053a180f1d0ebb644ea6fa3c3bf (diff)
downloadATCD-Current.tar.gz
This commit was manufactured by cvs2svn to create tag 'Current'.Current
Diffstat (limited to 'examples/Misc/test_sstring.cpp')
-rw-r--r--examples/Misc/test_sstring.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/examples/Misc/test_sstring.cpp b/examples/Misc/test_sstring.cpp
deleted file mode 100644
index 55e797c3851..00000000000
--- a/examples/Misc/test_sstring.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
-// $Id$
-
-#include "ace/SString.h"
-
-int
-main (int, char *[])
-{
- ACE_CString s1 ("hello");
- ACE_CString s2 ("world");
- ACE_CString s3 ("el");
- ACE_WString s4 ("hello");
- ACE_WString s5 ("world");
- ACE_WString s6 ("el");
-
- ACE_ASSERT (s1 != s2);
- ACE_ASSERT (s1.strstr (s2) == -1);
- ACE_ASSERT (s1.strstr (s2) == -1);
- ACE_ASSERT (s1.strstr (s3));
- ACE_ASSERT (s4.strstr (s5) == -1);
- ACE_ASSERT (s5.strstr (s6));
- return 0;
-}