-
-
Notifications
You must be signed in to change notification settings - Fork 193
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
Tests failing on 32-bit builds due to unaligned struct in dependency #2121
Labels
Comments
Filed hack-pad/hackpadfs#43 about this. I think I have a path forward! |
This was referenced Jun 22, 2024
While
|
This was referenced Jun 23, 2024
The go-fsimpl bug is fixed in hairyhenderson/go-fsimpl#720. Release v0.1.4 has that fix and I'll update to that soon. |
One last test failure:
I'm pretty sure this is a problem with the test. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is blocking the Alpine updates (https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/67862) because the tests are failing on 32-bit builds (armhf, armv7, x86). I've been able to reproduce locally in a container (
docker run --platform=linux/armhf ...
)The issue seems to be that the
keyvalue.Blob
type is misaligned:I think it should be:
(at least that's what
fieldalignment
likes).I'll fix this in a fork.
Here's the panic:
The text was updated successfully, but these errors were encountered: