diff -r 8170f658f017 -r 311cac04d079 ucx/test.c --- a/ucx/test.c Sat Jul 20 11:13:26 2013 +0200 +++ b/ucx/test.c Mon Jul 22 11:39:06 2013 +0200 @@ -81,8 +81,8 @@ void ucx_test_run(UcxTestSuite* suite, FILE* output) { suite->success = 0; suite->failure = 0; - UCX_FOREACH (UcxTestList*, suite->tests, e) { - e->test(suite, output); + for (UcxTestList* elem = suite->tests ; elem ; elem = elem->next) { + elem->test(suite, output); } fwrite("\nAll test completed.\n", 1, 21, output); fprintf(output, " Total: %d\n Success: %d\n Failure: %d\n",