[complement-svn] SF.net SVN: complement: [1298] trunk/explore/perf/STL
Status: Pre-Alpha
Brought to you by:
complement
From: <com...@us...> - 2006-10-05 17:35:49
|
Revision: 1298 http://svn.sourceforge.net/complement/?rev=1298&view=rev Author: complement Date: 2006-10-05 10:35:41 -0700 (Thu, 05 Oct 2006) Log Message: ----------- add test Modified Paths: -------------- trunk/explore/perf/STL/Makefile trunk/explore/perf/STL/string/Makefile Modified: trunk/explore/perf/STL/Makefile =================================================================== --- trunk/explore/perf/STL/Makefile 2006-10-05 15:16:12 UTC (rev 1297) +++ trunk/explore/perf/STL/Makefile 2006-10-05 17:35:41 UTC (rev 1298) @@ -1,6 +1,7 @@ # -*- Makefile -*- Time-stamp: <05/12/27 00:00:15 ptr> DIRS := lib string string-MT stream +TESTDIRS := string string-MT stream all: for d in $(DIRS); do \ @@ -21,3 +22,11 @@ for d in $(DIRS); do \ (cd $$d; ${MAKE} clobber); \ done + +test: + for d in $(TESTDIRS); do \ + (cd $$d; ./test.sh); \ + done + +.PHONY: all depend clean clobber test + Modified: trunk/explore/perf/STL/string/Makefile =================================================================== --- trunk/explore/perf/STL/string/Makefile 2006-10-05 15:16:12 UTC (rev 1297) +++ trunk/explore/perf/STL/string/Makefile 2006-10-05 17:35:41 UTC (rev 1298) @@ -1,6 +1,6 @@ # -*- Makefile -*- Time-stamp: <05/12/27 00:15:29 ptr> -DIRS = add add-ropes find find-ropes ops ops-ropes params params-ropes params-ref params-ref-ropes params-short +DIRS = add add-ropes find find-ropes ops ops-ropes params params-ropes/STLport-default params-ropes/STLport-malloc params-ref params-ref-ropes/STLport-default params-ref-ropes/STLport-malloc params-ref-ropes/STLport-newalloc params-short all: for d in $(DIRS); do \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |