summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3632_Regression/test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_3632_Regression/test.cpp')
-rw-r--r--TAO/tests/Bug_3632_Regression/test.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/TAO/tests/Bug_3632_Regression/test.cpp b/TAO/tests/Bug_3632_Regression/test.cpp
new file mode 100644
index 00000000000..d560ad838ed
--- /dev/null
+++ b/TAO/tests/Bug_3632_Regression/test.cpp
@@ -0,0 +1,13 @@
+// $Id$
+
+#include "testC.h"
+
+int
+ACE_TMAIN (int, ACE_TCHAR *[])
+{
+ Test::bounded_string_seq seq;
+ seq.length (11);
+ ACE_TEST_ASSERT (seq.maximum () == 10);
+
+ return 0;
+}