Skip to content

Commit 78885aa

Browse files
committed
Disable serialization tests under MinGW 32 bit
1 parent 8ebe2e7 commit 78885aa

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

test/Jamfile.v2

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,15 @@ run memory_resource_test.cpp ;
432432
run data_test.cpp ;
433433
run size_test.cpp ;
434434

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

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

0 commit comments

Comments
 (0)