[uClibc-cvs] CVS uClibc++/tests

CVS User gkajmowi gkajmowi at codepoet.org
Tue Nov 30 17:38:13 UTC 2004


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

Modified Files:
	Makefile 
Added Files:
	fstreamtest.cpp 
Log Message:
Fixed issues with fstream


--- /var/cvs/uClibc++/tests/Makefile	2004/09/26 19:18:25	1.8
+++ /var/cvs/uClibc++/tests/Makefile	2004/11/30 17:38:12	1.9
@@ -25,7 +25,8 @@
 	bitsettest.cpp \
 	algotest.cpp \
 	stacktest.cpp \
-	streamitertest.cpp
+	streamitertest.cpp \
+	fstreamtest.cpp
 
 
 EXOBJS	=\
@@ -43,7 +44,8 @@
 	bitsettest.o \
 	algotest.o \
 	stacktest.o \
-	streamitertest.o
+	streamitertest.o \
+	fstreamtest.o
 
 ALLOBJS	=	$(EXOBJS) \
 		newdel.o-old \
@@ -60,7 +62,8 @@
 		bitsettest.o-old \
 		algotest.o-old \
 		stacktest.o-old \
-		streamitertest.o-old
+		streamitertest.o-old \
+		fstreamtest.o-old
 
 ALLBIN	=	newdel newdel-old \
 		io io-old \
@@ -76,7 +79,8 @@
 		bitsettest bitsettest-old \
 		algotest algotest-old \
 		stacktest stacktest-old \
-		streamitertest streamitertest-old
+		streamitertest streamitertest-old \
+		fstreamtest fstreamtest-old
 
 ALLTGT	=	streamitertest \
 		stacktest \
@@ -92,7 +96,8 @@
 		stringtest \
 		vectortest \
 		io \
-		newdel
+		newdel \
+		fstreamtest
 
 ifeq ($(UCLIBCXX_EXCEPTION_SUPPORT),y)
 SRCS    += excepttest.cpp
@@ -183,6 +188,10 @@
 	$(CXX) -o streamitertest streamitertest.o $(CXXFLAGS) $(UFLAGS) $(ULIBS)
 	$(CXX) -o streamitertest-old streamitertest.o-old $(COFLAGS)
 
+fstreamtest: $(EXOBJS)
+	$(CXX) -o fstreamtest fstreamtest.o $(CXXFLAGS) $(UFLAGS) $(ULIBS)
+	$(CXX) -o fstreamtest-old fstreamtest.o-old $(COFLAGS)
+
 
 
 .cpp.o:



More information about the uClibc-cvs mailing list