Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
std: disable flaky tcp server test
Browse files Browse the repository at this point in the history
Tracking issue: ziglang#18315
  • Loading branch information
andrewrk committed Dec 19, 2023
1 parent f545fc2 commit cd7960e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/std/net/test.zig
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,10 @@ fn generateFileName(base_name: []const u8) ![]const u8 {

test "non-blocking tcp server" {
if (builtin.os.tag == .wasi) return error.SkipZigTest;
if (true) {
// https://github.com/ziglang/zig/issues/18315
return error.SkipZigTest;
}

const localhost = try net.Address.parseIp("127.0.0.1", 0);
var server = net.StreamServer.init(.{ .force_nonblocking = true });
Expand Down

0 comments on commit cd7960e

Please sign in to comment.