Differences From Artifact [2f53dc9a06]:
- File
tests/OFSPXSocketTests.m
— part of check-in
[ccc6a77c55]
at
2022-08-06 14:43:01
on branch trunk
— Reorder node and network of IPX sockets
This is more standard, albeit -[connectToNetwork:node:port:] sounding a
little bit more like you connect to a network rather than a node. (user: js, size: 5175) [annotate] [blame] [check-ins using] [more...]
To Artifact [c95d72f728]:
- File tests/OFSPXSocketTests.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: 5187) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
165 166 167 168 169 170 171 | port: port]; [[OFRunLoop mainRunLoop] runUntilDate: [OFDate dateWithTimeIntervalSinceNow: 2]]; TEST(@"-[asyncAccept] & -[asyncConnectToNetwork:node:port:]", delegate->_accepted && delegate->_connected) | | | 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
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[OFSPXSocket] -[asyncAccept] & "
@"-[asyncConnectToNetwork:node:port:]: select() "
@"not supported for SPX, skipping test"];
|
| ︙ | ︙ |