Differences From Artifact [c984b431f1]:
- File tests/OFUNIXStreamSocketTests.m — part of check-in [1a86b8175b] at 2022-02-12 07:46:07 on branch trunk — Update copyright (user: js, size: 2372) [annotate] [blame] [check-ins using] [more...]
To Artifact [40030e8cdb]:
- File
tests/OFUNIXStreamSocketTests.m
— part of check-in
[51a7aea28e]
at
2022-04-24 11:58:03
on branch trunk
— tests: Use /tmp for UNIX sockets on iOS
temporaryDirectoryPath is too long on the simulator. (user: js, size: 2510) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
25 26 27 28 29 30 31 |
- (void)UNIXStreamSocketTests
{
void *pool = objc_autoreleasePoolPush();
OFString *path;
OFUNIXStreamSocket *sockClient, *sockServer, *sockAccepted;
char buffer[5];
| | > > > | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
- (void)UNIXStreamSocketTests
{
void *pool = objc_autoreleasePoolPush();
OFString *path;
OFUNIXStreamSocket *sockClient, *sockServer, *sockAccepted;
char buffer[5];
#if defined(OF_HAVE_FILES) && !defined(OF_IOS)
path = [[OFSystemInfo temporaryDirectoryPath]
stringByAppendingPathComponent: [[OFUUID UUID] UUIDString]];
#else
/*
* We can have sockets, including UNIX sockets, while file support is
* disabled.
*
* We also use this code path for iOS, as the temporaryDirectoryPath is
* too long on the iOS simulator.
*/
path = [OFString stringWithFormat: @"/tmp/%@",
[[OFUUID UUID] UUIDString]];
#endif
TEST(@"+[socket]", (sockClient = [OFUNIXStreamSocket socket]) &&
(sockServer = [OFUNIXStreamSocket socket]))
|
| ︙ | ︙ |