summaryrefslogtreecommitdiff
path: root/TAO/tests/Sequence_Unit_Tests/Unbounded_Simple_Types.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Sequence_Unit_Tests/Unbounded_Simple_Types.cpp')
-rw-r--r--TAO/tests/Sequence_Unit_Tests/Unbounded_Simple_Types.cpp58
1 files changed, 58 insertions, 0 deletions
diff --git a/TAO/tests/Sequence_Unit_Tests/Unbounded_Simple_Types.cpp b/TAO/tests/Sequence_Unit_Tests/Unbounded_Simple_Types.cpp
new file mode 100644
index 00000000000..77e1c588c73
--- /dev/null
+++ b/TAO/tests/Sequence_Unit_Tests/Unbounded_Simple_Types.cpp
@@ -0,0 +1,58 @@
+/**
+ * @file
+ *
+ * @brief Smoke test (basically just compile) the unbounded sequences
+ * for primitive and other self-managed types.
+ *
+ * $Id$
+ *
+ * @author Carlos O'Ryan
+ */
+#include "unbounded_value_sequence.hpp"
+
+struct Foo
+{
+ int x;
+};
+
+int main(int,char*[])
+{
+ typedef TAO::unbounded_value_sequence<int> int_sequence;
+
+ int_sequence a;
+ int_sequence b(23);
+
+ int_sequence c(32, 0, int_sequence::allocbuf(32), true);
+
+ a = b;
+
+ a.length(c.maximum());
+ if (a.release())
+ {
+ b.length(a.length());
+ }
+ a[0] = 0;
+ b[0] = a[0];
+
+ int_sequence const & d = a;
+ c[0] = d[0];
+
+ b.replace(64, 0, int_sequence::allocbuf(64), true);
+
+ int const * x = d.get_buffer();
+ if (x != 0)
+ {
+ int_sequence::freebuf(a.get_buffer(true));
+ }
+ x = b.get_buffer();
+
+ int_sequence e(c);
+
+ typedef TAO::unbounded_value_sequence<Foo> Foo_sequence;
+
+ Foo_sequence u;
+ Foo_sequence v(32);
+ u = v;
+
+ return 0;
+}