stdcpp/tsrc/Stdcpp_test/stlport/auto/stlport_list/src/list1.cpp
changeset 0 e4d67989cc36
child 18 47c74d1534e1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/stdcpp/tsrc/Stdcpp_test/stlport/auto/stlport_list/src/list1.cpp	Tue Feb 02 02:01:42 2010 +0200
@@ -0,0 +1,46 @@
+ 
+// STLport regression testsuite component.
+// To compile as a separate example, please #define MAIN.
+
+#include <iostream>
+#include <list>
+
+#ifdef MAIN 
+#define list1_test main
+#endif
+
+#if !defined (STLPORT) || defined(__STL_USE_NAMESPACES)
+using namespace std;
+#endif
+int list1_test(int, char**)
+{
+  cout<<"Results of list1_test:"<<endl;
+int array1 [] = { 9, 16, 36 };
+int array2 [] = { 1, 4 };
+int array3[5];
+int failures = 0;int a=0;
+  list<int> l1(array1, array1 + 3);
+  list<int> l2(array2, array2 + 2);
+  std::list<int>::iterator i1 = l1.begin();
+  l1.splice(i1, l2);
+  std::list<int>::iterator i2 = l1.begin();
+  while(i2 != l1.end())
+  {
+  	array3[a] = *i2;
+  	cout << *i2++ << endl;
+  	a++;
+  
+  }
+    
+    if(array3[0] != 1)
+    failures++;
+    if(array3[1] != 4)
+    failures++;
+    if(array3[2] != 9)
+    failures++;
+    if(array3[3] != 16)
+    failures++;
+     if(array3[4] != 36)
+    failures++;
+  return failures;
+}