From b28a786b9496c83dc15f34779cb5a6ef50aeca39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milo=C5=A1=20Prchl=C3=ADk?= Date: Tue, 15 Feb 2022 15:24:28 +0100 Subject: [PATCH] tests: bump libLLVM size threshold The library size can vary a bit, 100MB is sort of correct, but e.g. RHSCL version is 106MB. Bumping the size threshold to 150MB, it should b still safely within the original bug report of 2GB. --- tests/libllvm-size/test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/libllvm-size/test.sh b/tests/libllvm-size/test.sh index aee5bd7..f98724a 100755 --- a/tests/libllvm-size/test.sh +++ b/tests/libllvm-size/test.sh @@ -4,7 +4,7 @@ # while stripping binaries, which causes the strip to fail, but does # not fail the build. This results in a libLLVM.so that is over 2GB # which breaks the nightly compose. So this test checks that libLLVM.so -# is less than 100MB to ensure it was successfully stripped. +# is less than 150MB to ensure it was successfully stripped. # https://bugzilla.redhat.com/show_bug.cgi?id=1793250 -test $(stat -L -c %s $LIBLLVM_PATH) -lt 104857600 +test $(stat -L -c %s $LIBLLVM_PATH) -lt 209715200