Dave Bakker
11 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
crates/test-programs/src/bin/preview2_udp_bind.rs
|
|
@ -28,7 +28,7 @@ fn test_udp_bind_specific_port(net: &Network, ip: IpAddress) { |
|
|
|
|
|
|
|
// Concurrent invocations of this test can yield `AddressInUse` and that
|
|
|
|
// same error can show up on Windows as `AccessDenied`.
|
|
|
|
Err(ErrorCode::AddressInUse | ErrorCode::AccessDenied) => {} |
|
|
|
Err(ErrorCode::AddressInUse | ErrorCode::AccessDenied) => return, |
|
|
|
r => r.unwrap(), |
|
|
|
} |
|
|
|
|
|
|
|