Reenable ASAN for GCC 12 -m32

This commit is contained in:
Peter Dimov
2022-06-27 20:31:39 +03:00
parent fa3dd0b853
commit a9ab336f89
2 changed files with 6 additions and 4 deletions

View File

@ -149,9 +149,9 @@ local windows_pipeline(name, image, environment, arch = "amd64") =
),
linux_pipeline(
"Linux 22.04 GCC 12 32",
"Linux 22.04 GCC 12 32 ASAN",
"cppalliance/droneubuntu2204:1",
{ TOOLSET: 'gcc', COMPILER: 'g++-12', CXXSTD: '03,11,14,17,20', ADDRMD: '32' },
{ TOOLSET: 'gcc', COMPILER: 'g++-12', CXXSTD: '03,11,14,17,20', ADDRMD: '32' } + asan,
"g++-12-multilib",
),

View File

@ -86,8 +86,10 @@ run-ni load_convenience_test.cpp ;
run store_convenience_test.cpp ;
run-ni store_convenience_test.cpp ;
run float_typedef_test.cpp ;
run-ni float_typedef_test.cpp ;
run float_typedef_test.cpp
: : : "<toolset>gcc,<address-model>32:<cxxflags>-ffloat-store" ;
run float_typedef_test.cpp
: : : "<toolset>gcc,<address-model>32:<cxxflags>-ffloat-store" <define>BOOST_ENDIAN_NO_INTRINSICS : float_typedef_test_ni ;
run data_test.cpp ;
run-ni data_test.cpp ;