aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2021-03-10 17:46:12 +0100
committerThomas Huth <thuth@redhat.com>2021-03-12 15:46:30 +0100
commit8e19c0098c290e2dea060eec113c4bf104b1f82c (patch)
tree4ba29932b4215024a331962d4bf5e48d041329a0
parent342409564ca6fec299cea3cb618156c649748a4c (diff)
downloadqemu-8e19c0098c290e2dea060eec113c4bf104b1f82c.zip
qemu-8e19c0098c290e2dea060eec113c4bf104b1f82c.tar.gz
qemu-8e19c0098c290e2dea060eec113c4bf104b1f82c.tar.bz2
tests: remove "make check-speed" in favor of "make bench"
"make check-speed" has been broken since the removal of ninja2make last October. It was just a backwards-compatibility alias for "make bench-speed", which in turn is in principle a subset of "make bench". Advertise the latter and drop "make check-speed" completely since no one has noticed. Reported-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Message-Id: <20210310164612.285362-1-pbonzini@redhat.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Willian Rampazzo <willianr@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
-rw-r--r--tests/Makefile.include8
1 files changed, 2 insertions, 6 deletions
diff --git a/tests/Makefile.include b/tests/Makefile.include
index 799e471..8f220e1 100644
--- a/tests/Makefile.include
+++ b/tests/Makefile.include
@@ -3,13 +3,13 @@
.PHONY: check-help
check-help:
@echo "Regression testing targets:"
- @echo
@echo " $(MAKE) check Run block, qapi-schema, unit, softfloat, qtest and decodetree tests"
+ @echo " $(MAKE) bench Run speed tests"
@echo
+ @echo "Individual test suites:"
@echo " $(MAKE) check-qtest-TARGET Run qtest tests for given target"
@echo " $(MAKE) check-qtest Run qtest tests"
@echo " $(MAKE) check-unit Run qobject tests"
- @echo " $(MAKE) check-speed Run qobject speed tests"
@echo " $(MAKE) check-qapi-schema Run QAPI schema tests"
@echo " $(MAKE) check-block Run block tests"
ifneq ($(filter $(all-check-targets), check-softfloat),)
@@ -155,8 +155,4 @@ check-clean:
clean: check-clean
-# For backwards compatibility
-
-check-speed: bench-speed
-
endif