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.
This commit is contained in:
Miloš Prchlík 2022-03-08 13:16:13 +01:00 committed by sergesanspaille
parent c3eaca601e
commit 77fe5f8af7
1 changed files with 1 additions and 1 deletions

View File

@ -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