Fixed missing concept_check test -- Jamfile wasn't subincluded

[SVN r30863]
This commit is contained in:
Dave Abrahams
2005-09-07 21:49:08 +00:00
parent 842160c38c
commit 4a7d05206e

12
Jamfile
View File

@ -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 ]
;