Makefile.include (94b4ec24b9752b0f3bc47c100ebf731b5369b48c) Makefile.include (c17a386b6afe608086aa4d260e29662865680b7f)
1# -*- Mode: makefile -*-
2
3.PHONY: check-help
4check-help:
5 @echo "Regression testing targets:"
6 @echo
7 @echo " $(MAKE) check Run block, qapi-schema, unit, softfloat, qtest and decodetree tests"
8 @echo

--- 36 unchanged lines hidden (view full) ---

45BUILD_TCG_TARGET_RULES=$(patsubst %,build-tcg-tests-%, $(TARGET_DIRS))
46CLEAN_TCG_TARGET_RULES=$(patsubst %,clean-tcg-tests-%, $(TARGET_DIRS))
47RUN_TCG_TARGET_RULES=$(patsubst %,run-tcg-tests-%, $(TARGET_DIRS))
48
49# Probe for the Docker Builds needed for each build
50$(foreach PROBE_TARGET,$(TARGET_DIRS), \
51 $(eval -include $(SRC_PATH)/tests/tcg/Makefile.prereqs))
52
1# -*- Mode: makefile -*-
2
3.PHONY: check-help
4check-help:
5 @echo "Regression testing targets:"
6 @echo
7 @echo " $(MAKE) check Run block, qapi-schema, unit, softfloat, qtest and decodetree tests"
8 @echo

--- 36 unchanged lines hidden (view full) ---

45BUILD_TCG_TARGET_RULES=$(patsubst %,build-tcg-tests-%, $(TARGET_DIRS))
46CLEAN_TCG_TARGET_RULES=$(patsubst %,clean-tcg-tests-%, $(TARGET_DIRS))
47RUN_TCG_TARGET_RULES=$(patsubst %,run-tcg-tests-%, $(TARGET_DIRS))
48
49# Probe for the Docker Builds needed for each build
50$(foreach PROBE_TARGET,$(TARGET_DIRS), \
51 $(eval -include $(SRC_PATH)/tests/tcg/Makefile.prereqs))
52
53build-tcg-tests-%: $(if $(CONFIG_PLUGIN),plugins)
53build-tcg-tests-%: $(if $(CONFIG_PLUGIN),test-plugins)
54 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) \
55 -f $(SRC_PATH)/tests/tcg/Makefile.qemu \
56 SRC_PATH=$(SRC_PATH) \
57 V="$(V)" TARGET="$*" guest-tests, \
58 "BUILD", "TCG tests for $*")
59
60run-tcg-tests-%: build-tcg-tests-% all
61 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) \

--- 97 unchanged lines hidden ---
54 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) \
55 -f $(SRC_PATH)/tests/tcg/Makefile.qemu \
56 SRC_PATH=$(SRC_PATH) \
57 V="$(V)" TARGET="$*" guest-tests, \
58 "BUILD", "TCG tests for $*")
59
60run-tcg-tests-%: build-tcg-tests-% all
61 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) \

--- 97 unchanged lines hidden ---