1.1 --- a/test/test-automation/runner.c Sat Jun 04 17:50:23 2011 +0300
1.2 +++ b/test/test-automation/runner.c Sat Jun 04 17:58:46 2011 +0300
1.3 @@ -52,7 +52,7 @@
1.4 #if defined(linux) || defined( __linux)
1.5 char *libName = "tests/libtest.so";
1.6 #else
1.7 - char *libName = "tests/libtestrect.dylib";
1.8 + char *libName = "tests/libtest.dylib";
1.9 #endif
1.10 return libName;
1.11 }
1.12 @@ -287,7 +287,11 @@
1.13
1.14 if(retVal) {
1.15 failureCount++;
1.16 - printf("%s (in %s): FAILED\n", testname, testSuiteName);
1.17 + if(retVal == 2) {
1.18 + printf("%s (in %s): FAILED -> No asserts\n", testname, testSuiteName);
1.19 + } else {
1.20 + printf("%s (in %s): FAILED\n", testname, testSuiteName);
1.21 + }
1.22 } else {
1.23 passCount++;
1.24 printf("%s (in %s): ok\n", testname, testSuiteName);