From 77fe5f8af76e1259d480b8da522e376bdf529f4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milo=C5=A1=20Prchl=C3=ADk?= Date: Tue, 8 Mar 2022 13:16:13 +0100 Subject: [PATCH] tests: fix libLLVM size threshold Documentation says the threshold is 150MB, but the actual value was 200MB. Fixing this with a correct value, documentation (and previous commit message) are right here. Thanks to vkadlcik@redhat.com for spotting the issue. --- tests/libllvm-size/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/libllvm-size/test.sh b/tests/libllvm-size/test.sh index f98724a..a9a2dfe 100755 --- a/tests/libllvm-size/test.sh +++ b/tests/libllvm-size/test.sh @@ -7,4 +7,4 @@ # 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 209715200 +test $(stat -L -c %s $LIBLLVM_PATH) -lt 157286400