From 55eea9127a845e2a7f3db04f0c7a10ae5b3ef0f6 Mon Sep 17 00:00:00 2001 From: Ed Santiago Date: Wed, 8 Apr 2020 12:10:24 -0600 Subject: logformat: handle apiv2 results, add anchor links apiv2 tests emit TAP-compliant output; recognize it and highlight it the same way we do BATS tests. Add anchor links to TAP output, so other tools (e.g. cirrus-flake-summarize) can link to particular lines And, remove a "-f" from "wait" in test-apiv2; looks like there's some version of bash used in some CI VM that doesn't grok it. Signed-off-by: Ed Santiago --- test/apiv2/test-apiv2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/apiv2/test-apiv2') diff --git a/test/apiv2/test-apiv2 b/test/apiv2/test-apiv2 index b101be012..1af76b4be 100755 --- a/test/apiv2/test-apiv2 +++ b/test/apiv2/test-apiv2 @@ -355,7 +355,7 @@ done if [ -n "$service_pid" ]; then kill $service_pid - wait -f $service_pid + wait $service_pid fi test_count=$(<$testcounter_file) -- cgit v1.2.3-54-g00ecf