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