-
Notifications
You must be signed in to change notification settings - Fork 29.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: var variables to const in zlib #8627
Conversation
Changes in test-zlib-from-string is because var->const pushed us over the max char limit per line.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
LGTM |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
CI run looks green except for ARM failures that are also seen in early runs, |
WIll land once a bit more time for comment passes unless we get some objections. |
This may or may not need to be rebased after #8512 anyway… the changes look good to me, though. |
Changes in test-zlib-from-string is because var->const pushed us over the max char limit per line. PR-URL: #8627 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Landed as: 7a46554 |
Changes in test-zlib-from-string is because var->const pushed us over the max char limit per line. PR-URL: #8627 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Checklist
make -j4 test
(UNIX), orvcbuild test nosign
(Windows) passesAffected core subsystem(s)
test
Description of change
Changed var variables to const in test-zlib-(etc):
Changes in test-zlib-from-string is because var->const
pushed us over the max char limit per line.