mirror of
https://github.com/boostorg/regex.git
synced 2025-07-21 08:12:37 +02:00
regex test Jamfile updates so that some tests will actually run warning suppression for condition.cpp unit-test rule now accepts input files updated metrowerks and borland to properly set up path for running tests ---------------------------------------------------------------------- Modified Files: boost/config/compiler/metrowerks.hpp libs/python/src/gen_function.py libs/regex/test/Jamfile Tag: thread-initial libs/thread/src/condition.cpp No tag tools/build/boost-base.jam tools/build/borland-tools.jam tools/build/metrowerks-tools.jam ---------------------------------------------------------------------- [SVN r11853]
80 lines
1.6 KiB
Plaintext
80 lines
1.6 KiB
Plaintext
subproject libs/regex/test ;
|
|
|
|
local test-dir = $(BOOST_ROOT)$(SLASH)libs$(SLASH)regex$(SLASH)test$(SLASH)regress$(SLASH) ;
|
|
|
|
local test-files = $(test-dir)tests.txt
|
|
# dwa -- not sure if this is generally applicable
|
|
# $(test-dir)test1252.txt
|
|
;
|
|
|
|
unit-test regress : regress/parse.cpp regress/regress.cpp regress/tests.cpp
|
|
<lib>../build/libboost_regex$(SUFLIB)
|
|
:
|
|
<include>../../../
|
|
<define>BOOST_REGEX_NO_LIB=1
|
|
:
|
|
debug
|
|
:
|
|
$(test-files)
|
|
;
|
|
|
|
unit-test wregress : regress/parse.cpp regress/regress.cpp regress/tests.cpp
|
|
<lib>../build/libboost_regex$(SUFLIB)
|
|
:
|
|
<include>../../../
|
|
<define>BOOST_REGEX_NO_LIB=1
|
|
<define>TEST_UNICODE=1
|
|
:
|
|
debug
|
|
:
|
|
$(test-files)
|
|
;
|
|
|
|
unit-test posix_api_check_c : c_compiler_checks/posix_api_check.c
|
|
<lib>../build/libboost_regex$(SUFLIB)
|
|
:
|
|
<include>../../../
|
|
<define>BOOST_REGEX_NO_LIB=1
|
|
:
|
|
debug
|
|
:
|
|
$(test-files)
|
|
;
|
|
|
|
unit-test wide_posix_api_check_c : c_compiler_checks/wide_posix_api_check.c
|
|
<lib>../build/libboost_regex$(SUFLIB)
|
|
:
|
|
<include>../../../
|
|
<define>BOOST_REGEX_NO_LIB=1
|
|
:
|
|
debug
|
|
:
|
|
$(test-files)
|
|
;
|
|
|
|
unit-test posix_api_check : c_compiler_checks/posix_api_check.cpp
|
|
<lib>../build/libboost_regex$(SUFLIB)
|
|
:
|
|
<include>../../../
|
|
<define>BOOST_REGEX_NO_LIB=1
|
|
:
|
|
debug
|
|
:
|
|
$(test-files)
|
|
;
|
|
|
|
unit-test wide_posix_api_check : c_compiler_checks/wide_posix_api_check.cpp
|
|
<lib>../build/libboost_regex$(SUFLIB)
|
|
:
|
|
<include>../../../
|
|
<define>BOOST_REGEX_NO_LIB=1
|
|
:
|
|
debug
|
|
:
|
|
$(test-files)
|
|
;
|
|
|
|
|
|
|
|
|