Revision: 1470
http://svn.sourceforge.net/complement/?rev=1470&view=rev
Author: complement
Date: 2007-01-23 10:58:29 -0800 (Tue, 23 Jan 2007)
Log Message:
-----------
add tests
Added Paths:
-----------
trunk/complement/extern/custom/boost/libs/test/unit_test_framework/test/
trunk/complement/extern/custom/boost/libs/test/unit_test_framework/test/Makefile
trunk/complement/extern/custom/boost/libs/test/unit_test_framework/test/Makefile.inc
Property changes on: trunk/complement/extern/custom/boost/libs/test/unit_test_framework/test
___________________________________________________________________
Name: svn:ignore
+ obj
Added: trunk/complement/extern/custom/boost/libs/test/unit_test_framework/test/Makefile
===================================================================
--- trunk/complement/extern/custom/boost/libs/test/unit_test_framework/test/Makefile (rev 0)
+++ trunk/complement/extern/custom/boost/libs/test/unit_test_framework/test/Makefile 2007-01-23 18:58:29 UTC (rev 1470)
@@ -0,0 +1,60 @@
+# -*- makefile -*- Time-stamp: <06/06/27 02:25:13 ptr>
+
+SRCROOT := ../../../../../../../explore
+COMPILER_NAME := gcc
+
+include Makefile.inc
+include ${SRCROOT}/Makefiles/top.mak
+
+INCLUDES += -I${BOOST_INCLUDE_DIR}
+
+release-shared: LDFLAGS += -L../${OUTPUT_DIR} -Wl,-rpath=../${OUTPUT_DIR}:${STLPORT_LIB_DIR}
+dbg-shared: LDFLAGS += -L../${OUTPUT_DIR_DBG} -Wl,-rpath=../${OUTPUT_DIR_DBG}:${STLPORT_LIB_DIR}
+ifndef WITHOUT_STLPORT
+stldbg-shared: LDFLAGS += -L../${OUTPUT_DIR_STLDBG} -Wl,-rpath=../${OUTPUT_DIR_STLDBG}:${STLPORT_LIB_DIR}
+endif
+
+release-shared: LDLIBS = -lboost_test_utf
+dbg-shared: LDLIBS = -lboost_test_utfg
+ifndef WITHOUT_STLPORT
+stldbg-shared: LDLIBS = -lboost_test_utfstlg
+endif
+
+TMPFILES = pattern.temp2 pattern.test
+
+check: all
+ for p in ${PRGNAME} ${PRGNAMES}; do \
+ ${OUTPUT_DIR}/$$p || exit 1; \
+ done
+ rm -f ${TMPFILES}
+ for p in ${PRGNAME} ${PRGNAMES}; do \
+ ${OUTPUT_DIR_DBG}/$$p || exit 1; \
+ done
+ rm -f ${TMPFILES}
+ifndef WITHOUT_STLPORT
+ for p in ${PRGNAME} ${PRGNAMES}; do \
+ ${OUTPUT_DIR_STLDBG}/$$p || exit 1; \
+ done
+ rm -f ${TMPFILES}
+endif
+
+check-release-shared: release-shared
+ for p in ${PRGNAME} ${PRGNAMES}; do \
+ ${OUTPUT_DIR}/$$p || exit 1; \
+ done
+ rm -f ${TMPFILES}
+
+check-dbg-shared: dbg-shared
+ for p in ${PRGNAME} ${PRGNAMES}; do \
+ ${OUTPUT_DIR_DBG}/$$p || exit 1; \
+ done
+ rm -f ${TMPFILES}
+
+ifndef WITHOUT_STLPORT
+check-stldbg-shared: stldbg-shared
+ for p in ${PRGNAME} ${PRGNAMES}; do \
+ ${OUTPUT_DIR_STLDBG}/$$p || exit 1; \
+ done
+ rm -f ${TMPFILES}
+endif
+
Added: trunk/complement/extern/custom/boost/libs/test/unit_test_framework/test/Makefile.inc
===================================================================
--- trunk/complement/extern/custom/boost/libs/test/unit_test_framework/test/Makefile.inc (rev 0)
+++ trunk/complement/extern/custom/boost/libs/test/unit_test_framework/test/Makefile.inc 2007-01-23 18:58:29 UTC (rev 1470)
@@ -0,0 +1,22 @@
+# -*- makefile -*- Time-stamp: <03/03/31 15:11:21 ptr>
+
+BOOST_FS_SRC = ${BOOST_INCLUDE_DIR}/libs/test/test
+PRGNAME = class_properties_test
+PRGNAMES = basic_cstring_test output_test_stream_test parameterized_test_test test_fp_comparisons \
+ auto_unit_test_test test_case_template_test \
+ custom_exception_test fixed_mapping_test algorithms_test token_iterator_test
+# auto_unit_test_test_mult
+SRC_CPP = ${BOOST_FS_SRC}/class_properties_test.cpp
+basic_cstring_test_SRC_CPP = ${BOOST_FS_SRC}/basic_cstring_test.cpp
+output_test_stream_test_SRC_CPP = ${BOOST_FS_SRC}/output_test_stream_test.cpp
+parameterized_test_test_SRC_CPP = ${BOOST_FS_SRC}/parameterized_test_test.cpp
+test_fp_comparisons_SRC_CPP = ${BOOST_FS_SRC}/test_fp_comparisons.cpp
+auto_unit_test_test_SRC_CPP = ${BOOST_FS_SRC}/auto_unit_test_test.cpp
+auto_unit_test_test_mult_SRC_CPP = ${BOOST_FS_SRC}/auto_unit_test_test_mult.cpp \
+ ${BOOST_FS_SRC}/auto_unit_test_test_mult1.cpp \
+ ${BOOST_FS_SRC}/auto_unit_test_test_mult2.cpp
+test_case_template_test_SRC_CPP = ${BOOST_FS_SRC}/test_case_template_test.cpp
+custom_exception_test_SRC_CPP = ${BOOST_FS_SRC}/custom_exception_test.cpp
+fixed_mapping_test_SRC_CPP = ${BOOST_FS_SRC}/fixed_mapping_test.cpp
+algorithms_test_SRC_CPP = ${BOOST_FS_SRC}/algorithms_test.cpp
+token_iterator_test_SRC_CPP = ${BOOST_FS_SRC}/token_iterator_test.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|