hs-test: logging improvements
[vpp.git] / extras / hs-test / Makefile
index 54b95c3..6ee89bc 100644 (file)
@@ -95,9 +95,11 @@ build-vpp-debug:
 
 .PHONY: test
 test: .deps.ok .build.ok
-       @bash ./test --persist=$(PERSIST) --verbose=$(VERBOSE) \
+       -bash ./test --persist=$(PERSIST) --verbose=$(VERBOSE) \
                --unconfigure=$(UNCONFIGURE) --debug=$(DEBUG) --test=$(TEST) --cpus=$(CPUS) \
                --vppsrc=$(VPPSRC) --parallel=$(PARALLEL) --repeat=$(REPEAT)
+       $(call jq-summary)
+       @bash ./script/compress.sh
 
 .PHONY: test-debug
 test-debug: .deps.ok .build_debug.ok
@@ -142,3 +144,7 @@ install-deps:
 fixstyle:
        @gofmt -w .
        @go mod tidy
+
+# splitting this into multiple lines breaks the command
+jq-summary = @jq -r '.[0] | .SpecReports[] | select(.State == "failed") | select(.Failure != null) | "TestName: \(.LeafNodeText)\nMessage:\n\(.Failure.Message)\n Full Stack Trace:\n\(.Failure.Location.FullStackTrace)\n"' summary/report.json > summary/failed-summary.log \
+       && echo "Summary generated -> failed-summary.log"