Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

.fingerprint = 0x76501fb842f52025, // Changing this has security and trust implications.

.minimum_zig_version = "0.16.0-dev.2193+fc517bd01",
.minimum_zig_version = "0.16.0-dev.2368+380ea6fb5",

.dependencies = .{},

Expand Down
3 changes: 1 addition & 2 deletions test/runner.zig
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ pub fn main(init: process.Init.Minimal) !void {
const arocc_exe = args[1];
const cases_dir = args[2];

var cwd_buf: [std.fs.max_path_bytes]u8 = undefined;
const cwd = try process.getCwd(&cwd_buf);
const cwd = try std.process.currentPathAlloc(io, arena);
const relative_arocc_exe = try std.fs.path.relative(arena, cwd, null, cases_dir, arocc_exe);

var dir = std.Io.Dir.cwd().openDir(io, cases_dir, .{ .iterate = true }) catch |err| {
Expand Down