| 94 | |
| 95 | ATTRIBUTE_FORMAT ((printf, 1, 2)) |
| 96 | static _Noreturn void |
| 97 | test_syntax_error (char const *format, ...) |
| 98 | { |
| 99 | va_list ap; |
| 100 | va_start (ap, format); |
| 101 | verror (0, 0, format, ap); |
| 102 | test_exit (TEST_FAILURE); |
| 103 | } |
| 104 | |
| 105 | /* Increment our position in the argument list. Check that we're not |
| 106 | past the end of the argument list. This check is suppressed if the |
no outgoing calls
no test coverage detected