Home | History | Annotate | Download | only in libtests

Lines Matching defs:ERRORS

502    ERRORS,         /* just errors */
514 #define STRICT 0x020 /* Fail on warnings as well as errors */
516 #define CONTINUE 0x080 /* Continue on APP_FAIL errors */
527 #define RESULT_RELAXED(r) (((r) & ~((1U<<ERRORS)-1)) == 0)
537 png_uint_32 results; /* A mask of errors seen */
694 case VERBOSE: case WARNINGS: case ERRORS: case QUIET:
750 /* Errors cause this routine to exit to the fail code */
751 if (level > APP_FAIL || (level > ERRORS && !(dp->options & CONTINUE)))
1552 else if (ret < ERRORS) /* shouldn't longjmp on warnings */
1578 else if (strcmp(name, "--errors") == 0)
1579 d.options = (d.options & ~LEVEL_MASK) | ERRORS;
1647 int errors = 0;
1665 ++errors;
1686 return errors != 0;