2003-11-13 12:46:27 +00:00
|
|
|
# copyright John Maddock 2003
|
|
|
|
|
|
|
|
#
|
|
|
|
# This Jamfile tests the ability of some Windows compilers
|
|
|
|
# to automatically link to the right lib file,
|
|
|
|
# it is not generally applicable.
|
|
|
|
#
|
|
|
|
|
2005-06-11 14:21:21 +00:00
|
|
|
R_SOURCE =
|
|
|
|
basic_tests.cpp
|
|
|
|
main.cpp
|
|
|
|
test_alt.cpp
|
|
|
|
test_anchors.cpp
|
|
|
|
test_asserts.cpp
|
|
|
|
test_backrefs.cpp
|
|
|
|
test_deprecated.cpp
|
|
|
|
test_emacs.cpp
|
|
|
|
test_escapes.cpp
|
|
|
|
test_grep.cpp
|
|
|
|
test_locale.cpp
|
|
|
|
test_mfc.cpp
|
|
|
|
test_non_greedy_repeats.cpp
|
|
|
|
test_perl_ex.cpp
|
|
|
|
test_replace.cpp
|
|
|
|
test_sets.cpp
|
|
|
|
test_simple_repeats.cpp
|
|
|
|
test_tricky_cases.cpp
|
|
|
|
test_icu.cpp
|
|
|
|
test_unicode.cpp
|
|
|
|
test_overloads.cpp
|
|
|
|
test_operators.cpp
|
|
|
|
;
|
|
|
|
|
|
|
|
|
2003-11-13 12:46:27 +00:00
|
|
|
subproject libs/regex/test/auto-link-test ;
|
|
|
|
|
|
|
|
# bring in the rules for testing
|
|
|
|
import testing ;
|
|
|
|
|
|
|
|
run
|
2003-11-30 13:06:58 +00:00
|
|
|
# sources
|
|
|
|
<template>../../build/regex-options
|
2005-06-11 14:21:21 +00:00
|
|
|
<template>../../build/regex-test-options
|
|
|
|
../regress/$(R_SOURCE)
|
2003-11-13 12:46:27 +00:00
|
|
|
:
|
2003-11-30 13:06:58 +00:00
|
|
|
: # input files
|
|
|
|
../regress/tests.txt
|
|
|
|
: # requirements
|
|
|
|
<library-path>../../../../stage/lib
|
|
|
|
<define>BOOST_LIB_DIAGNOSTIC=1
|
|
|
|
: # program name
|
|
|
|
regex_regress
|
2003-11-13 12:46:27 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
# and now the dll versions:
|
|
|
|
|
|
|
|
run
|
2003-11-30 13:06:58 +00:00
|
|
|
# sources
|
|
|
|
<template>../../build/regex-options
|
2005-06-11 14:21:21 +00:00
|
|
|
<template>../../build/regex-test-options
|
|
|
|
../regress/$(R_SOURCE)
|
2003-11-13 12:46:27 +00:00
|
|
|
:
|
2003-11-30 13:06:58 +00:00
|
|
|
: # input files
|
|
|
|
../regress/tests.txt
|
|
|
|
: # requirements
|
|
|
|
<library-path>../../../../stage/lib
|
|
|
|
<define>BOOST_ALL_DYN_LINK=1
|
|
|
|
<runtime-link>dynamic
|
|
|
|
<define>BOOST_LIB_DIAGNOSTIC=1
|
|
|
|
: # program name
|
|
|
|
regex_regress_dll
|
2003-11-13 12:46:27 +00:00
|
|
|
;
|
|
|
|
|
2005-06-11 14:21:21 +00:00
|
|
|
|
|
|
|
|
2003-11-13 12:46:27 +00:00
|
|
|
|
|
|
|
|