From 4a7d05206e03f85a48924fbf02cd3019876d877f Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Wed, 7 Sep 2005 21:49:08 +0000 Subject: [PATCH] Fixed missing concept_check test -- Jamfile wasn't subincluded [SVN r30863] --- Jamfile | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Jamfile b/Jamfile index 0a332e4..7cd68ec 100644 --- a/Jamfile +++ b/Jamfile @@ -2,8 +2,10 @@ subproject libs/concept_check ; import testing ; -compile stl_concept_covering.cpp ; -compile concept_check_test.cpp ; -compile class_concept_check_test.cpp ; -link-fail concept_check_fail_expected.cpp ; -link-fail class_concept_fail_expected.cpp ; +test-suite concept_check + : [ compile stl_concept_covering.cpp ] + [ compile concept_check_test.cpp ] + [ compile class_concept_check_test.cpp ] + [ link-fail concept_check_fail_expected.cpp ] + [ link-fail class_concept_fail_expected.cpp ] + ;