ObjFW  Check-in [e267c68e6f]

Overview
Comment:Better skip UNIX sequenced packet socket tests
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | trunk
Files: files | file ages | folders
SHA3-256: e267c68e6f6a0d9ae7e9adef2f6f809812bf2926edc90ed82f248cfc29629729
User & Date: js on 2024-10-10 00:21:45
Other Links: manifest | tags
Context
2024-10-10
00:21
Better skip UNIX sequenced packet socket tests Leaf 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

	@try {
		[sockServer bindToPath: path];
	} @catch (OFBindSocketFailedException *e) {
		switch (e.errNo) {
		case EAFNOSUPPORT:
		case EPERM:


			OTSkip(@"UNIX sequenced packet sockets unsupported");
		default:
			@throw e;
		}
	}

	@try {







>
>







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 {