Commit c5fb56f9 authored by Max Kellermann's avatar Max Kellermann

test/run_decoder: catch and print C++ exceptions

parent b67e7df3
...@@ -29,13 +29,15 @@ ...@@ -29,13 +29,15 @@
#include "util/Error.hxx" #include "util/Error.hxx"
#include "Log.hxx" #include "Log.hxx"
#include <stdexcept>
#include <assert.h> #include <assert.h>
#include <unistd.h> #include <unistd.h>
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>
int main(int argc, char **argv) int main(int argc, char **argv)
{ try {
if (argc != 3) { if (argc != 3) {
fprintf(stderr, "Usage: run_decoder DECODER URI >OUT\n"); fprintf(stderr, "Usage: run_decoder DECODER URI >OUT\n");
return EXIT_FAILURE; return EXIT_FAILURE;
...@@ -89,5 +91,8 @@ int main(int argc, char **argv) ...@@ -89,5 +91,8 @@ int main(int argc, char **argv)
return EXIT_FAILURE; return EXIT_FAILURE;
} }
return 0; return EXIT_SUCCESS;
} catch (const std::exception &e) {
LogError(e);
return EXIT_FAILURE;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment