aboutsummaryrefslogtreecommitdiff
path: root/test/cli.zig
diff options
context:
space:
mode:
Diffstat (limited to 'test/cli.zig')
-rw-r--r--test/cli.zig3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/cli.zig b/test/cli.zig
index a36c810cd8..1e7f1d0a73 100644
--- a/test/cli.zig
+++ b/test/cli.zig
@@ -127,5 +127,6 @@ fn testGodboltApi(zig_exe: []const u8, dir_path: []const u8) anyerror!void {
const out_asm = try std.io.readFileAlloc(a, example_s_path);
testing.expect(std.mem.indexOf(u8, out_asm, "square:") != null);
- testing.expect(std.mem.indexOf(u8, out_asm, "imul\tedi, edi") != null);
+ testing.expect(std.mem.indexOf(u8, out_asm, "mov\teax, edi") != null);
+ testing.expect(std.mem.indexOf(u8, out_asm, "imul\teax, edi") != null);
}