diff options
| author | LemonBoy <thatlemon@gmail.com> | 2019-09-26 17:42:58 +0200 |
|---|---|---|
| committer | LemonBoy <thatlemon@gmail.com> | 2019-09-26 17:42:58 +0200 |
| commit | dfb4446d091b3db21d0ce953d76948788e7feb89 (patch) | |
| tree | 457117d6e41e04926b1230558e1e1fff6bedf24c /test | |
| parent | c8e4108c5b822af0cc99d35baea108c1738d55ff (diff) | |
| download | zig-dfb4446d091b3db21d0ce953d76948788e7feb89.tar.gz zig-dfb4446d091b3db21d0ce953d76948788e7feb89.zip | |
Add comments about the test cases that have been disabled
Diffstat (limited to 'test')
| -rw-r--r-- | test/stage1/behavior/byteswap.zig | 1 | ||||
| -rw-r--r-- | test/stage1/behavior/shuffle.zig | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/test/stage1/behavior/byteswap.zig b/test/stage1/behavior/byteswap.zig index ab7265bf77..449fad67ae 100644 --- a/test/stage1/behavior/byteswap.zig +++ b/test/stage1/behavior/byteswap.zig @@ -39,6 +39,7 @@ test "@byteSwap integers" { } test "@byteSwap vectors" { + // Disabled because of #3317 if (@import("builtin").arch == .mipsel) return error.SkipZigTest; const ByteSwapVectorTest = struct { diff --git a/test/stage1/behavior/shuffle.zig b/test/stage1/behavior/shuffle.zig index fc8c2b56de..a8daf6557a 100644 --- a/test/stage1/behavior/shuffle.zig +++ b/test/stage1/behavior/shuffle.zig @@ -33,6 +33,7 @@ test "@shuffle" { expect(mem.eql(i32, ([4]i32)(res), [4]i32{ 2147483647, 3, -2, 4 })); // bool + // Disabled because of #3317 if (@import("builtin").arch != .mipsel) { var x2: @Vector(4, bool) = [4]bool{ false, true, false, true }; var v4: @Vector(2, bool) = [2]bool{ true, false }; |
