Differences From Artifact [f308a3ebf8]:
- File
tests/OFSPXStreamSocketTests.m
— part of check-in
[89e2862b87]
at
2022-09-23 18:20:52
on branch trunk
— OFSPXStreamSocketTests: Catch EPROTONOSUPPORT
Wine uses this instead. (user: js, size: 5438) [annotate] [blame] [check-ins using]
To Artifact [af4ba0ff2c]:
- File tests/OFSPXStreamSocketTests.m — part of check-in [0596a2f378] at 2022-09-24 17:06:42 on branch trunk — tests/OFSPX*SocketTests.m: Fix missed rename (user: js, size: 5450) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
169 170 171 172 173 174 175 | port: port]; [[OFRunLoop mainRunLoop] runUntilDate: [OFDate dateWithTimeIntervalSinceNow: 2]]; TEST(@"-[asyncAccept] & -[asyncConnectToNetwork:node:port:]", delegate->_accepted && delegate->_connected) | | | 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 |
port: port];
[[OFRunLoop mainRunLoop] runUntilDate:
[OFDate dateWithTimeIntervalSinceNow: 2]];
TEST(@"-[asyncAccept] & -[asyncConnectToNetwork:node:port:]",
delegate->_accepted && delegate->_connected)
} @catch (OFObserveKernelEventsFailedException *e) {
switch (e.errNo) {
case ENOTSOCK:
[OFStdOut setForegroundColor: [OFColor lime]];
[OFStdOut writeLine:
@"\r[OFSPXStreamSocket] -[asyncAccept] & "
@"-[asyncConnectToNetwork:node:port:]: select() "
@"not supported for SPX, skipping test"];
|
| ︙ | ︙ |