Files
typeof/test/Jamfile
Arkadiy Vertleyb 2bc33ea912 added template tests
[SVN r30885]
2005-09-09 00:15:59 +00:00

22 lines
799 B
Plaintext
Executable File

# Boost Typeof Library test Jamfile
subproject libs/typeof/test ;
# bring in rules for testing
import testing ;
test-suite "typeof"
:
[ compile type.cpp : <define>BOOST_TYPEOF_NATIVE : type_native ]
[ compile type.cpp : <define>BOOST_TYPEOF_COMPLIANT : type_emulation ]
[ compile template_type.cpp : <define>BOOST_TYPEOF_NATIVE : template_type_native ]
[ compile template_type.cpp : <define>BOOST_TYPEOF_COMPLIANT : template_type_emulation ]
[ compile template_int.cpp : <define>BOOST_TYPEOF_NATIVE : template_int_native ]
[ compile template_int.cpp : <define>BOOST_TYPEOF_COMPLIANT : template_int_emulation ]
[ compile template_tpl.cpp : <define>BOOST_TYPEOF_NATIVE : template_tpl_native ]
[ compile template_tpl.cpp : <define>BOOST_TYPEOF_COMPLIANT : template_tpl_emulation ]
;