Compare commits
2 Commits
90f503f7c0
...
8ab80f07b8
Author | SHA1 | Date |
---|---|---|
kayomn | 8ab80f07b8 | |
kayomn | 7c5dcc1cde |
|
@ -23,7 +23,7 @@
|
|||
"name": "Test",
|
||||
"type": "gdb",
|
||||
"request": "launch",
|
||||
"target": "${workspaceFolder}/zig-cache/o/2c2b6e0f85a1dcd7caa00765b05ec679/test",
|
||||
"target": "${workspaceFolder}/zig-cache/o/acfc38b60cc59a70f8386ac73748d92a/test",
|
||||
"arguments": "main.zig",
|
||||
"cwd": "${workspaceRoot}",
|
||||
"valuesFormatting": "parseText",
|
||||
|
|
|
@ -39,6 +39,7 @@ pub fn build(builder: *std.build.Builder) void {
|
|||
tests.addPackage(core_pkg);
|
||||
tests.setTarget(target);
|
||||
tests.setBuildMode(mode);
|
||||
tests.install();
|
||||
builder.step("test", "Run unit tests").dependOn(&tests.step);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -155,7 +155,7 @@ test "Path" {
|
|||
const joined_component_path = try Path.joined(&.{"path", "to/my", "/file"});
|
||||
const joined_normalized_path = try Path.joined(&.{"path/to/my/file"});
|
||||
|
||||
try testing.expectEqual(empty_path.length, joined_normalized_path.length);
|
||||
try testing.expectEqual(joined_component_path.length, joined_normalized_path.length);
|
||||
try testing.expect(joined_component_path.equals(joined_normalized_path));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue