-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
std.debug.dump_hex address on partial line incorrect #20048
Comments
About the potential fix: I think the |
Just want to note that const std = @import("std");
test {
const bytes: []const u8 = &.{ 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff, 0x01, 0x12, 0x13 };
try std.testing.expectEqualSlices(u8, bytes, "");
}
|
@squeek502 note that the std.testing function does not report the address of each 16-byte line which is where the bug is in |
Oh, I was looking at the wrong thing. I saw the missing |
Abstracts the logic to std.debug.dumpHexInternal, which takes a writer and TTY config. That way, unit tests can be written for the function. Fixes ziglang#20048
Zig Version
0.13.0-dev.245+5fe9f88b1
Steps to Reproduce and Observed Behavior
replication source and
zig run
output:https://gist.github.com/Khitiara/ce35b7ba82304a8d540cda822512454e
Expected Behavior
expected output also provided along with a possible fix in the above gist, the important line being on line 18:
The text was updated successfully, but these errors were encountered: