| ... | ... | @@ -2787,6 +2787,12 @@ test "LibExeObjStep.addPackage" { |
| 2787 | 2787 | test "" { |
| 2788 | 2788 | // The only purpose of this test is to get all these untested functions |
| 2789 | 2789 | // to be referenced to avoid regression so it is okay to skip some targets. |
| 2790 | | if (comptime std.Target.current.cpu.arch.ptrBitWidth() == 64) |
| 2790 | if (comptime std.Target.current.cpu.arch.ptrBitWidth() == 64) { |
| 2791 | 2791 | std.testing.refAllDecls(@This()); |
| 2792 | std.testing.refAllDecls(Builder); |
| 2793 | |
| 2794 | inline for (std.meta.declarations(@This())) |decl| |
| 2795 | if (comptime mem.endsWith(u8, decl.name, "Step")) |
| 2796 | std.testing.refAllDecls(decl.data.Type); |
| 2797 | } |
| 2792 | 2798 | } |