mirror of
https://src.fedoraproject.org/rpms/llvm.git
synced 2024-11-24 09:32:42 +00:00
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:
parent
c3eaca601e
commit
77fe5f8af7
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue