-
Notifications
You must be signed in to change notification settings - Fork 13.3k
PowerPC test failures due to "similarly named associated type" #126260
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
Comments
cc @lu-zero |
The intrinsics document name those parameters |
Yes, I think the levenshtein algorithm needs tuning. |
I'm seeing this on |
The stdarch submodule hasn't been updated yet since this was fixed. #117468 should pull this in. |
Indeed, rust-lang/stdarch#1582 fixes that test when applied manually. Thanks for the pointer! |
python3-rpm is added (temporarily) to work around https://bugzilla.redhat.com/show_bug.cgi?id=2275274. The binutils-gold dependency is needed for one test. Previously binutils implicitly dependend on binutils-gold. Backport rust-lang/rust#126263 to fix one codegen test failure on s390x. There are some additional test failures on ppc64le and s390x for which I have filed rust-lang/rust#126260 and rust-lang/rust#126261.
There are a number of tests that fail on PowerPC, because the emit an additional "there is a similarly named associated type" note. This happens for tests where an unknown single-character associated type is used.
The reason this only happens on PowerPC is, apparently, that
core::core_arch::powerpc::altivec::sealed::VectorRl
happens to define a single-character associated type, which is considered "similar" to any other single character type.I'm not sure what the best fix for this is -- adjust tests to use longer names? Adjust VectorRl::B to use a longer name? Make the note less aggressive?
The text was updated successfully, but these errors were encountered: