[complement-svn] SF.net SVN: complement: [1467] trunk/complement/extern/custom/boost/libs
Status: Pre-Alpha
Brought to you by:
complement
From: <com...@us...> - 2007-01-23 12:24:57
|
Revision: 1467 http://svn.sourceforge.net/complement/?rev=1467&view=rev Author: complement Date: 2007-01-23 04:24:52 -0800 (Tue, 23 Jan 2007) Log Message: ----------- build some tests and check (run ones) Modified Paths: -------------- trunk/complement/extern/custom/boost/libs/Makefile trunk/complement/extern/custom/boost/libs/filesystem/Makefile trunk/complement/extern/custom/boost/libs/test/test_exec_mon/Makefile trunk/complement/extern/custom/boost/libs/test/test_exec_mon/Makefile.inc Added Paths: ----------- trunk/complement/extern/custom/boost/libs/filesystem/test/ trunk/complement/extern/custom/boost/libs/filesystem/test/Makefile trunk/complement/extern/custom/boost/libs/filesystem/test/Makefile.inc Modified: trunk/complement/extern/custom/boost/libs/Makefile =================================================================== --- trunk/complement/extern/custom/boost/libs/Makefile 2006-12-29 13:24:41 UTC (rev 1466) +++ trunk/complement/extern/custom/boost/libs/Makefile 2007-01-23 12:24:52 UTC (rev 1467) @@ -7,11 +7,13 @@ # SRCROOT := ../../../../explore -SUBDIRS := date_time filesystem program_options regex serialization test/unit_test_framework thread +SUBDIRS := date_time filesystem program_options regex serialization \ + test/unit_test_framework test/test_exec_mon \ + thread include ${SRCROOT}/Makefiles/gmake/subdirs.mak -all install install-release-static depend clean clobber distclean: +all install install-release-static depend clean clobber distclean check: $(doinsubdirs) -.PHONY: all install install-release-static depend clean clobber distclean +.PHONY: all install install-release-static depend clean clobber distclean check Modified: trunk/complement/extern/custom/boost/libs/filesystem/Makefile =================================================================== --- trunk/complement/extern/custom/boost/libs/filesystem/Makefile 2006-12-29 13:24:41 UTC (rev 1466) +++ trunk/complement/extern/custom/boost/libs/filesystem/Makefile 2007-01-23 12:24:52 UTC (rev 1467) @@ -14,3 +14,18 @@ POST_INSTALL += ; rm -f $(INSTALL_LIB_DIR)/libboost_filesystem.so $(INSTALL_LIB_DIR)/${SO_NAME} POST_INSTALL_DBG += ; rm -f $(INSTALL_LIB_DIR_DBG)/libboost_filesystem.so $(INSTALL_LIB_DIR_DBG)/${SO_NAME_DBG} endif + +check: all + ${MAKE} -C test check + +check-release-shared: release-shared + ${MAKE} -C test check-release-shared + +check-dbg-shared: dbg-shared + ${MAKE} -C test check-dbg-shared + +ifndef WITHOUT_STLPORT +check-stldbg-shared: stldbg-shared + ${MAKE} -C test check-stldbg-shared +endif + Property changes on: trunk/complement/extern/custom/boost/libs/filesystem/test ___________________________________________________________________ Name: svn:ignore + obj xx fstream_test_?foo Added: trunk/complement/extern/custom/boost/libs/filesystem/test/Makefile =================================================================== --- trunk/complement/extern/custom/boost/libs/filesystem/test/Makefile (rev 0) +++ trunk/complement/extern/custom/boost/libs/filesystem/test/Makefile 2007-01-23 12:24:52 UTC (rev 1467) @@ -0,0 +1,50 @@ +# -*- 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} + +LDFLAGS += -L${INSTALL_LIB_DIR} -Wl,-rpath=${INSTALL_LIB_DIR}:${STLPORT_LIB_DIR} + +release-shared: LDLIBS = -lboost_test_tem -lboost_fs +dbg-shared: LDLIBS = -lboost_test_temg -lboost_fsg +ifndef WITHOUT_STLPORT +stldbg-shared: LDLIBS = -lboost_test_temstlg -lboost_fsstlg +endif + +check: all + for p in ${PRGNAME} ${PRGNAMES}; do \ + ${OUTPUT_DIR}/$$p || exit 1; \ + ${OUTPUT_DIR_DBG}/$$p || exit 1; \ + done +ifndef WITHOUT_STLPORT + for p in ${PRGNAME} ${PRGNAMES}; do \ + ${OUTPUT_DIR_STLDBG}/$$p || exit 1; \ + done +endif + rm -rf ./xx fstream_test_?foo + +check-release-shared: release-shared + for p in ${PRGNAME} ${PRGNAMES}; do \ + ${OUTPUT_DIR}/$$p || exit 1; \ + done + rm -rf ./xx fstream_test_?foo + +check-dbg-shared: dbg-shared + for p in ${PRGNAME} ${PRGNAMES}; do \ + ${OUTPUT_DIR_DBG}/$$p || exit 1; \ + done + rm -rf ./xx fstream_test_?foo + +ifndef WITHOUT_STLPORT +check-stldbg-shared: stldbg-shared + for p in ${PRGNAME} ${PRGNAMES}; do \ + ${OUTPUT_DIR_STLDBG}/$$p || exit 1; \ + done + rm -rf ./xx fstream_test_?foo +endif + Added: trunk/complement/extern/custom/boost/libs/filesystem/test/Makefile.inc =================================================================== --- trunk/complement/extern/custom/boost/libs/filesystem/test/Makefile.inc (rev 0) +++ trunk/complement/extern/custom/boost/libs/filesystem/test/Makefile.inc 2007-01-23 12:24:52 UTC (rev 1467) @@ -0,0 +1,12 @@ +# -*- makefile -*- Time-stamp: <03/03/31 15:11:21 ptr> + +BOOST_FS_SRC = ${BOOST_INCLUDE_DIR}/libs/filesystem/test +PRGNAME = path_test +PRGNAMES = default_name_check_test operations_test fstream_test convenience_test +# large_file_support_test +SRC_CPP = ${BOOST_FS_SRC}/path_test.cpp +default_name_check_test_SRC_CPP = ${BOOST_FS_SRC}/default_name_check_test.cpp +operations_test_SRC_CPP = ${BOOST_FS_SRC}/operations_test.cpp +fstream_test_SRC_CPP = ${BOOST_FS_SRC}/fstream_test.cpp +convenience_test_SRC_CPP = ${BOOST_FS_SRC}/convenience_test.cpp +# large_file_support_test_SRC_CPP = ${BOOST_FS_SRC}/large_file_support_test.cpp Modified: trunk/complement/extern/custom/boost/libs/test/test_exec_mon/Makefile =================================================================== --- trunk/complement/extern/custom/boost/libs/test/test_exec_mon/Makefile 2006-12-29 13:24:41 UTC (rev 1466) +++ trunk/complement/extern/custom/boost/libs/test/test_exec_mon/Makefile 2007-01-23 12:24:52 UTC (rev 1467) @@ -1,10 +1,16 @@ -# -*- makefile -*- Time-stamp: <03/03/31 15:18:29 ptr> -# $Id$ +# -*- makefile -*- Time-stamp: <06/06/27 02:26:25 ptr> SRCROOT := ../../../../../../explore COMPILER_NAME := gcc +POST_INSTALL = ln -sf ${SO_NAME} $(INSTALL_LIB_DIR)/libboost_unit_test_framework.so +POST_INSTALL_DBG = ln -sf ${SO_NAME_DBG} $(INSTALL_LIB_DIR_DBG)/libboost_unit_test_framework.so include Makefile.inc include ${SRCROOT}/Makefiles/top.mak -INCLUDES += -I$(STLPORT_INCLUDE_DIR) -I${BOOST_INCLUDE_DIR} +INCLUDES += -I${BOOST_INCLUDE_DIR} + +ifdef USE_SYSTEM_BOOST +POST_INSTALL += ; rm -f $(INSTALL_LIB_DIR)/libboost_unit_test_framework.so $(INSTALL_LIB_DIR)/${SO_NAME} +POST_INSTALL_DBG += ; rm -f $(INSTALL_LIB_DIR_DBG)/libboost_unit_test_framework.so $(INSTALL_LIB_DIR_DBG)/${SO_NAME_DBG} +endif Modified: trunk/complement/extern/custom/boost/libs/test/test_exec_mon/Makefile.inc =================================================================== --- trunk/complement/extern/custom/boost/libs/test/test_exec_mon/Makefile.inc 2006-12-29 13:24:41 UTC (rev 1466) +++ trunk/complement/extern/custom/boost/libs/test/test_exec_mon/Makefile.inc 2007-01-23 12:24:52 UTC (rev 1467) @@ -1,14 +1,23 @@ # -*- makefile -*- Time-stamp: <03/03/31 15:11:21 ptr> -# $Id$ BOOST_TST_SRC = ${BOOST_INCLUDE_DIR}/libs/test/src LIBNAME = boost_test_tem MAJOR = 1 -MINOR = 32 -PATCH = 0 -SRC_CPP = ${BOOST_TST_SRC}/execution_monitor.cpp ${BOOST_TST_SRC}/test_tools.cpp \ +MINOR = 33 +PATCH = 1 +SRC_CPP = ${BOOST_TST_SRC}/compiler_log_formatter.cpp \ + ${BOOST_TST_SRC}/execution_monitor.cpp \ + ${BOOST_TST_SRC}/framework.cpp \ + ${BOOST_TST_SRC}/plain_report_formatter.cpp \ + ${BOOST_TST_SRC}/progress_monitor.cpp \ + ${BOOST_TST_SRC}/results_collector.cpp \ + ${BOOST_TST_SRC}/results_reporter.cpp \ + ${BOOST_TST_SRC}/test_main.cpp \ + ${BOOST_TST_SRC}/test_tools.cpp \ + ${BOOST_TST_SRC}/unit_test_log.cpp \ + ${BOOST_TST_SRC}/unit_test_main.cpp \ + ${BOOST_TST_SRC}/unit_test_monitor.cpp \ ${BOOST_TST_SRC}/unit_test_parameters.cpp \ - ${BOOST_TST_SRC}/unit_test_log.cpp ${BOOST_TST_SRC}/unit_test_monitor.cpp \ - ${BOOST_TST_SRC}/unit_test_result.cpp \ - ${BOOST_TST_SRC}/unit_test_suite.cpp ${BOOST_TST_SRC}/test_main.cpp \ - ${BOOST_TST_SRC}/supplied_log_formatters.cpp + ${BOOST_TST_SRC}/unit_test_suite.cpp \ + ${BOOST_TST_SRC}/xml_log_formatter.cpp \ + ${BOOST_TST_SRC}/xml_report_formatter.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |