mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
Fix readlink smoke test
This commit is contained in:
parent
99e3e29e2e
commit
4894de2b32
@ -87,7 +87,7 @@ test "readlink" {
|
|||||||
var buffer: [fs.MAX_PATH_BYTES]u8 = undefined;
|
var buffer: [fs.MAX_PATH_BYTES]u8 = undefined;
|
||||||
const given = try os.readlink(symlink_path, buffer[0..]);
|
const given = try os.readlink(symlink_path, buffer[0..]);
|
||||||
std.debug.warn("given={}\n", .{given});
|
std.debug.warn("given={}\n", .{given});
|
||||||
expect(mem.eql(u8, symlink_path, given));
|
expect(mem.eql(u8, target_path, given));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user