authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-03-07 07:59:27+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-03-08 07:04:27+01:00
log5c57e90ffb6d7498ec3d8bd06ae4a50a8a7a917d
treec8552cb7bee30c745bf79b22bb73d1b85e0f7657
parent214750fcfe98152a0d00087d0269b25a271a49de

test: Disable `test-elf-ld-script-path-error` for now.

https://github.com/ziglang/zig/issues/23125

1 files changed, 2 insertions(+), 1 deletions(-)

test/link/elf.zig+2-1
...@@ -114,7 +114,8 @@ pub fn testAll(b: *Build, build_opts: BuildOptions) *Step {...@@ -114,7 +114,8 @@ pub fn testAll(b: *Build, build_opts: BuildOptions) *Step {
114 elf_step.dependOn(testLargeBss(b, .{ .target = gnu_target }));114 elf_step.dependOn(testLargeBss(b, .{ .target = gnu_target }));
115 elf_step.dependOn(testLinkOrder(b, .{ .target = gnu_target }));115 elf_step.dependOn(testLinkOrder(b, .{ .target = gnu_target }));
116 elf_step.dependOn(testLdScript(b, .{ .target = gnu_target }));116 elf_step.dependOn(testLdScript(b, .{ .target = gnu_target }));
117 elf_step.dependOn(testLdScriptPathError(b, .{ .target = gnu_target }));117 // https://github.com/ziglang/zig/issues/23125
118 // elf_step.dependOn(testLdScriptPathError(b, .{ .target = gnu_target }));
118 elf_step.dependOn(testLdScriptAllowUndefinedVersion(b, .{ .target = gnu_target, .use_lld = true }));119 elf_step.dependOn(testLdScriptAllowUndefinedVersion(b, .{ .target = gnu_target, .use_lld = true }));
119 elf_step.dependOn(testLdScriptDisallowUndefinedVersion(b, .{ .target = gnu_target, .use_lld = true }));120 elf_step.dependOn(testLdScriptDisallowUndefinedVersion(b, .{ .target = gnu_target, .use_lld = true }));
120 // https://github.com/ziglang/zig/issues/17451121 // https://github.com/ziglang/zig/issues/17451