disable known-to-be-failing tests for linux-aarch64-gnueabihf

See #3288. Root cause appears to be #3291.
This commit is contained in:
Andrew Kelley 2019-09-25 14:17:46 -04:00
parent c9690916e5
commit dc3c4197c6
No known key found for this signature in database
GPG Key ID: 7C5F548F728501A9

View File

@ -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 {