mirror of
https://github.com/boostorg/function.git
synced 2025-07-28 11:57:16 +02:00
Compare commits
3 Commits
boost-1.82
...
pr/mloskot
Author | SHA1 | Date | |
---|---|---|---|
a5d878092c | |||
5f50a7a50a | |||
d6b017c263 |
@ -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 ;
|
||||
|
11
test/boost_test_ubsan.cpp
Normal file
11
test/boost_test_ubsan.cpp
Normal 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()
|
Reference in New Issue
Block a user