From 824e94e2f62af286aefd56d1e2e8cdff0b507aa8 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Tue, 20 Apr 2004 16:18:49 +0000 Subject: [PATCH] Clean up Jamfile; fix for no koenig lookup. [SVN r2154] --- test/Jamfile | 15 +++++---------- test/named_params_test.cpp | 1 + 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/test/Jamfile b/test/Jamfile index 57a7d74..d98c500 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -6,18 +6,13 @@ subproject libs/utility/test ; import testing ; { - test-suite "utility" + test-suite "lexicographic" : [ run lexicographic_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 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 ] ; } diff --git a/test/named_params_test.cpp b/test/named_params_test.cpp index 7e718f5..22b8988 100755 --- a/test/named_params_test.cpp +++ b/test/named_params_test.cpp @@ -141,6 +141,7 @@ namespace test int main() { using test::f; + using test::f_list; using test::name; using test::value; using test::index;