mirror of
https://github.com/boostorg/xpressive.git
synced 2026-02-24 04:32:09 +00:00
Simplify test/Jamfile.v2
This commit is contained in:
114
test/Jamfile.v2
114
test/Jamfile.v2
@@ -19,67 +19,65 @@ project
|
||||
<toolset>msvc-11.0:<define>_SCL_SECURE_NO_WARNINGS
|
||||
<toolset>gcc:<cxxflags>-ftemplate-depth-1024
|
||||
<toolset>darwin:<cxxflags>-ftemplate-depth-1024
|
||||
# <toolset>gcc:<cxxflags>-W
|
||||
# <toolset>gcc:<cxxflags>-Wall
|
||||
# <toolset>msvc:<cxxflags>-W4
|
||||
<toolset>msvc,<stdlib>stlport:<define>_STLP_EXPOSE_GLOBALS_IMPLEMENTATION
|
||||
<library>/boost/test//boost_unit_test_framework
|
||||
<link>static
|
||||
;
|
||||
|
||||
test-suite "xpressive"
|
||||
: [ run regress.cpp : : regress.txt : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run regress_u.cpp : : regress.txt : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run c_traits.cpp : : regress.txt : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run c_traits_u.cpp : : regress.txt : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run test1.cpp ]
|
||||
[ run test2.cpp ]
|
||||
[ run test3.cpp ]
|
||||
[ run test4.cpp ]
|
||||
[ run test5.cpp ]
|
||||
[ run test6.cpp ]
|
||||
[ run test7.cpp ]
|
||||
[ run test8.cpp ]
|
||||
[ run test9.cpp ]
|
||||
[ run test10.cpp ]
|
||||
[ run test11.cpp ]
|
||||
[ run test1u.cpp ]
|
||||
[ run test2u.cpp ]
|
||||
[ run test3u.cpp ]
|
||||
[ run test4u.cpp ]
|
||||
[ run test5u.cpp ]
|
||||
[ run test6u.cpp ]
|
||||
[ run test7u.cpp ]
|
||||
[ run test8u.cpp ]
|
||||
[ run test9u.cpp ]
|
||||
[ run test10u.cpp ]
|
||||
[ run test11u.cpp ]
|
||||
[ run misc1.cpp ]
|
||||
[ run misc2.cpp ]
|
||||
[ run test_format.cpp ]
|
||||
[ run test_cycles.cpp ]
|
||||
[ run test_non_char.cpp ]
|
||||
[ run test_static.cpp ]
|
||||
[ run test_actions.cpp ]
|
||||
[ run test_assert.cpp ]
|
||||
[ run test_assert_with_placeholder.cpp ]
|
||||
[ run test_symbols.cpp ]
|
||||
[ run test_dynamic.cpp ]
|
||||
[ run test_dynamic_grammar.cpp ]
|
||||
[ run test_skip.cpp ]
|
||||
[ link multiple_defs1.cpp multiple_defs2.cpp : : multiple_defs ]
|
||||
[ compile test_basic_regex.cpp ]
|
||||
[ compile test_match_results.cpp ]
|
||||
[ compile test_regex_algorithms.cpp ]
|
||||
[ compile test_regex_compiler.cpp ]
|
||||
[ compile test_regex_constants.cpp ]
|
||||
[ compile test_regex_error.cpp ]
|
||||
[ compile test_regex_iterator.cpp ]
|
||||
[ compile test_regex_primitives.cpp ]
|
||||
[ compile test_regex_token_iterator.cpp ]
|
||||
[ compile test_regex_traits.cpp ]
|
||||
[ compile test_sub_match.cpp ]
|
||||
# [ compile test_typeof.cpp ]
|
||||
# [ compile test_typeof2.cpp ]
|
||||
;
|
||||
run regress.cpp : : regress.txt : <toolset>msvc:<cxxflags>/bigobj ;
|
||||
run regress_u.cpp : : regress.txt : <toolset>msvc:<cxxflags>/bigobj ;
|
||||
run c_traits.cpp : : regress.txt : <toolset>msvc:<cxxflags>/bigobj ;
|
||||
run c_traits_u.cpp : : regress.txt : <toolset>msvc:<cxxflags>/bigobj ;
|
||||
run test1.cpp ;
|
||||
run test2.cpp ;
|
||||
run test3.cpp ;
|
||||
run test4.cpp ;
|
||||
run test5.cpp ;
|
||||
run test6.cpp ;
|
||||
run test7.cpp ;
|
||||
run test8.cpp ;
|
||||
run test9.cpp ;
|
||||
run test10.cpp ;
|
||||
run test11.cpp ;
|
||||
run test1u.cpp ;
|
||||
run test2u.cpp ;
|
||||
run test3u.cpp ;
|
||||
run test4u.cpp ;
|
||||
run test5u.cpp ;
|
||||
run test6u.cpp ;
|
||||
run test7u.cpp ;
|
||||
run test8u.cpp ;
|
||||
run test9u.cpp ;
|
||||
run test10u.cpp ;
|
||||
run test11u.cpp ;
|
||||
run misc1.cpp ;
|
||||
run misc2.cpp ;
|
||||
run test_format.cpp ;
|
||||
run test_cycles.cpp ;
|
||||
run test_non_char.cpp ;
|
||||
run test_static.cpp ;
|
||||
run test_actions.cpp ;
|
||||
run test_assert.cpp ;
|
||||
run test_assert_with_placeholder.cpp ;
|
||||
run test_symbols.cpp ;
|
||||
run test_dynamic.cpp ;
|
||||
run test_dynamic_grammar.cpp ;
|
||||
run test_skip.cpp ;
|
||||
|
||||
link multiple_defs1.cpp multiple_defs2.cpp
|
||||
: : multiple_defs ;
|
||||
|
||||
compile test_basic_regex.cpp ;
|
||||
compile test_match_results.cpp ;
|
||||
compile test_regex_algorithms.cpp ;
|
||||
compile test_regex_compiler.cpp ;
|
||||
compile test_regex_constants.cpp ;
|
||||
compile test_regex_error.cpp ;
|
||||
compile test_regex_iterator.cpp ;
|
||||
compile test_regex_primitives.cpp ;
|
||||
compile test_regex_token_iterator.cpp ;
|
||||
compile test_regex_traits.cpp ;
|
||||
compile test_sub_match.cpp ;
|
||||
|
||||
# compile test_typeof.cpp ;
|
||||
# compile test_typeof2.cpp ;
|
||||
|
||||
Reference in New Issue
Block a user