aboutsummaryrefslogtreecommitdiff
path: root/test/cli.zig
diff options
context:
space:
mode:
Diffstat (limited to 'test/cli.zig')
-rw-r--r--test/cli.zig6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/cli.zig b/test/cli.zig
index d7490dcc76..1e7f1d0a73 100644
--- a/test/cli.zig
+++ b/test/cli.zig
@@ -116,12 +116,12 @@ fn testGodboltApi(zig_exe: []const u8, dir_path: []const u8) anyerror!void {
const args = [][]const u8{
zig_exe, "build-obj",
"--cache-dir", dir_path,
- "--output", example_s_path,
- "--output-h", "/dev/null",
+ "--name", "example",
+ "--output-dir", dir_path,
"--emit", "asm",
"-mllvm", "--x86-asm-syntax=intel",
"--strip", "--release-fast",
- example_zig_path,
+ example_zig_path, "--disable-gen-h",
};
_ = try exec(dir_path, args);