@@ -28,11 +28,13 @@ #ifdef OF_PLUGINS extern void plugin_tests(); #endif extern void string_tests(); extern void tcpsocket_tests(); +#ifdef OF_THREADS extern void thread_tests(); +#endif extern void xmlelement_tests(); extern void xmlparser_tests(); static int fails = 0; @@ -103,14 +105,16 @@ dataarray_tests(); array_tests(); dictionary_tests(); list_tests(); tcpsocket_tests(); +#ifdef OF_THREADS thread_tests(); +#endif xmlelement_tests(); xmlparser_tests(); #ifdef OF_PLUGINS plugin_tests(); #endif return fails; }