diff options
author | louiz’ <louiz@louiz.org> | 2016-11-01 17:38:59 +0100 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2016-11-01 17:40:09 +0100 |
commit | e1934a0b5fb1589bcdd85b86b315d652488d0577 (patch) | |
tree | cd87d6f17ac096711151af1600c37e19665fe92b /src | |
parent | e565efd348e6337c7ab46765777fc653ea02a1cf (diff) | |
download | biboumi-e1934a0b5fb1589bcdd85b86b315d652488d0577.tar.gz biboumi-e1934a0b5fb1589bcdd85b86b315d652488d0577.tar.bz2 biboumi-e1934a0b5fb1589bcdd85b86b315d652488d0577.tar.xz biboumi-e1934a0b5fb1589bcdd85b86b315d652488d0577.zip |
Disable e2e tests on openbsd
Diffstat (limited to 'src')
-rw-r--r-- | src/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 5585672..019dff0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -12,6 +12,7 @@ #include <atomic> #include <signal.h> +#include <litesql.hpp> // A flag set by the SIGINT signal handler. static std::atomic<bool> stop(false); @@ -84,7 +85,7 @@ int main(int ac, char** av) try { open_database(); - } catch (...) { + } catch (const litesql::DatabaseError&) { return 1; } |