io_uring: try to pass windows/macos tests

This commit is contained in:
Igor Anić 2023-11-17 23:39:29 +01:00
parent ccf5a6cc5c
commit 7eee0d3353

View File

@ -4121,7 +4121,7 @@ test "openat_direct/close_direct" {
}
/// For use in tests. Returns SkipZigTest is kernel version is less than required.
fn skipKernelLessThan(required: std.SemanticVersion) !void {
inline fn skipKernelLessThan(required: std.SemanticVersion) !void {
if (builtin.os.tag != .linux) return error.SkipZigTest;
var uts: linux.utsname = undefined;