]> Zhao Yanbai Git Server - minix.git/commitdiff
Allow tests to fail on the first encountered error. 46/146/1
authorKees Jongenburger <kees.jongenburger@gmail.com>
Fri, 7 Dec 2012 09:49:34 +0000 (10:49 +0100)
committerKees Jongenburger <kees.jongenburger@gmail.com>
Tue, 11 Dec 2012 09:13:15 +0000 (10:13 +0100)
Pre increment errct in test to be able to fail on the first error.

test/common.c

index 2da265d974f8812a108516392c7fe906d0533929..7807d79da6b19caf318ebf96a44205baa2100b35 100644 (file)
@@ -106,7 +106,7 @@ int n;
   if (errct == 0) printf("\n");        /* finish header */
   printf("Subtest %d,  error %d,  errno %d: %s\n",
         subtest, n, errno, strerror(errno));
-  if (errct++ > MAX_ERROR) {
+  if (++errct > MAX_ERROR) {
        printf("Too many errors; test aborted\n");
        cleanup();
        exit(1);