From ec27b2a1d369d70de3a277a1057bc81c6f357fea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Wei=C3=9Fschuh?= Date: Mon, 9 Jan 2023 21:38:06 +0000 Subject: [PATCH] tests: add TAP version line MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise new versions of "meson test" will report a warning about every test. Signed-off-by: Thomas Weißschuh --- tests/weston-test-runner.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/weston-test-runner.c b/tests/weston-test-runner.c index 6bea6705..1651fe1b 100644 --- a/tests/weston-test-runner.c +++ b/tests/weston-test-runner.c @@ -662,6 +662,7 @@ main(int argc, char *argv[]) fi_end = fi + 1; } + printf("TAP version 13\n"); tap_plan(&harness->data, fi_end - fi); testlog("Iterating through %d fixtures.\n", fi_end - fi);