27 lines
1.1 KiB
Python
27 lines
1.1 KiB
Python
## message_buffer unit tests
|
|
##
|
|
|
|
Import('env')
|
|
Import('env_cpp11')
|
|
Import('boostlibs')
|
|
Import('platform_libs')
|
|
Import('polyfill_libs')
|
|
|
|
env = env.Clone ()
|
|
env_cpp11 = env_cpp11.Clone ()
|
|
|
|
BOOST_LIBS = boostlibs(['unit_test_framework','system'],env) + [platform_libs]
|
|
|
|
objs = env.Object('message_boost.o', ["message.cpp"], LIBS = BOOST_LIBS)
|
|
objs += env.Object('alloc_boost.o', ["alloc.cpp"], LIBS = BOOST_LIBS)
|
|
prgs = env.Program('test_message_boost', ["message_boost.o"], LIBS = BOOST_LIBS)
|
|
prgs += env.Program('test_alloc_boost', ["alloc_boost.o"], LIBS = BOOST_LIBS)
|
|
|
|
if env_cpp11.has_key('WSPP_CPP11_ENABLED'):
|
|
BOOST_LIBS_CPP11 = boostlibs(['unit_test_framework'],env_cpp11) + [platform_libs] + [polyfill_libs]
|
|
objs += env_cpp11.Object('message_stl.o', ["message.cpp"], LIBS = BOOST_LIBS_CPP11)
|
|
objs += env_cpp11.Object('alloc_stl.o', ["alloc.cpp"], LIBS = BOOST_LIBS_CPP11)
|
|
prgs += env_cpp11.Program('test_message_stl', ["message_stl.o"], LIBS = BOOST_LIBS_CPP11)
|
|
prgs += env_cpp11.Program('test_alloc_stl', ["alloc_stl.o"], LIBS = BOOST_LIBS_CPP11)
|
|
|
|
Return('prgs')
|