mirror of
https://github.com/boostorg/utility.git
synced 2026-01-28 07:42:15 +00:00
23 lines
454 B
Plaintext
23 lines
454 B
Plaintext
# Boost Utility Library test Jamfile
|
|
|
|
subproject libs/utility/test ;
|
|
|
|
# bring in rules for testing
|
|
import testing ;
|
|
|
|
{
|
|
test-suite "lexicographic"
|
|
: [ run lexicographic_test.cpp ]
|
|
[ run lex_performance_test.cpp ]
|
|
;
|
|
|
|
test-suite "named_params"
|
|
: [ run named_params_test.cpp ]
|
|
[ run named_params_sfinae.cpp ]
|
|
;
|
|
|
|
test-suite "result_check"
|
|
: [ compile result_check_test.cpp ]
|
|
;
|
|
}
|