From eae660f3065f2557cc9056046b677b509691331d Mon Sep 17 00:00:00 2001 From: Rico Tzschichholz Date: Sat, 23 Oct 2021 15:27:12 +0200 Subject: [PATCH] tests: Add "no error type in catch" tests to increase coverage --- tests/Makefile.am | 1 + tests/errors/catch-no-error-type.test | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 tests/errors/catch-no-error-type.test diff --git a/tests/Makefile.am b/tests/Makefile.am index 6ba6e3b43..de919b23b 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -633,6 +633,7 @@ TESTS = \ objects/with-nested-unambigous-signal.vala \ errors/catch-error-code.vala \ errors/catch-in-finally.vala \ + errors/catch-no-error-type.test \ errors/default-gtype.vala \ errors/errors.vala \ errors/errorcode.vala \ diff --git a/tests/errors/catch-no-error-type.test b/tests/errors/catch-no-error-type.test new file mode 100644 index 000000000..89df9b5ff --- /dev/null +++ b/tests/errors/catch-no-error-type.test @@ -0,0 +1,7 @@ +Invalid Code + +void main () { + try { + } catch (int e) { + } +} -- 2.47.2