Home | History | Annotate | Download | only in libtests

Lines Matching defs:ERRORS

513    ERRORS,         /* just errors */
525 #define STRICT 0x020 /* Fail on warnings as well as errors */
527 #define CONTINUE 0x080 /* Continue on APP_FAIL errors */
538 #define RESULT_RELAXED(r) (((r) & ~((1U<<ERRORS)-1)) == 0)
548 png_uint_32 results; /* A mask of errors seen */
705 case VERBOSE: case WARNINGS: case ERRORS: case QUIET:
761 /* Errors cause this routine to exit to the fail code */
762 if (level > APP_FAIL || (level > ERRORS && !(dp->options & CONTINUE)))
1568 else if (ret < ERRORS) /* shouldn't longjmp on warnings */
1594 else if (strcmp(name, "--errors") == 0)
1595 d.options = (d.options & ~LEVEL_MASK) | ERRORS;
1663 int errors = 0;
1681 ++errors;
1702 return errors != 0;