Home | History | Annotate | Download | only in libtests

Lines Matching refs:WARNINGS

510    WARNINGS,       /* switches on warnings */
525 #define STRICT 0x020 /* Fail on warnings as well as errors */
535 * warnings (--relaxes) or nothing worse than information (--strict)
537 #define RESULT_STRICT(r) (((r) & ~((1U<<WARNINGS)-1)) == 0)
596 dp->options = WARNINGS; /* default to !verbose, !quiet */
674 /* Required to quiet GNUC warnings when the compiler sees a stdarg function
705 case VERBOSE: case WARNINGS: case ERRORS: case QUIET:
1568 else if (ret < ERRORS) /* shouldn't longjmp on warnings */
1591 else if (strcmp(name, "--warnings") == 0)
1592 d.options = (d.options & ~LEVEL_MASK) | WARNINGS;