diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 3b326fb..7e85ff6 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -9,8 +9,8 @@ import testing ; import set ; project : requirements - /boost/core//boost_core - /boost/lexical_cast//boost_lexical_cast + /boost/core//boost_core + /boost/lexical_cast//boost_lexical_cast ; # The special requirement is not ported yet. @@ -27,7 +27,7 @@ project : requirements # [ replace-properties $(properties) : no ] ; # } # } -# +# # return $(properties) ; #} @@ -36,8 +36,8 @@ rule typeof-test ( source ) return [ compile $(source) : BOOST_TYPEOF_NATIVE : $(source:B)_native ] [ compile $(source) : BOOST_TYPEOF_EMULATION : - $(source:B)_emulation ] - ; + $(source:B)_emulation ] + ; } rule all-tests ( ) @@ -51,12 +51,12 @@ rule all-tests ( ) all += [ run odr1.cpp odr2.cpp : : : BOOST_TYPEOF_NATIVE : odr_native ] ; all += [ run odr1.cpp odr2.cpp : : : BOOST_TYPEOF_EMULATION : - odr_emulation ] ; - all += [ run odr_no_uns1.cpp odr_no_uns2.cpp : : : BOOST_TYPEOF_EMULATION : - odr_no_uns ] ; - return $(all) ; + odr_emulation ] ; + all += [ run odr_no_uns1.cpp odr_no_uns2.cpp : : : BOOST_TYPEOF_EMULATION : + odr_no_uns ] ; + return $(all) ; } -test-suite "typeof" +test-suite "typeof" : [ all-tests ] ;