From a5d878092c0ecd8a27e99062e3c770095d3ae1ee Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 23 Oct 2018 03:22:54 +0300 Subject: [PATCH] Rename test, add to test/Jamfile --- test/Jamfile.v2 | 2 ++ .../test.cpp => boost_test_ubsan.cpp} | 0 test/ubsan_undefined_bug/Jamfile | 18 ------------------ 3 files changed, 2 insertions(+), 18 deletions(-) rename test/{ubsan_undefined_bug/test.cpp => boost_test_ubsan.cpp} (100%) delete mode 100644 test/ubsan_undefined_bug/Jamfile diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 9b9a1a1..6669528 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -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 ; diff --git a/test/ubsan_undefined_bug/test.cpp b/test/boost_test_ubsan.cpp similarity index 100% rename from test/ubsan_undefined_bug/test.cpp rename to test/boost_test_ubsan.cpp diff --git a/test/ubsan_undefined_bug/Jamfile b/test/ubsan_undefined_bug/Jamfile deleted file mode 100644 index 0fdf2c9..0000000 --- a/test/ubsan_undefined_bug/Jamfile +++ /dev/null @@ -1,18 +0,0 @@ -import testing ; - -variant ubsan_undefined - : release - : - "-std=c++11 -Wno-unused -fstrict-aliasing -fno-omit-frame-pointer -fsanitize=undefined -fno-sanitize-recover=undefined" - "-fsanitize=undefined" - on - BOOST_USE_ASAN=1 - ; - -project - : requirements - $(BOOST_ROOT) - /boost/test//boost_unit_test_framework - ; - -run test.cpp ; \ No newline at end of file