Rename test, add to test/Jamfile

This commit is contained in:
Peter Dimov
2018-10-23 03:22:54 +03:00
parent 5f50a7a50a
commit a5d878092c
3 changed files with 2 additions and 18 deletions

View File

@ -36,3 +36,5 @@ run nothrow_swap.cpp ;
run rvalues_test.cpp ;
compile function_typeof_test.cpp ;
run result_arg_types_test.cpp ;
run boost_test_ubsan.cpp /boost/test//boost_unit_test_framework ;

View File

@ -1,18 +0,0 @@
import testing ;
variant ubsan_undefined
: release
:
<cxxflags>"-std=c++11 -Wno-unused -fstrict-aliasing -fno-omit-frame-pointer -fsanitize=undefined -fno-sanitize-recover=undefined"
<linkflags>"-fsanitize=undefined"
<debug-symbols>on
<define>BOOST_USE_ASAN=1
;
project
: requirements
<include>$(BOOST_ROOT)
<library>/boost/test//boost_unit_test_framework
;
run test.cpp ;