You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running "cargo test --bench main --all-features" for the virtio-queue crate (both the version from crates.io and the latest version from git) on s390x, I get.
Testing single chain (indirect=false)
thread 'main' panicked at 'assertion failed: (left == right)
left: 256,
right: 1', crates/virtio-queue/benches/queue/mod.rs:63:17
I presume this is an endian issue as it is not happening on any of the other architectures we test.
The text was updated successfully, but these errors were encountered:
Hi, yeah it is most probably an endianness issue. @slp fixed some of them, see PR, but I am not sure if the benches have been tested as well. We don't have a CI instance for s390x, so the issues on this platform can only be discovered by manual testing.
When running "cargo test --bench main --all-features" for the virtio-queue crate (both the version from crates.io and the latest version from git) on s390x, I get.
Testing single chain (indirect=false)
thread 'main' panicked at 'assertion failed:
(left == right)
left:
256
,right:
1
', crates/virtio-queue/benches/queue/mod.rs:63:17I presume this is an endian issue as it is not happening on any of the other architectures we test.
The text was updated successfully, but these errors were encountered: