Differences From Artifact [6d0cbb749a]:
- File tests/main.m — part of check-in [df5b90cf6a] at 2010-01-16 13:37:43 on branch trunk — Test if compiler supports properties and if so run property tests. (user: js, size: 2450) [annotate] [blame] [check-ins using]
To Artifact [4b584f059f]:
- File
tests/main.m
— part of check-in
[b91a8283fe]
at
2010-03-05 11:52:18
on branch 0.2
— Merge a few changesets from the default branch into the 0.2 branch.
Changesets:
* b95fcaa6d694
* 804c68d222b4
* da8cd738da3d
* 1109d5ce3419
* d03f5c1ca95d
* 2a7017722165
* 4fccdc79eeb7
* d228149fbc04
* 8782d412a4a6 (user: js, size: 2391) [annotate] [blame] [check-ins using]
1 | 1 2 3 4 5 6 7 8 9 | - + | /* |
| ︙ | |||
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | + - - | #import "OFAutoreleasePool.h" extern void array_tests(); extern void dataarray_tests(); extern void dictionary_tests(); extern void hashes_tests(); extern void list_tests(); extern void number_tests(); extern void object_tests(); #ifdef OF_PLUGINS extern void plugin_tests(); #endif #ifdef OF_HAVE_PROPERTIES extern void properties_tests(); #endif extern void string_tests(); extern void tcpsocket_tests(); #ifdef OF_THREADS extern void thread_tests(); #endif |
| ︙ | |||
105 106 107 108 109 110 111 112 113 114 115 | 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | + - - | object_tests(); hashes_tests(); string_tests(); dataarray_tests(); array_tests(); dictionary_tests(); list_tests(); number_tests(); tcpsocket_tests(); #ifdef OF_THREADS thread_tests(); #endif |