Skip to content

Commit 3b97558

Browse files
committed
revert a change to C ABI tests
See tracking issue #14908
1 parent 14591ea commit 3b97558

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

test/tests.zig

+7-3
Original file line numberDiff line numberDiff line change
@@ -1045,9 +1045,13 @@ pub fn addCAbiTests(b: *std.Build, skip_non_native: bool, skip_release: bool) *S
10451045
}
10461046
test_step.linkLibC();
10471047
test_step.addCSourceFile("test/c_abi/cfuncs.c", &.{"-std=c99"});
1048-
// This test is intentionally trying to check if the external ABI is
1049-
// done properly. LTO would be a hindrance to this.
1050-
test_step.want_lto = false;
1048+
1049+
// test-c-abi should test both with LTO on and with LTO off. Only
1050+
// some combinations are passing currently:
1051+
// https://github.com/ziglang/zig/issues/14908
1052+
if (c_abi_target.isWindows() and (c_abi_target.getCpuArch() == .x86 or builtin.target.os.tag == .linux)) {
1053+
test_step.want_lto = false;
1054+
}
10511055

10521056
const triple_prefix = c_abi_target.zigTriple(b.allocator) catch @panic("OOM");
10531057
test_step.setNamePrefix(b.fmt("{s}-{s}-{s} ", .{

0 commit comments

Comments
 (0)