mirror of
https://github.com/boostorg/typeof.git
synced 2025-07-29 20:37:28 +02:00
*** empty log message ***
[SVN r34402]
This commit is contained in:
@ -24,7 +24,7 @@ rule typeof-test ( source )
|
||||
{
|
||||
return [ compile $(source) : <define>BOOST_TYPEOF_NATIVE :
|
||||
$(source:B)_native ]
|
||||
[ compile $(source) : <define>BOOST_TYPEOF_COMPLIANT :
|
||||
[ compile $(source) : <define>BOOST_TYPEOF_EMULATION :
|
||||
$(source:B)_emulation ]
|
||||
;
|
||||
}
|
||||
@ -32,14 +32,17 @@ rule typeof-test ( source )
|
||||
rule all-tests ( )
|
||||
{
|
||||
local all ;
|
||||
for local t in [ set.difference [ glob *.cpp ] : odr1.cpp odr2.cpp ]
|
||||
# for local t in [ set.difference [ glob *.cpp ] : odr1.cpp odr2.cpp ]
|
||||
for local t in [ set.difference [ glob *.cpp ] : [ glob odr*.cpp ] ]
|
||||
{
|
||||
all += [ typeof-test $(t) ] ;
|
||||
}
|
||||
all += [ run odr1.cpp odr2.cpp : : : <define>BOOST_TYPEOF_NATIVE :
|
||||
odr_native ] ;
|
||||
all += [ run odr1.cpp odr2.cpp : : : <define>BOOST_TYPEOF_COMPLIANT :
|
||||
all += [ run odr1.cpp odr2.cpp : : : <define>BOOST_TYPEOF_EMULATION :
|
||||
odr_emulation ] ;
|
||||
all += [ run odr_no_uns1.cpp odr_no_uns2.cpp : : : <define>BOOST_TYPEOF_EMULATION :
|
||||
odr_no_uns ] ;
|
||||
return $(all) ;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user