aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2019-05-26 13:37:34 -0400
committerAndrew Kelley <andrew@ziglang.org>2019-05-26 18:32:45 -0400
commit44a049e01eef654fee82a1ee4e1aaf37447319ce (patch)
tree55fe1e7ae6920f19439d4f7d3424152a133203fb /test
parent2f040a23c8b968db56ab4c4725d6651f5ea3418e (diff)
downloadzig-44a049e01eef654fee82a1ee4e1aaf37447319ce.tar.gz
zig-44a049e01eef654fee82a1ee4e1aaf37447319ce.zip
more cleanup. down to just the `@hasDecl` builtin
Diffstat (limited to 'test')
-rw-r--r--test/tests.zig2
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),
});