From 4370fd31cbb6bd5021c09ee7b12d6643ad67ae17 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Wed, 1 Feb 2006 15:52:05 +0000 Subject: [PATCH] Update Jamfile.v2 [SVN r32497] --- test/Jamfile.v2 | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index bc222a5..6aafb70 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -1,5 +1,6 @@ # Boost Typeof Library test Jamfile +import set ; # The special requirement is not ported yet. # @@ -31,10 +32,14 @@ rule typeof-test ( source ) rule all-tests ( ) { local all ; - for local t in [ glob *.cpp ] + for local t in [ set.difference [ glob *.cpp ] : odr1.cpp odr2.cpp ] { all += [ typeof-test $(t) ] ; } + all += [ run odr1.cpp odr2.cpp : : : BOOST_TYPEOF_NATIVE : + odr_native ] ; + all += [ run odr1.cpp odr2.cpp : : : BOOST_TYPEOF_COMPIANT : + odr_emulation ] ; return $(all) ; }