| author | |
| committer | |
| log | 9dec3108260638dd81dd5110bcf87d58f6834d25 |
| tree | deaf697632fd462692b1166d02fe3f237b7ec69a |
| parent | c910f03a7b7a42bd742b7447e1101e07a2a12d74 |
1 files changed, 4 insertions(+), 1 deletions(-)
lib/std/os/linux/test.zig+4-1| ... | ... | @@ -24,7 +24,10 @@ test "fallocate" { |
| 24 | 24 | 0 => {}, |
| 25 | 25 | linux.ENOSYS => return error.SkipZigTest, |
| 26 | 26 | linux.EOPNOTSUPP => return error.SkipZigTest, |
| 27 | else => unreachable, | |
| 27 | else |errno| => { | |
| 28 | std.debug.print("Unhandled Errno:" errno); | |
| 29 | return error.SkipZigTest; | |
| 30 | }, | |
| 28 | 31 | } |
| 29 | 32 | |
| 30 | 33 | expect((try file.stat()).size == len); |