mirror of
https://github.com/boostorg/utility.git
synced 2026-07-08 17:40:49 +02:00
127b8940c1
[SVN r1731]
23 lines
670 B
Plaintext
23 lines
670 B
Plaintext
# Boost Utility Library test Jamfile
|
|
|
|
subproject libs/utility/test ;
|
|
|
|
# bring in rules for testing
|
|
import testing ;
|
|
|
|
{
|
|
test-suite "utility"
|
|
: [ run lexicographic_test.cpp ]
|
|
[ run lex_performance_test.cpp ]
|
|
[ run named_params_test.cpp ]
|
|
[ run enable_if_constructors.cpp ]
|
|
[ run enable_if_member_templates.cpp ]
|
|
[ run enable_if_dummy_arg_disambiguation.cpp ]
|
|
[ run enable_if_namespace_disambiguation.cpp ]
|
|
[ run enable_if_lazy.cpp ]
|
|
[ run enable_if_no_disambiguation.cpp ]
|
|
[ run enable_if_lazy_test.cpp ]
|
|
[ run enable_if_partial_specializations.cpp ]
|
|
;
|
|
}
|