Bump to libxml2 2.9.7
[platform/upstream/libxml2.git] / runtest.c
index 6201a66..3d19a01 100644 (file)
--- a/runtest.c
+++ b/runtest.c
@@ -4506,6 +4506,19 @@ runtest(int i) {
     res = launchTests(&testDescriptions[i]);
     if (res != 0)
        ret++;
+
+#if 1
+       if( (nb_errors == old_errors) && (nb_leaks == old_leaks) ){
+               printf("TEST: PASS: %s\n", testDescriptions[i].desc);
+       }
+       else if ( nb_errors != old_errors ) {
+               printf("TEST: FAIL: %s\n", testDescriptions[i].desc);
+       }
+       else {
+               printf("TEST: SKIP: %s\n", testDescriptions[i].desc);
+       }
+#endif
+
     if (verbose) {
        if ((nb_errors == old_errors) && (nb_leaks == old_leaks))
            printf("Ran %d tests, no errors\n", nb_tests - old_tests);