From 37b854f77cd4ac8d8cf0ad1eaf7a55434ffa0820 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 17 Aug 2022 11:36:08 -0700 Subject: [PATCH] Revert "update libuv tests" This reverts commit 2228675973b789a938c0d5e30b138f3e5d88121e. --- pkg/libuv/tests.zig | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkg/libuv/tests.zig b/pkg/libuv/tests.zig index a0bf3c785..dab95d772 100644 --- a/pkg/libuv/tests.zig +++ b/pkg/libuv/tests.zig @@ -7,11 +7,6 @@ const testing = std.testing; const libuv = @import("main.zig"); test "Async: cancel timer" { - // Not sure why, but failing in CI... but passes locally. It used - // to pass before we moved this out to a separate package so I don't - // know whats going on yet. - if (@import("builtin").cpu.arch != .aarch64) return error.SkipZigTest; - const alloc = testing.allocator; var loop = try libuv.Loop.init(alloc); defer loop.deinit(alloc);