Added test runtime to make testmarks

This actually makes the make testmark rule somewhat useful.
This commit is contained in:
Christopher Haster
2024-05-28 13:51:58 -05:00
parent f334150cda
commit 223ebc768f
+2 -1
View File
@@ -393,11 +393,12 @@ test-list list-tests: test-runner
## Summarize the test results ## Summarize the test results
.PHONY: testmarks .PHONY: testmarks
testmarks: SUMMARYFLAGS+=-spassed testmarks: SUMMARYFLAGS+=-Stime
testmarks: $(TEST_CSV) $(BUILDDIR)/lfs.test.csv testmarks: $(TEST_CSV) $(BUILDDIR)/lfs.test.csv
$(strip ./scripts/summary.py $(TEST_CSV) \ $(strip ./scripts/summary.py $(TEST_CSV) \
-bsuite \ -bsuite \
-fpassed=test_passed \ -fpassed=test_passed \
-ftime=test_time \
$(SUMMARYFLAGS)) $(SUMMARYFLAGS))
## Compare test results against a previous run ## Compare test results against a previous run