aboutsummaryrefslogtreecommitdiff
path: root/lib/std/io/test.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2019-09-27 18:19:21 -0400
committerAndrew Kelley <andrew@ziglang.org>2019-09-27 18:19:21 -0400
commitce0e7940926ec4c4eeb95e2d5b67554de3863a56 (patch)
tree7d53a374b7bd3266d33f175b9736d5665a566901 /lib/std/io/test.zig
parent579301c2afc28137e67d5e6c894fe7970519ed3d (diff)
downloadzig-ce0e7940926ec4c4eeb95e2d5b67554de3863a56.tar.gz
zig-ce0e7940926ec4c4eeb95e2d5b67554de3863a56.zip
fix glibc builds on aarch64-linux-gnu
There was a missing include path in the compilation line, leading to incorrect fstat ABI. closes #3291
Diffstat (limited to 'lib/std/io/test.zig')
-rw-r--r--lib/std/io/test.zig9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/std/io/test.zig b/lib/std/io/test.zig
index 537a0b9719..8b2dc9e894 100644
--- a/lib/std/io/test.zig
+++ b/lib/std/io/test.zig
@@ -11,10 +11,6 @@ const fs = std.fs;
const File = std.fs.File;
test "write a file, read it, then delete it" {
- if (builtin.arch == .aarch64 and builtin.glibc_version != null) {
- // TODO https://github.com/ziglang/zig/issues/3288
- return error.SkipZigTest;
- }
var raw_bytes: [200 * 1024]u8 = undefined;
var allocator = &std.heap.FixedBufferAllocator.init(raw_bytes[0..]).allocator;
@@ -611,11 +607,6 @@ 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 {