| ... | @@ -780,7 +780,7 @@ fn testExpect(comptime H: type, seed: anytype, input: []const u8, expected: u64) | ... | @@ -780,7 +780,7 @@ fn testExpect(comptime H: type, seed: anytype, input: []const u8, expected: u64) |
| 780 | } | 780 | } |
| 781 | | 781 | |
| 782 | test "xxhash3" { | 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 | const H = XxHash3; | 785 | const H = XxHash3; |
| 786 | // Non-Seeded Tests | 786 | // Non-Seeded Tests |
| ... | @@ -813,7 +813,7 @@ test "xxhash3" { | ... | @@ -813,7 +813,7 @@ test "xxhash3" { |
| 813 | } | 813 | } |
| 814 | | 814 | |
| 815 | test "xxhash3 smhasher" { | 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 | const Test = struct { | 818 | const Test = struct { |
| 819 | fn do() !void { | 819 | fn do() !void { |
| ... | @@ -826,7 +826,7 @@ test "xxhash3 smhasher" { | ... | @@ -826,7 +826,7 @@ test "xxhash3 smhasher" { |
| 826 | } | 826 | } |
| 827 | | 827 | |
| 828 | test "xxhash3 iterative api" { | 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 | const Test = struct { | 831 | const Test = struct { |
| 832 | fn do() !void { | 832 | fn do() !void { |