Skip to content
/ zig Public
forked from ziglang/zig

Commit

Permalink
test: Disable test-elf-ld-script-path-error for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrp committed Mar 8, 2025
1 parent ed583e5 commit c9c58eb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/link/elf.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c9c58eb

Please sign in to comment.