-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
dylib-soname
run-make test is not language independant
#129362
Comments
... good catch. I love C locale. |
In the compiler we set That said, isn't the plan to migrate operations like this from third-party tools to library calls to something like |
It is. However, my current plan is to prioritize first getting rid of Getting rid of I'm going to do a second pass after first getting rid of
TL;DR: yes, eventually. |
Rollup merge of rust-lang#129363 - Urgau:run-make-lc_all-c, r=jieyouxu Force `LC_ALL=C` for all run-make tests This PR adds `LC_ALL=C` for all run-make tests so that they become locale independent. Fixes rust-lang#129362 r? `@jieyouxu`
On an non-English system the run-make
tests/run-make/dylib-soname
test fails because it searches a english "needle" butreadelf
may print it in another language.Putting
LC_ALL=C
in my environment variable makesreadelf
use it's default (English) language.We should probably do that for all the run-make tests.
The text was updated successfully, but these errors were encountered: