From 5580cb13c900a3af595f305daa390b5314fca963 Mon Sep 17 00:00:00 2001 From: Pekka Paalanen Date: Mon, 8 Feb 2021 14:31:35 +0200 Subject: [PATCH] tests: switch to TAP This makes sub-tests visible in the junit output, making Gitlab test reports more detailed. This does not apply to zuc tests, which look like they could produce junit XML directly. And maybe TAP? Left for another time. Signed-off-by: Pekka Paalanen --- tests/meson.build | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/meson.build b/tests/meson.build index ca4313c4..6012a460 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -298,7 +298,12 @@ foreach t : tests install: false, ) - test(t.get('name'), t_exe, depends: t.get('test_deps', [])) + test( + t.get('name'), + t_exe, + depends: t.get('test_deps', []), + protocol: 'tap' + ) endforeach # FIXME: the multiple loops is lame. rethink this.