Differences From Artifact [97e67aa7ba]:
- File
tests/TestsAppDelegate.m
— part of check-in
[d71abc5366]
at
2018-08-17 01:17:14
on branch trunk
— AmigaOS 4: Do not use libauto
libauto loads the libraries too late. (user: js, size: 11071) [annotate] [blame] [check-ins using]
To Artifact [6a3d9e4d37]:
- File tests/TestsAppDelegate.m — part of check-in [3d67a890fb] at 2018-08-18 17:01:11 on branch trunk — OFDNSResolver: Obtain name servers on AmigaOS 4 (user: js, size: 11123) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
81 82 83 84 85 86 87 |
int
main(int argc, char *argv[])
{
#ifdef OF_PSP
int tid;
#endif
| | | > | | 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
int
main(int argc, char *argv[])
{
#ifdef OF_PSP
int tid;
#endif
#if defined(OF_OBJFW_RUNTIME) && !defined(OF_WINDOWS) && !defined(OF_AMIGAOS)
/*
* This does not work on Win32 if ObjFW is built as a DLL.
*
* On AmigaOS, some destructors need to be able to send messages.
* Calling objc_exit() via atexit() would result in the runtime being
* destructed before for the destructors ran.
*/
atexit(objc_exit);
#endif
/* We need deterministic hashes for tests */
of_hash_seed = 0;
|
| ︙ | ︙ |