diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2019-05-26 13:37:34 -0400 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2019-05-26 18:32:45 -0400 |
| commit | 44a049e01eef654fee82a1ee4e1aaf37447319ce (patch) | |
| tree | 55fe1e7ae6920f19439d4f7d3424152a133203fb /test/tests.zig | |
| parent | 2f040a23c8b968db56ab4c4725d6651f5ea3418e (diff) | |
| download | zig-44a049e01eef654fee82a1ee4e1aaf37447319ce.tar.gz zig-44a049e01eef654fee82a1ee4e1aaf37447319ce.zip | |
more cleanup. down to just the `@hasDecl` builtin
Diffstat (limited to 'test/tests.zig')
| -rw-r--r-- | test/tests.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tests.zig b/test/tests.zig index 061d4cb55f..9bd9292b84 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -112,7 +112,7 @@ pub fn addCliTests(b: *build.Builder, test_filter: ?[]const u8, modes: []const M const exe = b.addExecutable("test-cli", "test/cli.zig"); const run_cmd = exe.run(); run_cmd.addArgs([][]const u8{ - fs.path.realAlloc(b.allocator, b.zig_exe) catch unreachable, + fs.realpathAlloc(b.allocator, b.zig_exe) catch unreachable, b.pathFromRoot(b.cache_root), }); |
