Clean up Jamfile; fix for no koenig lookup.

[SVN r2154]
This commit is contained in:
Dave Abrahams
2004-04-20 16:18:49 +00:00
parent e4b9ac6a30
commit 824e94e2f6
2 changed files with 6 additions and 10 deletions

View File

@@ -6,18 +6,13 @@ subproject libs/utility/test ;
import testing ; import testing ;
{ {
test-suite "utility" test-suite "lexicographic"
: [ run lexicographic_test.cpp ] : [ run lexicographic_test.cpp ]
[ run lex_performance_test.cpp ] [ run lex_performance_test.cpp ]
[ run named_params_test.cpp ] ;
test-suite "named_params"
: [ run named_params_test.cpp ]
[ run named_params_sfinae.cpp ] [ run named_params_sfinae.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 ]
; ;
} }

View File

@@ -141,6 +141,7 @@ namespace test
int main() int main()
{ {
using test::f; using test::f;
using test::f_list;
using test::name; using test::name;
using test::value; using test::value;
using test::index; using test::index;