| ... | ... | @@ -780,7 +780,7 @@ fn testExpect(comptime H: type, seed: anytype, input: []const u8, expected: u64) |
| 780 | 780 | } |
| 781 | 781 | |
| 782 | 782 | test "xxhash3" { |
| 783 | | if (builtin.cpu.arch.isMIPS64() and (builtin.abi == .gnuabin32 or builtin.abi == .muslabin32)) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/23807 |
| 783 | if (builtin.cpu.arch.isMIPS64()) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/23807 |
| 784 | 784 | |
| 785 | 785 | const H = XxHash3; |
| 786 | 786 | // Non-Seeded Tests |
| ... | ... | @@ -813,7 +813,7 @@ test "xxhash3" { |
| 813 | 813 | } |
| 814 | 814 | |
| 815 | 815 | test "xxhash3 smhasher" { |
| 816 | | if (builtin.cpu.arch.isMIPS64() and (builtin.abi == .gnuabin32 or builtin.abi == .muslabin32)) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/23807 |
| 816 | if (builtin.cpu.arch.isMIPS64()) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/23807 |
| 817 | 817 | |
| 818 | 818 | const Test = struct { |
| 819 | 819 | fn do() !void { |
| ... | ... | @@ -826,7 +826,7 @@ test "xxhash3 smhasher" { |
| 826 | 826 | } |
| 827 | 827 | |
| 828 | 828 | test "xxhash3 iterative api" { |
| 829 | | if (builtin.cpu.arch.isMIPS64() and (builtin.abi == .gnuabin32 or builtin.abi == .muslabin32)) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/23807 |
| 829 | if (builtin.cpu.arch.isMIPS64()) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/23807 |
| 830 | 830 | |
| 831 | 831 | const Test = struct { |
| 832 | 832 | fn do() !void { |