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
Referencing discussion in PR #87, ARM coverage test case test_create_device will fail on some machines with gnu toolchain. This failure is caused by the assertion in arm test_create_device case: assert_eq(errno::Error::last().errno(), 25);
as ioctl device_fd.set_device_attr(&dist_attr) returns EINVAL instead of ENOTTY.
Note that this bug is only reproducible in only some of the arm64 machines, and using musl toolchain also will not lead to this problem. Root cause of this bug needs to be investigated and fixed.
The text was updated successfully, but these errors were encountered:
Referencing discussion in PR #87, ARM coverage test case
test_create_device
will fail on some machines with gnu toolchain. This failure is caused by the assertion in armtest_create_device
case:assert_eq(errno::Error::last().errno(), 25);
as ioctl
device_fd.set_device_attr(&dist_attr)
returnsEINVAL
instead ofENOTTY
.Note that this bug is only reproducible in only some of the arm64 machines, and using musl toolchain also will not lead to this problem. Root cause of this bug needs to be investigated and fixed.
The text was updated successfully, but these errors were encountered: