Differences From Artifact [a0e4ec5268]:
- File
tests/TestsAppDelegate.m
— part of check-in
[bd02f7426c]
at
2016-03-20 18:28:09
on branch trunk
— Nintendo 3DS: Call gfxExit() at exit
Also reduce the TOO_BIG constant in OFObjectTests, as apparently passing
sizes >= 2^31 to malloc() or realloc() breaks everything in weird ways
on the Nintendo 3DS. (user: js, size: 9715) [annotate] [blame] [check-ins using]
To Artifact [6d3f9eae25]:
- File tests/TestsAppDelegate.m — part of check-in [f2deed0464] at 2016-05-21 21:31:37 on branch trunk — Rename PropertiesTests to RuntimeTests (user: js, size: 9712) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
357 358 359 360 361 362 363 364 365 366 367 368 369 370 |
- (void)applicationDidFinishLaunching
{
#if defined(OF_WII) && defined(OF_HAVE_FILES)
[[OFFileManager defaultManager]
changeCurrentDirectoryPath: @"/apps/objfw-tests"];
#endif
[self objectTests];
#ifdef OF_HAVE_BLOCKS
[self blockTests];
#endif
[self stringTests];
[self dataArrayTests];
[self arrayTests];
| > > | 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 |
- (void)applicationDidFinishLaunching
{
#if defined(OF_WII) && defined(OF_HAVE_FILES)
[[OFFileManager defaultManager]
changeCurrentDirectoryPath: @"/apps/objfw-tests"];
#endif
[self runtimeTests];
[self forwardingTests];
[self objectTests];
#ifdef OF_HAVE_BLOCKS
[self blockTests];
#endif
[self stringTests];
[self dataArrayTests];
[self arrayTests];
|
| ︙ | ︙ | |||
402 403 404 405 406 407 408 | #ifdef OF_HAVE_FILES [self serializationTests]; #endif [self JSONTests]; #ifdef OF_HAVE_PLUGINS [self pluginTests]; #endif | < < | 404 405 406 407 408 409 410 411 412 413 414 415 416 417 |
#ifdef OF_HAVE_FILES
[self serializationTests];
#endif
[self JSONTests];
#ifdef OF_HAVE_PLUGINS
[self pluginTests];
#endif
#if defined(OF_WII)
[self outputString: @"Press home button to exit!\n"
inColor: NO_COLOR];
for (;;) {
WPAD_ScanPads();
|
| ︙ | ︙ |