From 223ebc768ff307e32ed14d747811c2671311453f Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Tue, 28 May 2024 13:51:58 -0500 Subject: [PATCH] Added test runtime to make testmarks This actually makes the make testmark rule somewhat useful. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4e3095b4..04b1e36b 100644 --- a/Makefile +++ b/Makefile @@ -393,11 +393,12 @@ test-list list-tests: test-runner ## Summarize the test results .PHONY: testmarks -testmarks: SUMMARYFLAGS+=-spassed +testmarks: SUMMARYFLAGS+=-Stime testmarks: $(TEST_CSV) $(BUILDDIR)/lfs.test.csv $(strip ./scripts/summary.py $(TEST_CSV) \ -bsuite \ -fpassed=test_passed \ + -ftime=test_time \ $(SUMMARYFLAGS)) ## Compare test results against a previous run