Home | History | Annotate | Download | only in libtests

Lines Matching defs:ERRORS

470    ERRORS,         /* just errors */
482 #define STRICT 0x020 /* Fail on warnings as well as errors */
484 #define CONTINUE 0x080 /* Continue on APP_FAIL errors */
494 #define RESULT_RELAXED(r) (((r) & ~((1U<<ERRORS)-1)) == 0)
504 png_uint_32 results; /* A mask of errors seen */
650 case VERBOSE: case WARNINGS: case ERRORS: case QUIET:
678 /* Errors cause this routine to exit to the fail code */
679 if (level > APP_FAIL || (level > ERRORS && !(dp->options & CONTINUE)))
1483 else if (ret < ERRORS) /* shouldn't longjmp on warnings */
1509 else if (strcmp(name, "--errors") == 0)
1510 d.options = (d.options & ~LEVEL_MASK) | ERRORS;
1572 int errors = 0;
1590 ++errors;
1608 return errors != 0;