Skip to content

Commit 426684b

Browse files
committed
behavior: fix issues with x86_64 backend tests
* Oops, I accidentally disabled most of them. * Cleanup some workarounds for now closed issues. * Test binary operations with more scalar integer types.
1 parent ddcf6fc commit 426684b

File tree

2 files changed

+241
-429
lines changed

2 files changed

+241
-429
lines changed

test/behavior/x86_64.zig

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ test {
77
if (builtin.object_format == .macho) return error.SkipZigTest;
88
// COFF linker does not support the new backend.
99
if (builtin.object_format == .coff) return error.SkipZigTest;
10-
_ = @import("x86_64/math.zig");
10+
_ = @import("x86_64/binary.zig");
11+
_ = @import("x86_64/cast.zig");
1112
_ = @import("x86_64/mem.zig");
13+
_ = @import("x86_64/unary.zig");
1214
}

0 commit comments

Comments
 (0)