Skip to content

Commit dc3c419

Browse files
committed
disable known-to-be-failing tests for linux-aarch64-gnueabihf
See #3288. Root cause appears to be #3291.
1 parent c969091 commit dc3c419

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

std/io/test.zig

+5
Original file line numberDiff line numberDiff line change
@@ -611,6 +611,11 @@ test "c out stream" {
611611
}
612612

613613
test "File seek ops" {
614+
if (builtin.arch == .aarch64 and builtin.glibc_version != null) {
615+
// TODO https://github.com/ziglang/zig/issues/3288
616+
return error.SkipZigTest;
617+
}
618+
614619
const tmp_file_name = "temp_test_file.txt";
615620
var file = try File.openWrite(tmp_file_name);
616621
defer {

0 commit comments

Comments
 (0)