aboutsummaryrefslogtreecommitdiff
path: root/test/cli.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2019-03-10 13:48:06 -0400
committerAndrew Kelley <andrew@ziglang.org>2019-03-10 13:48:06 -0400
commit3cdd2c0bddebf82a3ec7b187014acf2e7507a79c (patch)
tree4f38ce2307e32b518c8c65b12a186d054876f8dc /test/cli.zig
parent0714e19598e91f457d3d0119856fd7a24dd4f150 (diff)
parent0a8a7a57e7a6b4b5a0d1523bde57b2a4b93fa50a (diff)
downloadzig-3cdd2c0bddebf82a3ec7b187014acf2e7507a79c.tar.gz
zig-3cdd2c0bddebf82a3ec7b187014acf2e7507a79c.zip
Merge remote-tracking branch 'origin/master' into llvm8
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);