1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-11 09:18:07 +03:00

test: increase image size when static library or standalone binaries are installed

This commit is contained in:
Yu Watanabe 2021-05-06 13:28:19 +09:00 committed by Zbigniew Jędrzejewski-Szmek
parent 84e492cdba
commit 853401a6bc

View File

@ -1004,6 +1004,12 @@ create_empty_image() {
fi
local size=500
if meson configure "${BUILD_DIR:?}" | grep 'static-lib\|standalone-binaries' | awk '{ print $2 }' | grep -q 'true'; then
size=$((size+=200))
fi
if meson configure "${BUILD_DIR:?}" | grep 'link-.*-shared' | awk '{ print $2 }' | grep -q 'false'; then
size=$((size+=200))
fi
if [[ "$STRIP_BINARIES" = "no" ]]; then
size=$((4 * size))
fi