diff options
Diffstat (limited to '')
-rw-r--r-- | test/run_input.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/run_input.c b/test/run_input.c index c00698dff..651d36480 100644 --- a/test/run_input.c +++ b/test/run_input.c @@ -100,6 +100,12 @@ dump_input_stream(struct input_stream *is) break; } + if (!input_stream_check(is, &error)) { + g_warning("%s", error->message); + g_error_free(error); + return EXIT_FAILURE; + } + return 0; } |