[complement-svn] SF.net SVN: complement: [1473] trunk/complement/extern/custom/boost/libs
Status: Pre-Alpha
Brought to you by:
complement
From: <com...@us...> - 2007-01-25 13:17:59
|
Revision: 1473 http://svn.sourceforge.net/complement/?rev=1473&view=rev Author: complement Date: 2007-01-25 05:17:57 -0800 (Thu, 25 Jan 2007) Log Message: ----------- more tests added; note, that tests for regex not pass! Modified Paths: -------------- trunk/complement/extern/custom/boost/libs/program_options/Makefile trunk/complement/extern/custom/boost/libs/regex/Makefile trunk/complement/extern/custom/boost/libs/test/prg_exec_mon/Makefile trunk/complement/extern/custom/boost/libs/test/prg_exec_mon/Makefile.inc trunk/complement/extern/custom/boost/libs/test/test_exec_mon/Makefile trunk/complement/extern/custom/boost/libs/test/unit_test_framework/Makefile Added Paths: ----------- trunk/complement/extern/custom/boost/libs/program_options/test/ trunk/complement/extern/custom/boost/libs/program_options/test/Makefile trunk/complement/extern/custom/boost/libs/program_options/test/Makefile.inc trunk/complement/extern/custom/boost/libs/regex/test/ trunk/complement/extern/custom/boost/libs/regex/test/Makefile trunk/complement/extern/custom/boost/libs/regex/test/Makefile.inc trunk/complement/extern/custom/boost/libs/test/prg_exec_mon/test/ trunk/complement/extern/custom/boost/libs/test/prg_exec_mon/test/Makefile trunk/complement/extern/custom/boost/libs/test/prg_exec_mon/test/Makefile.inc trunk/complement/extern/custom/boost/libs/test/test_exec_mon/test/ trunk/complement/extern/custom/boost/libs/test/test_exec_mon/test/Makefile trunk/complement/extern/custom/boost/libs/test/test_exec_mon/test/Makefile.inc Modified: trunk/complement/extern/custom/boost/libs/program_options/Makefile =================================================================== --- trunk/complement/extern/custom/boost/libs/program_options/Makefile 2007-01-23 19:02:08 UTC (rev 1472) +++ trunk/complement/extern/custom/boost/libs/program_options/Makefile 2007-01-25 13:17:57 UTC (rev 1473) @@ -1,4 +1,4 @@ -# -*- makefile -*- Time-stamp: <03/03/31 15:18:29 ptr> +# -*- makefile -*- Time-stamp: <07/01/25 00:51:36 ptr> SRCROOT := ../../../../../explore COMPILER_NAME := gcc @@ -7,3 +7,20 @@ include ${SRCROOT}/Makefiles/top.mak INCLUDES += -I${BOOST_INCLUDE_DIR} + +check: all-shared + $(MAKE) -C test check || exit 1 + +check-release: release-shared + $(MAKE) -C test check-release-shared || exit 1 + +check-dbg: dbg-shared + $(MAKE) -C test check-dbg-shared || exit 1 + +ifndef WITHOUT_STLPORT +check-stldbg: stldbg-shared + $(MAKE) -C test check-stldbg-shared || exit 1 +endif + +depend:: + $(MAKE) -C test depend Property changes on: trunk/complement/extern/custom/boost/libs/program_options/test ___________________________________________________________________ Name: svn:ignore + obj Added: trunk/complement/extern/custom/boost/libs/program_options/test/Makefile =================================================================== --- trunk/complement/extern/custom/boost/libs/program_options/test/Makefile (rev 0) +++ trunk/complement/extern/custom/boost/libs/program_options/test/Makefile 2007-01-25 13:17:57 UTC (rev 1473) @@ -0,0 +1,52 @@ +# -*- makefile -*- Time-stamp: <07/01/25 00:49:53 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} -L../../test/test_exec_mon/${OUTPUT_DIR} -Wl,-rpath=../${OUTPUT_DIR}:../../test/test_exec_mon/${OUTPUT_DIR}:${STLPORT_LIB_DIR} +dbg-shared: LDFLAGS += -L../${OUTPUT_DIR_DBG} -L../../test/test_exec_mon/${OUTPUT_DIR_DBG} -Wl,-rpath=../${OUTPUT_DIR_DBG}:../../test/test_exec_mon/${OUTPUT_DIR_DBG}:${STLPORT_LIB_DIR} +ifndef WITHOUT_STLPORT +stldbg-shared: LDFLAGS += -L../${OUTPUT_DIR_STLDBG} -L../../test/test_exec_mon/${OUTPUT_DIR_STLDBG} -Wl,-rpath=../${OUTPUT_DIR_STLDBG}:../../test/test_exec_mon/${OUTPUT_DIR_STLDBG}:${STLPORT_LIB_DIR} +endif + +release-shared: LDLIBS = -lboost_test_tem -lboost_program_options +dbg-shared: LDLIBS = -lboost_test_temg -lboost_program_optionsg +ifndef WITHOUT_STLPORT +stldbg-shared: LDLIBS = -lboost_test_temstlg -lboost_program_optionsstlg +endif + +check: all + @for p in ${PRGNAME} ${PRGNAMES}; do \ + ${OUTPUT_DIR}/$$p || exit 1; \ + done + @for p in ${PRGNAME} ${PRGNAMES}; do \ + ${OUTPUT_DIR_DBG}/$$p || exit 1; \ + done +ifndef WITHOUT_STLPORT + @for p in ${PRGNAME} ${PRGNAMES}; do \ + ${OUTPUT_DIR_STLDBG}/$$p || exit 1; \ + done +endif + +check-release-shared: release-shared + @for p in ${PRGNAME} ${PRGNAMES}; do \ + ${OUTPUT_DIR}/$$p || exit 1; \ + done + +check-dbg-shared: dbg-shared + @for p in ${PRGNAME} ${PRGNAMES}; do \ + ${OUTPUT_DIR_DBG}/$$p || exit 1; \ + done + +ifndef WITHOUT_STLPORT +check-stldbg-shared: stldbg-shared + @for p in ${PRGNAME} ${PRGNAMES}; do \ + ${OUTPUT_DIR_STLDBG}/$$p || exit 1; \ + done +endif + Added: trunk/complement/extern/custom/boost/libs/program_options/test/Makefile.inc =================================================================== --- trunk/complement/extern/custom/boost/libs/program_options/test/Makefile.inc (rev 0) +++ trunk/complement/extern/custom/boost/libs/program_options/test/Makefile.inc 2007-01-25 13:17:57 UTC (rev 1473) @@ -0,0 +1,13 @@ +# -*- makefile -*- Time-stamp: <07/01/25 00:54:51 ptr> + +BOOST_FS_SRC = ${BOOST_INCLUDE_DIR}/libs/program_options/test +PRGNAME = options_description_test +PRGNAMES = parsers_test variable_map_test cmdline_test positional_options_test \ + unicode_test winmain +SRC_CPP = ${BOOST_FS_SRC}/options_description_test.cpp +parsers_test_SRC_CPP = ${BOOST_FS_SRC}/parsers_test.cpp +variable_map_test_SRC_CPP = ${BOOST_FS_SRC}/variable_map_test.cpp +cmdline_test_SRC_CPP = ${BOOST_FS_SRC}/cmdline_test.cpp +positional_options_test_SRC_CPP = ${BOOST_FS_SRC}/positional_options_test.cpp +unicode_test_SRC_CPP = ${BOOST_FS_SRC}/unicode_test.cpp +winmain_SRC_CPP = ${BOOST_FS_SRC}/winmain.cpp Modified: trunk/complement/extern/custom/boost/libs/regex/Makefile =================================================================== --- trunk/complement/extern/custom/boost/libs/regex/Makefile 2007-01-23 19:02:08 UTC (rev 1472) +++ trunk/complement/extern/custom/boost/libs/regex/Makefile 2007-01-25 13:17:57 UTC (rev 1473) @@ -1,4 +1,4 @@ -# -*- makefile -*- Time-stamp: <03/03/31 15:18:29 ptr> +# -*- makefile -*- Time-stamp: <07/01/25 09:30:29 ptr> SRCROOT := ../../../../../explore COMPILER_NAME := gcc @@ -7,3 +7,20 @@ include ${SRCROOT}/Makefiles/top.mak INCLUDES += -I${BOOST_INCLUDE_DIR} + +check: all-shared + $(MAKE) -C test check || exit 1 + +check-release: release-shared + $(MAKE) -C test check-release-shared || exit 1 + +check-dbg: dbg-shared + $(MAKE) -C test check-dbg-shared || exit 1 + +ifndef WITHOUT_STLPORT +check-stldbg: stldbg-shared + $(MAKE) -C test check-stldbg-shared || exit 1 +endif + +depend:: + $(MAKE) -C test depend Property changes on: trunk/complement/extern/custom/boost/libs/regex/test ___________________________________________________________________ Name: svn:ignore + obj Added: trunk/complement/extern/custom/boost/libs/regex/test/Makefile =================================================================== --- trunk/complement/extern/custom/boost/libs/regex/test/Makefile (rev 0) +++ trunk/complement/extern/custom/boost/libs/regex/test/Makefile 2007-01-25 13:17:57 UTC (rev 1473) @@ -0,0 +1,52 @@ +# -*- makefile -*- Time-stamp: <07/01/25 00:49:53 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_regex +dbg-shared: LDLIBS = -lboost_regexg +ifndef WITHOUT_STLPORT +stldbg-shared: LDLIBS = -lboost_regexstlg +endif + +check: all + @for p in ${PRGNAME} ${PRGNAMES}; do \ + ${OUTPUT_DIR}/$$p || exit 1; \ + done + @for p in ${PRGNAME} ${PRGNAMES}; do \ + ${OUTPUT_DIR_DBG}/$$p || exit 1; \ + done +ifndef WITHOUT_STLPORT + @for p in ${PRGNAME} ${PRGNAMES}; do \ + ${OUTPUT_DIR_STLDBG}/$$p || exit 1; \ + done +endif + +check-release-shared: release-shared + @for p in ${PRGNAME} ${PRGNAMES}; do \ + ${OUTPUT_DIR}/$$p || exit 1; \ + done + +check-dbg-shared: dbg-shared + @for p in ${PRGNAME} ${PRGNAMES}; do \ + ${OUTPUT_DIR_DBG}/$$p || exit 1; \ + done + +ifndef WITHOUT_STLPORT +check-stldbg-shared: stldbg-shared + @for p in ${PRGNAME} ${PRGNAMES}; do \ + ${OUTPUT_DIR_STLDBG}/$$p || exit 1; \ + done +endif + Added: trunk/complement/extern/custom/boost/libs/regex/test/Makefile.inc =================================================================== --- trunk/complement/extern/custom/boost/libs/regex/test/Makefile.inc (rev 0) +++ trunk/complement/extern/custom/boost/libs/regex/test/Makefile.inc 2007-01-25 13:17:57 UTC (rev 1473) @@ -0,0 +1,34 @@ +# -*- makefile -*- Time-stamp: <07/01/25 09:51:52 ptr> + +BOOST_FS_SRC = ${BOOST_INCLUDE_DIR}/libs/regex/test +PRGNAME = regex +PRGNAMES = posix_api_check wide_posix_api_check bad_expression_test \ + recursion_test unicode_iterator_test +SRC_CPP = ${BOOST_FS_SRC}/regress/basic_tests.cpp \ + ${BOOST_FS_SRC}/regress/main.cpp \ + ${BOOST_FS_SRC}/regress/test_alt.cpp \ + ${BOOST_FS_SRC}/regress/test_anchors.cpp \ + ${BOOST_FS_SRC}/regress/test_asserts.cpp \ + ${BOOST_FS_SRC}/regress/test_backrefs.cpp \ + ${BOOST_FS_SRC}/regress/test_deprecated.cpp \ + ${BOOST_FS_SRC}/regress/test_emacs.cpp \ + ${BOOST_FS_SRC}/regress/test_escapes.cpp \ + ${BOOST_FS_SRC}/regress/test_grep.cpp \ + ${BOOST_FS_SRC}/regress/test_locale.cpp \ + ${BOOST_FS_SRC}/regress/test_mfc.cpp \ + ${BOOST_FS_SRC}/regress/test_non_greedy_repeats.cpp \ + ${BOOST_FS_SRC}/regress/test_perl_ex.cpp \ + ${BOOST_FS_SRC}/regress/test_replace.cpp \ + ${BOOST_FS_SRC}/regress/test_sets.cpp \ + ${BOOST_FS_SRC}/regress/test_simple_repeats.cpp \ + ${BOOST_FS_SRC}/regress/test_tricky_cases.cpp \ + ${BOOST_FS_SRC}/regress/test_icu.cpp \ + ${BOOST_FS_SRC}/regress/test_unicode.cpp \ + ${BOOST_FS_SRC}/regress/test_overloads.cpp \ + ${BOOST_FS_SRC}/regress/test_operators.cpp + +posix_api_check_SRC_CPP = ${BOOST_FS_SRC}/c_compiler_checks/posix_api_check.cpp +wide_posix_api_check_SRC_CPP = ${BOOST_FS_SRC}/c_compiler_checks/wide_posix_api_check.cpp +bad_expression_test_SRC_CPP = ${BOOST_FS_SRC}/pathology/bad_expression_test.cpp +recursion_test_SRC_CPP = ${BOOST_FS_SRC}/pathology/recursion_test.cpp +unicode_iterator_test_SRC_CPP = ${BOOST_FS_SRC}/unicode/unicode_iterator_test.cpp Modified: trunk/complement/extern/custom/boost/libs/test/prg_exec_mon/Makefile =================================================================== --- trunk/complement/extern/custom/boost/libs/test/prg_exec_mon/Makefile 2007-01-23 19:02:08 UTC (rev 1472) +++ trunk/complement/extern/custom/boost/libs/test/prg_exec_mon/Makefile 2007-01-25 13:17:57 UTC (rev 1473) @@ -1,5 +1,4 @@ -# -*- makefile -*- Time-stamp: <03/03/31 15:18:29 ptr> -# $Id$ +# -*- makefile -*- Time-stamp: <07/01/24 22:10:47 ptr> SRCROOT := ../../../../../../explore COMPILER_NAME := gcc @@ -7,5 +6,21 @@ include Makefile.inc include ${SRCROOT}/Makefiles/top.mak -INCLUDES += -I$(STLPORT_INCLUDE_DIR) -I${BOOST_INCLUDE_DIR} +INCLUDES += -I${BOOST_INCLUDE_DIR} +check: all-shared + $(MAKE) -C test check || exit 1 + +check-release: release-shared + $(MAKE) -C test check-release-shared || exit 1 + +check-dbg: dbg-shared + $(MAKE) -C test check-dbg-shared || exit 1 + +ifndef WITHOUT_STLPORT +check-stldbg: stldbg-shared + $(MAKE) -C test check-stldbg-shared || exit 1 +endif + +depend:: + $(MAKE) -C test depend Modified: trunk/complement/extern/custom/boost/libs/test/prg_exec_mon/Makefile.inc =================================================================== --- trunk/complement/extern/custom/boost/libs/test/prg_exec_mon/Makefile.inc 2007-01-23 19:02:08 UTC (rev 1472) +++ trunk/complement/extern/custom/boost/libs/test/prg_exec_mon/Makefile.inc 2007-01-25 13:17:57 UTC (rev 1473) @@ -1,9 +1,11 @@ -# -*- makefile -*- Time-stamp: <03/03/31 15:11:21 ptr> -# $Id$ +# -*- makefile -*- Time-stamp: <07/01/24 22:12:03 ptr> BOOST_TST_SRC = ${BOOST_INCLUDE_DIR}/libs/test/src LIBNAME = boost_test_pem MAJOR = 1 -MINOR = 32 -PATCH = 0 -SRC_CPP = ${BOOST_TST_SRC}/execution_monitor.cpp ${BOOST_TST_SRC}/cpp_main.cpp +MINOR = 33 +PATCH = 1 +SRC_CPP = ${BOOST_TST_SRC}/execution_monitor.cpp \ + ${BOOST_TST_SRC}/cpp_main.cpp + + Property changes on: trunk/complement/extern/custom/boost/libs/test/prg_exec_mon/test ___________________________________________________________________ Name: svn:ignore + obj Added: trunk/complement/extern/custom/boost/libs/test/prg_exec_mon/test/Makefile =================================================================== --- trunk/complement/extern/custom/boost/libs/test/prg_exec_mon/test/Makefile (rev 0) +++ trunk/complement/extern/custom/boost/libs/test/prg_exec_mon/test/Makefile 2007-01-25 13:17:57 UTC (rev 1473) @@ -0,0 +1,58 @@ +# -*- makefile -*- Time-stamp: <07/01/24 23:48:37 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_pem +dbg-shared: LDLIBS = -lboost_test_pemg +ifndef WITHOUT_STLPORT +stldbg-shared: LDLIBS = -lboost_test_pemstlg +endif + +check: all + @for p in ${PRGNAME} ${PRGNAMES}; do \ + s=`${OUTPUT_DIR}/$$p 2>&1 | grep 'errors detected'`; \ + if [ "$$s" = "" ]; then echo $$p; exit 1; fi \ + done + @for p in ${PRGNAME} ${PRGNAMES}; do \ + s=`${OUTPUT_DIR_DBG}/$$p 2>&1 | grep 'errors detected'`; \ + if [ "$$s" = "" ]; then echo $$p; exit 1; fi \ + done +ifndef WITHOUT_STLPORT + @for p in ${PRGNAME} ${PRGNAMES}; do \ + s=`${OUTPUT_DIR_STLDBG}/$$p 2>&1 | grep 'errors detected'`; \ + if [ "$$s" = "" ]; then echo $$p; exit 1; fi \ + done +endif + +check-release-shared: release-shared + @for p in ${PRGNAME} ${PRGNAMES}; do \ + s=`${OUTPUT_DIR}/$$p 2>&1 | grep 'errors detected'`; \ + if [ "$$s" = "" ]; then echo $$p; exit 1; fi \ + done + +check-dbg-shared: dbg-shared + @for p in ${PRGNAME} ${PRGNAMES}; do \ + s=`${OUTPUT_DIR_DBG}/$$p 2>&1 | grep 'errors detected'`; \ + if [ "$$s" = "" ]; then echo $$p; exit 1; fi \ + done + +ifndef WITHOUT_STLPORT +check-stldbg-shared: stldbg-shared + @for p in ${PRGNAME} ${PRGNAMES}; do \ + s=`${OUTPUT_DIR_STLDBG}/$$p 2>&1 | grep 'errors detected'`; \ + if [ "$$s" = "" ]; then echo $$p; exit 1; fi \ + done +endif + Added: trunk/complement/extern/custom/boost/libs/test/prg_exec_mon/test/Makefile.inc =================================================================== --- trunk/complement/extern/custom/boost/libs/test/prg_exec_mon/test/Makefile.inc (rev 0) +++ trunk/complement/extern/custom/boost/libs/test/prg_exec_mon/test/Makefile.inc 2007-01-25 13:17:57 UTC (rev 1473) @@ -0,0 +1,11 @@ +# -*- makefile -*- Time-stamp: <07/01/24 22:17:50 ptr> + +BOOST_FS_SRC = ${BOOST_INCLUDE_DIR}/libs/test/test +PRGNAME = prg_exec_fail1 +PRGNAMES = prg_exec_fail2 prg_exec_fail3 prg_exec_fail4 +SRC_CPP = ${BOOST_FS_SRC}/prg_exec_fail1.cpp +prg_exec_fail2_SRC_CPP = ${BOOST_FS_SRC}/prg_exec_fail2.cpp +prg_exec_fail3_SRC_CPP = ${BOOST_FS_SRC}/prg_exec_fail3.cpp +prg_exec_fail4_SRC_CPP = ${BOOST_FS_SRC}/prg_exec_fail4.cpp + + Modified: trunk/complement/extern/custom/boost/libs/test/test_exec_mon/Makefile =================================================================== --- trunk/complement/extern/custom/boost/libs/test/test_exec_mon/Makefile 2007-01-23 19:02:08 UTC (rev 1472) +++ trunk/complement/extern/custom/boost/libs/test/test_exec_mon/Makefile 2007-01-25 13:17:57 UTC (rev 1473) @@ -1,4 +1,4 @@ -# -*- makefile -*- Time-stamp: <06/06/27 02:26:25 ptr> +# -*- makefile -*- Time-stamp: <07/01/24 22:12:49 ptr> SRCROOT := ../../../../../../explore COMPILER_NAME := gcc @@ -14,3 +14,20 @@ 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 + +check: all-shared + $(MAKE) -C test check || exit 1 + +check-release: release-shared + $(MAKE) -C test check-release-shared || exit 1 + +check-dbg: dbg-shared + $(MAKE) -C test check-dbg-shared || exit 1 + +ifndef WITHOUT_STLPORT +check-stldbg: stldbg-shared + $(MAKE) -C test check-stldbg-shared || exit 1 +endif + +depend:: + $(MAKE) -C test depend Property changes on: trunk/complement/extern/custom/boost/libs/test/test_exec_mon/test ___________________________________________________________________ Name: svn:ignore + obj Added: trunk/complement/extern/custom/boost/libs/test/test_exec_mon/test/Makefile =================================================================== --- trunk/complement/extern/custom/boost/libs/test/test_exec_mon/test/Makefile (rev 0) +++ trunk/complement/extern/custom/boost/libs/test/test_exec_mon/test/Makefile 2007-01-25 13:17:57 UTC (rev 1473) @@ -0,0 +1,81 @@ +# -*- makefile -*- Time-stamp: <07/01/24 23:37:22 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_tem +dbg-shared: LDLIBS = -lboost_test_temg +ifndef WITHOUT_STLPORT +stldbg-shared: LDLIBS = -lboost_test_temstlg +endif + +check: all + @for p in ${PRGNAME} ${PRGNAMES}; do \ + if [ "$$p" != "boost_check_equal_str" ]; then \ + ${OUTPUT_DIR}/$$p >/dev/null 2>&1; \ + if [ $$? -eq 0 ]; then echo $$p; exit 1; fi \ + else \ + ${OUTPUT_DIR}/$$p; \ + fi \ + done + @for p in ${PRGNAME} ${PRGNAMES}; do \ + if [ "$$p" != "boost_check_equal_str" ]; then \ + ${OUTPUT_DIR_DBG}/$$p >/dev/null 2>&1; \ + if [ $$? -eq 0 ]; then echo $$p; exit 1; fi \ + else \ + ${OUTPUT_DIR_DBG}/$$p; \ + fi \ + done +ifndef WITHOUT_STLPORT + @for p in ${PRGNAME} ${PRGNAMES}; do \ + if [ "$$p" != "boost_check_equal_str" ]; then \ + ${OUTPUT_DIR_STLDBG}/$$p >/dev/null 2>&1; \ + if [ $$? -eq 0 ]; then echo $$p; exit 1; fi \ + else \ + ${OUTPUT_DIR_STLDBG}/$$p; \ + fi \ + done +endif + +check-release-shared: release-shared + @for p in ${PRGNAME} ${PRGNAMES}; do \ + if [ "$$p" != "boost_check_equal_str" ]; then \ + ${OUTPUT_DIR}/$$p >/dev/null 2>&1; \ + if [ $$? -eq 0 ]; then echo $$p; exit 1; fi; \ + else \ + ${OUTPUT_DIR}/$$p; \ + fi \ + done + +check-dbg-shared: dbg-shared + @for p in ${PRGNAME} ${PRGNAMES}; do \ + if [ "$$p" != "boost_check_equal_str" ]; then \ + ${OUTPUT_DIR_DBG}/$$p >/dev/null 2>&1; \ + if [ $$? -eq 0 ]; then echo $$p; exit 1; fi \ + else \ + ${OUTPUT_DIR_DBG}/$$p; \ + fi \ + done + +ifndef WITHOUT_STLPORT +check-stldbg-shared: stldbg-shared + @for p in ${PRGNAME} ${PRGNAMES}; do \ + if [ "$$p" != "boost_check_equal_str" ]; then \ + ${OUTPUT_DIR_STLDBG}/$$p >/dev/null 2>&1; \ + if [ $$? -eq 0 ]; then echo $$p; exit 1; fi \ + else \ + ${OUTPUT_DIR_STLDBG}/$$p; \ + fi \ + done +endif Added: trunk/complement/extern/custom/boost/libs/test/test_exec_mon/test/Makefile.inc =================================================================== --- trunk/complement/extern/custom/boost/libs/test/test_exec_mon/test/Makefile.inc (rev 0) +++ trunk/complement/extern/custom/boost/libs/test/test_exec_mon/test/Makefile.inc 2007-01-25 13:17:57 UTC (rev 1473) @@ -0,0 +1,11 @@ +# -*- makefile -*- Time-stamp: <07/01/24 23:23:35 ptr> + +BOOST_FS_SRC = ${BOOST_INCLUDE_DIR}/libs/test/test +PRGNAME = test_exec_fail1 +PRGNAMES = test_exec_fail2 test_exec_fail3 test_exec_fail4 \ + boost_check_equal_str +SRC_CPP = ${BOOST_FS_SRC}/test_exec_fail1.cpp +test_exec_fail2_SRC_CPP = ${BOOST_FS_SRC}/test_exec_fail2.cpp +test_exec_fail3_SRC_CPP = ${BOOST_FS_SRC}/test_exec_fail3.cpp +test_exec_fail4_SRC_CPP = ${BOOST_FS_SRC}/test_exec_fail4.cpp +boost_check_equal_str_SRC_CPP = ${BOOST_FS_SRC}/boost_check_equal_str.cpp Modified: trunk/complement/extern/custom/boost/libs/test/unit_test_framework/Makefile =================================================================== --- trunk/complement/extern/custom/boost/libs/test/unit_test_framework/Makefile 2007-01-23 19:02:08 UTC (rev 1472) +++ trunk/complement/extern/custom/boost/libs/test/unit_test_framework/Makefile 2007-01-25 13:17:57 UTC (rev 1473) @@ -1,4 +1,4 @@ -# -*- makefile -*- Time-stamp: <06/06/27 02:26:25 ptr> +# -*- makefile -*- Time-stamp: <07/01/24 10:41:48 ptr> SRCROOT := ../../../../../../explore COMPILER_NAME := gcc @@ -14,3 +14,20 @@ 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 + +check: all-shared + $(MAKE) -C test check || exit 1 + +check-release: release-shared + $(MAKE) -C test check-release-shared || exit 1 + +check-dbg: dbg-shared + $(MAKE) -C test check-dbg-shared || exit 1 + +ifndef WITHOUT_STLPORT +check-stldbg: stldbg-shared + $(MAKE) -C test check-stldbg-shared || exit 1 +endif + +depend:: + $(MAKE) -C test depend This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |