ObjFW  Check-in [5d6b38e9ce]

Overview
Comment:ObjFWTest: Number of failed tests as exit code
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 5d6b38e9ce48f3247aa7abd358a9e3045606d19a46543f7197a9ea223c8f9435
User & Date: js on 2024-02-11 13:57:51
Other Links: manifest | tags
Context
2024-02-11
15:00
ObjFWTest: Use nicer colors check-in: 5b3ba754b6 user: js tags: trunk
13:57
ObjFWTest: Number of failed tests as exit code check-in: 5d6b38e9ce user: js tags: trunk
12:06
ObjFWTest: Add OTAssertThrows(Specific) check-in: 9b42860950 user: js tags: trunk
Changes

Modified src/test/OTAppDelegate.m from [94d0e3c3f7] to [8b6e2b32dd].

181
182
183
184
185
186
187
188
189
190
			objc_autoreleasePoolPop(pool);
		}
	}

	[OFStdOut writeFormat: @"%zu test(s) succeeded, %zu test(s) failed.\n",
			       numSucceeded, numFailed];

	[OFApplication terminate];
}
@end







|


181
182
183
184
185
186
187
188
189
190
			objc_autoreleasePoolPop(pool);
		}
	}

	[OFStdOut writeFormat: @"%zu test(s) succeeded, %zu test(s) failed.\n",
			       numSucceeded, numFailed];

	[OFApplication terminateWithStatus: (int)numFailed];
}
@end