Skip to content

Commit

Permalink
Disable serialization tests under MinGW 32 bit
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimov committed Nov 10, 2024
1 parent 8ebe2e7 commit 78885aa
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion test/Jamfile.v2
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,15 @@ run memory_resource_test.cpp ;
run data_test.cpp ;
run size_test.cpp ;

local with-serialization = <library>/boost/serialization//boost_serialization/<warnings>off $(warnings-as-errors-off) <undefined-sanitizer>norecover:<link>static $(CPP11) ;
local with-serialization =
<library>/boost/serialization//boost_serialization/<warnings>off
$(warnings-as-errors-off)
<undefined-sanitizer>norecover:<link>static
$(CPP11)
# Serialization no longer builds under classic MinGW
# and <toolset>gcc,<target-os>windows,<address-model>32 fails for some reason
<toolset>gcc,<target-os>windows:<build>no
;

run serialization_nvp_test.cpp : : : $(with-serialization) <undefined-sanitizer>norecover:<build>no ;
run serialization_split_free_test.cpp : : : $(with-serialization) ;
Expand Down

0 comments on commit 78885aa

Please sign in to comment.