aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorFelix (xq) Queißner <git@mq32.de>2021-02-26 11:28:23 +0100
committerVeikka Tuominen <git@vexu.eu>2021-06-11 10:39:50 +0300
commit27bd0971bb725fd3166bcee9364d3af868a24b5d (patch)
tree0d863026c3a4f46764f56b572b2a242a41286f1c /test
parent07acb1ccc97329cdcc0df37234325af9b00420a3 (diff)
downloadzig-27bd0971bb725fd3166bcee9364d3af868a24b5d.tar.gz
zig-27bd0971bb725fd3166bcee9364d3af868a24b5d.zip
Changes to .path instead of .getPathFn. Changes LibExeObjStep to also provide FileSource.
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 8fe31a6127..c8961fb906 100644
--- a/test/tests.zig
+++ b/test/tests.zig
@@ -707,7 +707,7 @@ pub const StackTracesContext = struct {
const self = @fieldParentPtr(RunAndCompareStep, "step", step);
const b = self.context.b;
- const full_exe_path = self.exe.getOutputPath();
+ const full_exe_path = self.exe.getOutputSource().getPath(b);
var args = ArrayList([]const u8).init(b.allocator);
defer args.deinit();
args.append(full_exe_path) catch unreachable;