aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/byteswap.zig
diff options
context:
space:
mode:
Diffstat (limited to 'test/behavior/byteswap.zig')
-rw-r--r--test/behavior/byteswap.zig3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/behavior/byteswap.zig b/test/behavior/byteswap.zig
index 7ec1b5379f..4affc99b59 100644
--- a/test/behavior/byteswap.zig
+++ b/test/behavior/byteswap.zig
@@ -39,9 +39,6 @@ test "@byteSwap integers" {
}
test "@byteSwap vectors" {
- // https://github.com/ziglang/zig/issues/3317
- if (std.Target.current.cpu.arch == .mipsel or std.Target.current.cpu.arch == .mips) return error.SkipZigTest;
-
const ByteSwapVectorTest = struct {
fn run() !void {
try t(u8, 2, [_]u8{ 0x12, 0x13 }, [_]u8{ 0x12, 0x13 });