| author | |
| committer | |
| log | dc3c4197c6e6564fb2558768cf2102b868347442 |
| tree | 280adaac246c5650fe6f34a02bfda6ac6885f918 |
| parent | c9690916e5fe04a174a142580a9990e2593e0edd |
| signature |
See #3288. Root cause appears to be #3291.1 files changed, 5 insertions(+), 0 deletions(-)
std/io/test.zig+5| ... | ... | @@ -611,6 +611,11 @@ test "c out stream" { |
| 611 | 611 | } |
| 612 | 612 | |
| 613 | 613 | 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 | ||
| 614 | 619 | const tmp_file_name = "temp_test_file.txt"; |
| 615 | 620 | var file = try File.openWrite(tmp_file_name); |
| 616 | 621 | defer { |