diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2024-08-16 11:24:34 +0200 |
|---|---|---|
| committer | Alex Rønne Petersen <alex@alexrp.com> | 2024-08-18 07:27:23 +0200 |
| commit | ecbc701376c944e201ccaa24910ba1dfdcc7a4b0 (patch) | |
| tree | b67a809bf179484339ad380dc8f02f0881fc7d09 /test/behavior/vector.zig | |
| parent | d4d6b23d642a12b76c28e4e1e8e33c4a6e97ea75 (diff) | |
| download | zig-ecbc701376c944e201ccaa24910ba1dfdcc7a4b0.tar.gz zig-ecbc701376c944e201ccaa24910ba1dfdcc7a4b0.zip | |
test: Disable `vector reduce operation` on mips64.
https://github.com/ziglang/zig/issues/21091
Diffstat (limited to 'test/behavior/vector.zig')
| -rw-r--r-- | test/behavior/vector.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/behavior/vector.zig b/test/behavior/vector.zig index c4e00d9b0c..214fda28d6 100644 --- a/test/behavior/vector.zig +++ b/test/behavior/vector.zig @@ -773,6 +773,7 @@ test "vector reduce operation" { if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_c and comptime builtin.cpu.arch.isArmOrThumb()) return error.SkipZigTest; if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest; + if (builtin.cpu.arch.isMIPS64()) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21091 const S = struct { fn testReduce(comptime op: std.builtin.ReduceOp, x: anytype, expected: anytype) !void { |
