mirror of
https://github.com/boostorg/algorithm.git
synced 2025-07-30 20:47:15 +02:00
fixing jamfile to work with regression tests
[SVN r22440]
This commit is contained in:
@ -10,59 +10,62 @@
|
|||||||
subproject libs/algorithm/string/test ;
|
subproject libs/algorithm/string/test ;
|
||||||
|
|
||||||
# bring in rules for testing
|
# bring in rules for testing
|
||||||
SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
|
import testing ;
|
||||||
include testing.jam ;
|
|
||||||
|
|
||||||
test-suite "string_algo"
|
# Make tests run by default.
|
||||||
: [ run
|
DEPENDS all : test ;
|
||||||
container_test.cpp
|
|
||||||
: :
|
|
||||||
:
|
|
||||||
: container
|
|
||||||
]
|
|
||||||
: [ run
|
|
||||||
trim_test.cpp
|
|
||||||
: :
|
|
||||||
:
|
|
||||||
: trim
|
|
||||||
]
|
|
||||||
: [ run
|
|
||||||
conv_test.cpp
|
|
||||||
: :
|
|
||||||
:
|
|
||||||
: conv
|
|
||||||
]
|
|
||||||
: [ run
|
|
||||||
predicate_test.cpp
|
|
||||||
: :
|
|
||||||
:
|
|
||||||
: predicate
|
|
||||||
]
|
|
||||||
: [ run
|
|
||||||
find_test.cpp
|
|
||||||
: :
|
|
||||||
:
|
|
||||||
: find
|
|
||||||
]
|
|
||||||
: [ run
|
|
||||||
split_test.cpp
|
|
||||||
: :
|
|
||||||
:
|
|
||||||
: split
|
|
||||||
]
|
|
||||||
: [ run
|
|
||||||
replace_test.cpp
|
|
||||||
: :
|
|
||||||
:
|
|
||||||
: replace
|
|
||||||
]
|
|
||||||
: [ run
|
|
||||||
regex_test.cpp
|
|
||||||
<lib>../../../regex/build/boost_regex
|
|
||||||
: :
|
|
||||||
:
|
|
||||||
: regex
|
|
||||||
]
|
|
||||||
|
|
||||||
;
|
{
|
||||||
|
test-suite string_algo
|
||||||
|
: [ run
|
||||||
|
container_test.cpp
|
||||||
|
: :
|
||||||
|
:
|
||||||
|
: container
|
||||||
|
]
|
||||||
|
: [ run
|
||||||
|
trim_test.cpp
|
||||||
|
: :
|
||||||
|
:
|
||||||
|
: trim
|
||||||
|
]
|
||||||
|
: [ run
|
||||||
|
conv_test.cpp
|
||||||
|
: :
|
||||||
|
:
|
||||||
|
: conv
|
||||||
|
]
|
||||||
|
: [ run
|
||||||
|
predicate_test.cpp
|
||||||
|
: :
|
||||||
|
:
|
||||||
|
: predicate
|
||||||
|
]
|
||||||
|
: [ run
|
||||||
|
find_test.cpp
|
||||||
|
: :
|
||||||
|
:
|
||||||
|
: find
|
||||||
|
]
|
||||||
|
: [ run
|
||||||
|
split_test.cpp
|
||||||
|
: :
|
||||||
|
:
|
||||||
|
: split
|
||||||
|
]
|
||||||
|
: [ run
|
||||||
|
replace_test.cpp
|
||||||
|
: :
|
||||||
|
:
|
||||||
|
: replace
|
||||||
|
]
|
||||||
|
: [ run
|
||||||
|
regex_test.cpp
|
||||||
|
<lib>../../../regex/build/boost_regex
|
||||||
|
: :
|
||||||
|
:
|
||||||
|
: regex
|
||||||
|
]
|
||||||
|
;
|
||||||
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user