Home | History | Annotate | Download | only in libtests

Lines Matching defs:WARNINGS

499    WARNINGS,       /* switches on warnings */
514 #define STRICT 0x020 /* Fail on warnings as well as errors */
524 * warnings (--relaxes) or nothing worse than information (--strict)
526 #define RESULT_STRICT(r) (((r) & ~((1U<<WARNINGS)-1)) == 0)
585 dp->options = WARNINGS; /* default to !verbose, !quiet */
663 /* Required to quiet GNUC warnings when the compiler sees a stdarg function
694 case VERBOSE: case WARNINGS: case ERRORS: case QUIET:
1552 else if (ret < ERRORS) /* shouldn't longjmp on warnings */
1575 else if (strcmp(name, "--warnings") == 0)
1576 d.options = (d.options & ~LEVEL_MASK) | WARNINGS;