[uClibc-cvs] CVS uClibc++/tests

CVS User gkajmowi gkajmowi at codepoet.org
Sun Sep 26 19:18:26 UTC 2004


Update of /var/cvs/uClibc++/tests
In directory nail:/tmp/cvs-serv18087/tests

Modified Files:
	Makefile algotest.cpp 
Added Files:
	streamitertest.cpp 
Log Message:
Version 0.1.5 refer to changlog.  Primarily bugfixes, standards compliance issues.

--- /var/cvs/uClibc++/tests/Makefile	2004/09/17 02:47:52	1.7
+++ /var/cvs/uClibc++/tests/Makefile	2004/09/26 19:18:25	1.8
@@ -24,7 +24,8 @@
 	numerictest.cpp \
 	bitsettest.cpp \
 	algotest.cpp \
-	stacktest.cpp
+	stacktest.cpp \
+	streamitertest.cpp
 
 
 EXOBJS	=\
@@ -41,7 +42,8 @@
 	numerictest.o \
 	bitsettest.o \
 	algotest.o \
-	stacktest.o
+	stacktest.o \
+	streamitertest.o
 
 ALLOBJS	=	$(EXOBJS) \
 		newdel.o-old \
@@ -57,7 +59,8 @@
 		numerictest.o-old \
 		bitsettest.o-old \
 		algotest.o-old \
-		stacktest.o-old
+		stacktest.o-old \
+		streamitertest.o-old
 
 ALLBIN	=	newdel newdel-old \
 		io io-old \
@@ -72,9 +75,11 @@
 		numerictest numerictest-old \
 		bitsettest bitsettest-old \
 		algotest algotest-old \
-		stacktest stacktest-old
+		stacktest stacktest-old \
+		streamitertest streamitertest-old
 
-ALLTGT	=	stacktest \
+ALLTGT	=	streamitertest \
+		stacktest \
 		algotest \
 		bitsettest \
 		sstreamtest \
@@ -174,6 +179,11 @@
 	$(CXX) -o stacktest stacktest.o $(CXXFLAGS) $(UFLAGS) $(ULIBS)
 	$(CXX) -o stacktest-old stacktest.o-old $(COFLAGS)
 
+streamitertest: $(EXOBJS)
+	$(CXX) -o streamitertest streamitertest.o $(CXXFLAGS) $(UFLAGS) $(ULIBS)
+	$(CXX) -o streamitertest-old streamitertest.o-old $(COFLAGS)
+
+
 
 .cpp.o:
 	$(CXX) -c $(CXXFLAGS) -o $@ $<
--- /var/cvs/uClibc++/tests/algotest.cpp	2004/09/17 02:47:52	1.5
+++ /var/cvs/uClibc++/tests/algotest.cpp	2004/09/26 19:18:25	1.6
@@ -293,7 +293,7 @@
 	std::sort_heap<std::vector<double>::iterator, std::greater<double> >(a.begin(), a.end(), std::greater<double>() );
 
 	std::cout << "The following two lines should be identical:\n";
-	std::cout << "5.2 7.2 12.5 21.8 27.4 36.6 55.5 67.9 93.4" << std::endl;
+	std::cout << "93.4 67.9 55.5 36.6 27.4 21.8 12.5 7.2 5.2 " << std::endl;
 	i = a.begin();
 	while(i != a.end()){
 		std::cout << *i << " ";



More information about the uClibc-cvs mailing list