| author | |
| committer | |
| log | dfb4446d091b3db21d0ce953d76948788e7feb89 |
| tree | 457117d6e41e04926b1230558e1e1fff6bedf24c |
| parent | c8e4108c5b822af0cc99d35baea108c1738d55ff |
3 files changed, 3 insertions(+), 0 deletions(-)
lib/std/hash/auto_hash.zig+1| ... | @@ -355,6 +355,7 @@ test "testHash union" { | ... | @@ -355,6 +355,7 @@ test "testHash union" { |
| 355 | } | 355 | } |
| 356 | 356 | ||
| 357 | test "testHash vector" { | 357 | test "testHash vector" { |
| 358 | // Disabled because of #3317 | ||
| 358 | if (@import("builtin").arch == .mipsel) return error.SkipZigTest; | 359 | if (@import("builtin").arch == .mipsel) return error.SkipZigTest; |
| 359 | 360 | ||
| 360 | const a: @Vector(4, u32) = [_]u32{ 1, 2, 3, 4 }; | 361 | const a: @Vector(4, u32) = [_]u32{ 1, 2, 3, 4 }; |
test/stage1/behavior/byteswap.zig+1| ... | @@ -39,6 +39,7 @@ test "@byteSwap integers" { | ... | @@ -39,6 +39,7 @@ test "@byteSwap integers" { |
| 39 | } | 39 | } |
| 40 | 40 | ||
| 41 | test "@byteSwap vectors" { | 41 | test "@byteSwap vectors" { |
| 42 | // Disabled because of #3317 | ||
| 42 | if (@import("builtin").arch == .mipsel) return error.SkipZigTest; | 43 | if (@import("builtin").arch == .mipsel) return error.SkipZigTest; |
| 43 | 44 | ||
| 44 | const ByteSwapVectorTest = struct { | 45 | const ByteSwapVectorTest = struct { |
test/stage1/behavior/shuffle.zig+1| ... | @@ -33,6 +33,7 @@ test "@shuffle" { | ... | @@ -33,6 +33,7 @@ test "@shuffle" { |
| 33 | expect(mem.eql(i32, ([4]i32)(res), [4]i32{ 2147483647, 3, -2, 4 })); | 33 | expect(mem.eql(i32, ([4]i32)(res), [4]i32{ 2147483647, 3, -2, 4 })); |
| 34 | 34 | ||
| 35 | // bool | 35 | // bool |
| 36 | // Disabled because of #3317 | ||
| 36 | if (@import("builtin").arch != .mipsel) { | 37 | if (@import("builtin").arch != .mipsel) { |
| 37 | var x2: @Vector(4, bool) = [4]bool{ false, true, false, true }; | 38 | var x2: @Vector(4, bool) = [4]bool{ false, true, false, true }; |
| 38 | var v4: @Vector(2, bool) = [2]bool{ true, false }; | 39 | var v4: @Vector(2, bool) = [2]bool{ true, false }; |