Overview
| Comment: | tests/OFSPX*SocketTests.m: Fix missed rename |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
0596a2f3781a9b4e76d83676a4dc75ad |
| User & Date: | js on 2022-09-24 17:06:42 |
| Other Links: | manifest | tags |
Context
|
2022-09-24
| ||
| 20:24 | Move OFWin32ConsoleStdIOStream to platforms (check-in: 9e29b98fc3 user: js tags: trunk) | |
| 17:06 | tests/OFSPX*SocketTests.m: Fix missed rename (check-in: 0596a2f378 user: js tags: trunk) | |
| 17:03 | Document more exceptions (check-in: 5202319334 user: js tags: trunk) | |
Changes
Modified tests/OFSPXSocketTests.m from [2f53dc9a06] to [c95d72f728].
| ︙ | ︙ | |||
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"];
|
| ︙ | ︙ |
Modified tests/OFSPXStreamSocketTests.m from [f308a3ebf8] to [af4ba0ff2c].
| ︙ | ︙ | |||
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"];
|
| ︙ | ︙ |