| ... | ... | @@ -2698,12 +2698,6 @@ fn testThunks(b: *Build, opts: Options) *Step { |
| 2698 | 2698 | run.expectStdOutEqual("bar=42, foo=0, foobar=42"); |
| 2699 | 2699 | run.expectExitCode(0); |
| 2700 | 2700 | test_step.dependOn(&run.step); |
| 2701 | | |
| 2702 | | const check = exe.checkObject(); |
| 2703 | | check.max_bytes = std.math.maxInt(u32); |
| 2704 | | check.checkInSymtab(); |
| 2705 | | check.checkContains("__libc_start_main$thunk"); |
| 2706 | | test_step.dependOn(&check.step); |
| 2707 | 2701 | } |
| 2708 | 2702 | |
| 2709 | 2703 | { |
| ... | ... | @@ -2714,12 +2708,6 @@ fn testThunks(b: *Build, opts: Options) *Step { |
| 2714 | 2708 | run.expectStdOutEqual("bar=42, foo=0, foobar=42"); |
| 2715 | 2709 | run.expectExitCode(0); |
| 2716 | 2710 | test_step.dependOn(&run.step); |
| 2717 | | |
| 2718 | | const check = exe.checkObject(); |
| 2719 | | check.max_bytes = std.math.maxInt(u32); |
| 2720 | | check.checkInSymtab(); |
| 2721 | | check.checkContains("__libc_start_main$thunk"); |
| 2722 | | test_step.dependOn(&check.step); |
| 2723 | 2711 | } |
| 2724 | 2712 | |
| 2725 | 2713 | return test_step; |