authorgravatar for thatlemon@gmail.comLemonBoy <thatlemon@gmail.com> 2019-09-26 17:42:58+02:00
committergravatar for thatlemon@gmail.comLemonBoy <thatlemon@gmail.com> 2019-09-26 17:42:58+02:00
logdfb4446d091b3db21d0ce953d76948788e7feb89
tree457117d6e41e04926b1230558e1e1fff6bedf24c
parentc8e4108c5b822af0cc99d35baea108c1738d55ff

Add comments about the test cases that have been disabled


3 files changed, 3 insertions(+), 0 deletions(-)

lib/std/hash/auto_hash.zig+1
......@@ -355,6 +355,7 @@ test "testHash union" {
355355}
356356
357357test "testHash vector" {
358 // Disabled because of #3317
358359 if (@import("builtin").arch == .mipsel) return error.SkipZigTest;
359360
360361 const a: @Vector(4, u32) = [_]u32{ 1, 2, 3, 4 };
test/stage1/behavior/byteswap.zig+1
......@@ -39,6 +39,7 @@ test "@byteSwap integers" {
3939}
4040
4141test "@byteSwap vectors" {
42 // Disabled because of #3317
4243 if (@import("builtin").arch == .mipsel) return error.SkipZigTest;
4344
4445 const ByteSwapVectorTest = struct {
test/stage1/behavior/shuffle.zig+1
......@@ -33,6 +33,7 @@ test "@shuffle" {
3333 expect(mem.eql(i32, ([4]i32)(res), [4]i32{ 2147483647, 3, -2, 4 }));
3434
3535 // bool
36 // Disabled because of #3317
3637 if (@import("builtin").arch != .mipsel) {
3738 var x2: @Vector(4, bool) = [4]bool{ false, true, false, true };
3839 var v4: @Vector(2, bool) = [2]bool{ true, false };