Overview
Comment: | Better skip UNIX sequenced packet socket tests |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
e267c68e6f6a0d9ae7e9adef2f6f8098 |
User & Date: | js on 2024-10-10 00:21:45 |
Other Links: | manifest | tags |
Context
2024-10-19
| ||
11:09 | Add -[OFStream tryReadStringWithEncoding:] check-in: 6e91e313a5 user: js tags: trunk | |
2024-10-10
| ||
00:21 | Better skip UNIX sequenced packet socket tests check-in: e267c68e6f user: js tags: trunk | |
2024-10-09
| ||
23:53 | Fix warning with Clang 19 check-in: 23249cfbc0 user: js tags: trunk | |
Changes
Modified tests/OFUNIXSequencedPacketSocketTests.m from [91b9fa295c] to [6176995a50].
︙ | |||
56 57 58 59 60 61 62 63 64 65 66 67 68 69 | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | + + | @try { [sockServer bindToPath: path]; } @catch (OFBindSocketFailedException *e) { switch (e.errNo) { case EAFNOSUPPORT: case EPERM: case EPROTONOSUPPORT: case ESOCKTNOSUPPORT: OTSkip(@"UNIX sequenced packet sockets unsupported"); default: @throw e; } } @try { |
︙ |