| author | |
| committer | |
| log | 303e1a062cdafa0fe06c4a78dabe0a077c239e04 |
| tree | 77bdbfa5e2f8a37294875188716e8767cee01e11 |
| parent | a338eaccc8c3d20a476cb763afebeb7bb1b1a94a |
closes #33175 files changed, 1 insertions(+), 15 deletions(-)
lib/std/fmt.zig-4| ... | ... | @@ -2504,10 +2504,6 @@ test "positional/alignment/width/precision" { |
| 2504 | 2504 | } |
| 2505 | 2505 | |
| 2506 | 2506 | test "vector" { |
| 2507 | if (builtin.target.cpu.arch == .mipsel or builtin.target.cpu.arch == .mips) { | |
| 2508 | // https://github.com/ziglang/zig/issues/3317 | |
| 2509 | return error.SkipZigTest; | |
| 2510 | } | |
| 2511 | 2507 | if (builtin.target.cpu.arch == .riscv64) { |
| 2512 | 2508 | // https://github.com/ziglang/zig/issues/4486 |
| 2513 | 2509 | return error.SkipZigTest; |
lib/std/hash/auto_hash.zig-3| ... | ... | @@ -399,9 +399,6 @@ test "testHash union" { |
| 399 | 399 | } |
| 400 | 400 | |
| 401 | 401 | test "testHash vector" { |
| 402 | // Disabled because of #3317 | |
| 403 | if (builtin.target.cpu.arch == .mipsel or builtin.target.cpu.arch == .mips) return error.SkipZigTest; | |
| 404 | ||
| 405 | 402 | const a: meta.Vector(4, u32) = [_]u32{ 1, 2, 3, 4 }; |
| 406 | 403 | const b: meta.Vector(4, u32) = [_]u32{ 1, 2, 3, 5 }; |
| 407 | 404 | try testing.expect(testHash(a) == testHash(a)); |
test/behavior/byteswap.zig-3| ... | ... | @@ -39,9 +39,6 @@ test "@byteSwap integers" { |
| 39 | 39 | } |
| 40 | 40 | |
| 41 | 41 | test "@byteSwap vectors" { |
| 42 | // https://github.com/ziglang/zig/issues/3317 | |
| 43 | if (std.Target.current.cpu.arch == .mipsel or std.Target.current.cpu.arch == .mips) return error.SkipZigTest; | |
| 44 | ||
| 45 | 42 | const ByteSwapVectorTest = struct { |
| 46 | 43 | fn run() !void { |
| 47 | 44 | try t(u8, 2, [_]u8{ 0x12, 0x13 }, [_]u8{ 0x12, 0x13 }); |
test/behavior/popcount.zig-3| ... | ... | @@ -46,9 +46,6 @@ fn testPopCountIntegers() !void { |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | 48 | test "@popCount vectors" { |
| 49 | // https://github.com/ziglang/zig/issues/3317 | |
| 50 | if (std.Target.current.cpu.arch == .mipsel or std.Target.current.cpu.arch == .mips) return error.SkipZigTest; | |
| 51 | ||
| 52 | 49 | comptime try testPopCountVectors(); |
| 53 | 50 | try testPopCountVectors(); |
| 54 | 51 | } |
test/behavior/shuffle.zig+1-2| ... | ... | @@ -35,8 +35,7 @@ test "@shuffle" { |
| 35 | 35 | try expect(mem.eql(i32, &@as([4]i32, res), &[4]i32{ 2147483647, 3, -2, 4 })); |
| 36 | 36 | |
| 37 | 37 | // bool |
| 38 | // https://github.com/ziglang/zig/issues/3317 | |
| 39 | if (builtin.target.cpu.arch != .mipsel and builtin.target.cpu.arch != .mips) { | |
| 38 | { | |
| 40 | 39 | var x2: Vector(4, bool) = [4]bool{ false, true, false, true }; |
| 41 | 40 | var v4: Vector(2, bool) = [2]bool{ true, false }; |
| 42 | 41 | const mask5: Vector(4, i32) = [4]i32{ 0, ~@as(i32, 1), 1, 2 }; |