ObjFW  Check-in [8a01db8654]

Overview
Comment:tests: Fix typo
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 8a01db86549488ecccaee040fec385373e91b60c29001f5cea528e7ecc497ad0
User & Date: js on 2020-09-27 23:27:40
Other Links: manifest | tags
Context
2020-09-29
21:31
runtime: Remove lookup-asm-powerpc-macho.S check-in: 3580326d70 user: js tags: trunk
2020-09-27
23:27
tests: Fix typo check-in: 8a01db8654 user: js tags: trunk
23:27
Fix missing include check-in: bb18681460 user: js tags: trunk
Changes

Modified tests/OFSCTPSocketTests.m from [0dc496f2aa] to [810fa289fa].

38
39
40
41
42
43
44
45

46
47
48
49
50
51
52
38
39
40
41
42
43
44

45
46
47
48
49
50
51
52







-
+







	@try {
		TEST(@"-[bindToHost:port:]",
		    (port = [server bindToHost: @"127.0.0.1"
					  port: 0]))
	} @catch (OFBindFailedException *e) {
		switch (e.errNo) {
		case EPROTONOSUPPORT:
			[of_stdout foregroundColor: [OFColor lime]];
			[of_stdout setForegroundColor: [OFColor lime]];
			[of_stdout writeLine:
			    @"[OFSCTPSocket] -[bindToHost:port:]: "
			    @"SCTP unsupported, skipping tests"];
			break;
		default:
			@throw e;
		}