[12] | 1 | # copyright John Maddock 2003 |
---|
| 2 | |
---|
| 3 | project |
---|
| 4 | : requirements <threading>multi <link>shared:<define>BOOST_REGEX_DYN_LINK=1 |
---|
| 5 | ; |
---|
| 6 | |
---|
| 7 | |
---|
| 8 | rule regex-test-run ( sources + : input * ) |
---|
| 9 | { |
---|
| 10 | return [ |
---|
| 11 | run |
---|
| 12 | # sources |
---|
| 13 | $(sources) |
---|
| 14 | # dependencies |
---|
| 15 | ../build//boost_regex |
---|
| 16 | : # additional args |
---|
| 17 | $(input) |
---|
| 18 | : # test-files |
---|
| 19 | : # requirements |
---|
| 20 | : # test name |
---|
| 21 | ] ; |
---|
| 22 | } |
---|
| 23 | |
---|
| 24 | test-suite regex-examples : |
---|
| 25 | |
---|
| 26 | [ regex-test-run timer/regex_timer.cpp : $(BOOST_ROOT)/libs/regex/example/timer/input_script.txt ] |
---|
| 27 | [ regex-test-run grep/grep.cpp ../../program_options/build//boost_program_options : -n -b $(BOOST_ROOT)/boost/regex.hpp $(BOOST_ROOT)/boost/type_traits.hpp ] |
---|
| 28 | [ regex-test-run snippets/credit_card_example.cpp ] |
---|
| 29 | [ regex-test-run snippets/mfc_example.cpp ] |
---|
| 30 | [ regex-test-run snippets/icu_example.cpp ] |
---|
| 31 | [ regex-test-run snippets/partial_regex_grep.cpp : $(BOOST_ROOT)/libs/regex/index.htm ] |
---|
| 32 | [ regex-test-run snippets/partial_regex_match.cpp : 1234-5678-8765-4 ] |
---|
| 33 | [ regex-test-run snippets/regex_grep_example_1.cpp : $(BOOST_ROOT)/boost/rational.hpp ] |
---|
| 34 | [ regex-test-run snippets/regex_grep_example_2.cpp : $(BOOST_ROOT)/boost/rational.hpp ] |
---|
| 35 | [ regex-test-run snippets/regex_grep_example_3.cpp : $(BOOST_ROOT)/boost/rational.hpp ] |
---|
| 36 | [ regex-test-run snippets/regex_grep_example_4.cpp : $(BOOST_ROOT)/boost/rational.hpp ] |
---|
| 37 | [ regex-test-run snippets/regex_match_example.cpp : -auto ] |
---|
| 38 | [ regex-test-run snippets/regex_merge_example.cpp : $(BOOST_ROOT)/boost/rational.hpp ] |
---|
| 39 | [ regex-test-run snippets/regex_replace_example.cpp : $(BOOST_ROOT)/boost/rational.hpp ] |
---|
| 40 | [ regex-test-run snippets/regex_search_example.cpp : $(BOOST_ROOT)/boost/rational.hpp ] |
---|
| 41 | [ regex-test-run snippets/regex_split_example_1.cpp : -auto ] |
---|
| 42 | [ regex-test-run snippets/regex_split_example_2.cpp : $(BOOST_ROOT)/libs/regex/doc/index.html ] |
---|
| 43 | [ regex-test-run snippets/regex_token_iterator_eg_1.cpp : -auto ] |
---|
| 44 | [ regex-test-run snippets/regex_token_iterator_eg_2.cpp : $(BOOST_ROOT)/libs/regex/doc/index.html ] |
---|
| 45 | [ regex-test-run snippets/regex_iterator_example.cpp : $(BOOST_ROOT)/boost/rational.hpp ] |
---|
| 46 | [ run snippets/captures_example.cpp |
---|
| 47 | ../test/captures//boost_regex_extra |
---|
| 48 | : : : <threading>multi <define>BOOST_REGEX_MATCH_EXTRA=1 ] |
---|
| 49 | |
---|
| 50 | ; |
---|
| 51 | |
---|
| 52 | |
---|
| 53 | |
---|
| 54 | |
---|
| 55 | |
---|
| 56 | |
---|