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

https://github.com/ziglang/zig/issues/23125
This commit is contained in:
Alex Rønne Petersen 2025-03-07 07:59:27 +01:00
parent 214750fcfe
commit 5c57e90ffb

View file

@ -114,7 +114,8 @@ pub fn testAll(b: *Build, build_opts: BuildOptions) *Step {
elf_step.dependOn(testLargeBss(b, .{ .target = gnu_target }));
elf_step.dependOn(testLinkOrder(b, .{ .target = gnu_target }));
elf_step.dependOn(testLdScript(b, .{ .target = gnu_target }));
elf_step.dependOn(testLdScriptPathError(b, .{ .target = gnu_target }));
// https://github.com/ziglang/zig/issues/23125
// elf_step.dependOn(testLdScriptPathError(b, .{ .target = gnu_target }));
elf_step.dependOn(testLdScriptAllowUndefinedVersion(b, .{ .target = gnu_target, .use_lld = true }));
elf_step.dependOn(testLdScriptDisallowUndefinedVersion(b, .{ .target = gnu_target, .use_lld = true }));
// https://github.com/ziglang/zig/issues/17451