Home | History | Annotate | Download | only in libtests

Lines Matching refs:WARNINGS

467    WARNINGS,       /* switches on warnings */
482 #define STRICT 0x020 /* Fail on warnings as well as errors */
491 * warnings (--relaxes) or nothing worse than information (--strict)
493 #define RESULT_STRICT(r) (((r) & ~((1U<<WARNINGS)-1)) == 0)
552 dp->options = WARNINGS; /* default to !verbose, !quiet */
619 /* Required to quiet GNUC warnings when the compiler sees a stdarg function
650 case VERBOSE: case WARNINGS: case ERRORS: case QUIET:
1483 else if (ret < ERRORS) /* shouldn't longjmp on warnings */
1506 else if (strcmp(name, "--warnings") == 0)
1507 d.options = (d.options & ~LEVEL_MASK) | WARNINGS;