From dc3c4197c6e6564fb2558768cf2102b868347442 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Wed, 25 Sep 2019 14:17:46 -0400 Subject: [PATCH] disable known-to-be-failing tests for linux-aarch64-gnueabihf See #3288. Root cause appears to be #3291. --- std/io/test.zig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/std/io/test.zig b/std/io/test.zig index 8ab18d3499..537a0b9719 100644 --- a/std/io/test.zig +++ b/std/io/test.zig @@ -611,6 +611,11 @@ test "c out stream" { } test "File seek ops" { + if (builtin.arch == .aarch64 and builtin.glibc_version != null) { + // TODO https://github.com/ziglang/zig/issues/3288 + return error.SkipZigTest; + } + const tmp_file_name = "temp_test_file.txt"; var file = try File.openWrite(tmp_file_name); defer {