Add minimal test for UBSan failures

Reproduced with clang 5.0 and 6.0 on Linux using Boost super-project at
master as well as Function at develop:

cd libs/function/test/ubsan_undefined_bug
b2 toolset=clang variant=ubsan_undefined
This commit is contained in:
Mateusz Łoskot
2018-10-22 19:35:48 +02:00
parent 52fae95412
commit d6b017c263
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,18 @@
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 ;

View File

@ -0,0 +1,11 @@
#define BOOST_TEST_MAIN
#include <boost/test/unit_test.hpp>
BOOST_AUTO_TEST_SUITE( ubsan_tests )
BOOST_AUTO_TEST_CASE( test1 )
{
BOOST_CHECK(true);
}
BOOST_AUTO_TEST_SUITE_END()