2018-04-06 14:32:18 +02:00
|
|
|
# -*- Mode: makefile -*-
|
|
|
|
#
|
|
|
|
# TCG tests
|
|
|
|
#
|
|
|
|
# These are complicated by the fact we want to build them for guest
|
|
|
|
# systems. This requires knowing what guests we are building and which
|
|
|
|
# ones we have cross-compilers for or docker images with
|
|
|
|
# cross-compilers.
|
|
|
|
#
|
|
|
|
# The tests themselves should be as minimal as possible as
|
|
|
|
# cross-compilers don't always have a large amount of libraries
|
|
|
|
# available.
|
|
|
|
#
|
|
|
|
# We only include the host build system for SRC_PATH and we don't
|
|
|
|
# bother with the common rules.mk. We expect the following:
|
|
|
|
#
|
|
|
|
# CC - the C compiler command
|
|
|
|
# EXTRA_CFLAGS - any extra CFLAGS
|
|
|
|
# BUILD_STATIC - are we building static binaries
|
|
|
|
#
|
|
|
|
# By default all tests are statically compiled but some host systems
|
|
|
|
# may not package static libraries by default. If an external
|
|
|
|
# cross-compiler can only build dynamic libraries the user might need
|
|
|
|
# to make extra efforts to ensure ld.so can link at runtime when the
|
|
|
|
# tests are run.
|
|
|
|
#
|
|
|
|
# We also accept SPEED=slow to enable slower running tests
|
|
|
|
#
|
2018-11-29 23:19:21 +01:00
|
|
|
# We also expect to be in the tests build dir for the FOO-(linux-user|softmmu).
|
2018-04-06 14:32:18 +02:00
|
|
|
#
|
|
|
|
|
2012-10-16 22:00:23 +02:00
|
|
|
-include ../../config-host.mak
|
2018-04-06 14:32:18 +02:00
|
|
|
-include ../config-target.mak
|
2009-12-21 10:06:55 +01:00
|
|
|
|
2019-03-12 15:13:16 +01:00
|
|
|
# for including , in command strings
|
|
|
|
COMMA := ,
|
|
|
|
|
2018-04-06 14:32:18 +02:00
|
|
|
quiet-command = $(if $(V),$1,$(if $(2),@printf " %-7s %s\n" $2 $3 && $1, @$1))
|
2003-03-07 00:23:54 +01:00
|
|
|
|
2018-05-21 11:38:37 +02:00
|
|
|
# $1 = test name, $2 = cmd, $3 = desc
|
2019-03-12 15:13:16 +01:00
|
|
|
ifdef CONFIG_USER_ONLY
|
2018-05-21 11:38:37 +02:00
|
|
|
run-test = $(call quiet-command, timeout $(TIMEOUT) $2 > $1.out,"TEST",$3)
|
2019-03-12 15:13:16 +01:00
|
|
|
else
|
|
|
|
run-test = $(call quiet-command, timeout $(TIMEOUT) $2,"TEST",$3)
|
|
|
|
endif
|
2018-05-21 11:38:37 +02:00
|
|
|
|
|
|
|
# $1 = test name, $2 = reference
|
2019-07-05 13:56:35 +02:00
|
|
|
# to work around the pipe squashing the status we only pipe the result if
|
|
|
|
# we know it failed and then force failure at the end.
|
|
|
|
diff-out = $(call quiet-command, diff -q $1.out $2 || \
|
|
|
|
(diff -u $1.out $2 | head -n 10 && false), \
|
|
|
|
"DIFF","$1.out with $2")
|
2018-05-21 11:38:37 +02:00
|
|
|
|
|
|
|
# $1 = test name, $2 = reason
|
|
|
|
skip-test = @printf " SKIPPED %s on $(TARGET_NAME) because %s\n" $1 $2
|
|
|
|
|
2018-04-06 14:32:18 +02:00
|
|
|
# Tests we are building
|
|
|
|
TESTS=
|
2010-10-21 10:18:40 +02:00
|
|
|
|
2018-04-06 14:32:18 +02:00
|
|
|
# Start with a blank slate, the build targets get to add stuff first
|
|
|
|
CFLAGS=
|
|
|
|
QEMU_CFLAGS=
|
2003-02-24 21:14:06 +01:00
|
|
|
LDFLAGS=
|
|
|
|
|
2018-04-06 14:32:18 +02:00
|
|
|
# The QEMU for this TARGET
|
2018-11-29 23:19:21 +01:00
|
|
|
ifdef CONFIG_USER_ONLY
|
2018-04-06 14:32:18 +02:00
|
|
|
QEMU=../qemu-$(TARGET_NAME)
|
2018-11-29 23:19:21 +01:00
|
|
|
else
|
|
|
|
QEMU=../qemu-system-$(TARGET_NAME)
|
|
|
|
endif
|
2019-03-12 15:13:16 +01:00
|
|
|
QEMU_OPTS=
|
2010-10-21 10:18:40 +02:00
|
|
|
|
2018-12-06 12:09:17 +01:00
|
|
|
|
2018-04-06 14:32:18 +02:00
|
|
|
# If TCG debugging is enabled things are a lot slower
|
|
|
|
ifeq ($(CONFIG_DEBUG_TCG),y)
|
|
|
|
TIMEOUT=45
|
|
|
|
else
|
|
|
|
TIMEOUT=15
|
2003-03-07 00:23:54 +01:00
|
|
|
endif
|
2010-10-21 10:18:40 +02:00
|
|
|
|
2018-11-29 23:19:21 +01:00
|
|
|
ifdef CONFIG_USER_ONLY
|
2018-04-06 14:32:18 +02:00
|
|
|
# The order we include is important. We include multiarch, base arch
|
|
|
|
# and finally arch if it's not the same as base arch.
|
|
|
|
-include $(SRC_PATH)/tests/tcg/multiarch/Makefile.target
|
|
|
|
-include $(SRC_PATH)/tests/tcg/$(TARGET_BASE_ARCH)/Makefile.target
|
|
|
|
ifneq ($(TARGET_BASE_ARCH),$(TARGET_NAME))
|
|
|
|
-include $(SRC_PATH)/tests/tcg/$(TARGET_NAME)/Makefile.target
|
2005-03-02 23:19:12 +01:00
|
|
|
endif
|
2003-03-01 18:13:26 +01:00
|
|
|
|
2018-04-06 14:32:18 +02:00
|
|
|
# Add the common build options
|
|
|
|
CFLAGS+=-Wall -O0 -g -fno-strict-aliasing
|
|
|
|
ifeq ($(BUILD_STATIC),y)
|
|
|
|
LDFLAGS+=-static
|
|
|
|
endif
|
2003-06-15 21:37:07 +02:00
|
|
|
|
2018-04-06 14:32:18 +02:00
|
|
|
%: %.c
|
|
|
|
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $< -o $@ $(LDFLAGS)
|
2018-11-29 23:19:21 +01:00
|
|
|
else
|
|
|
|
# For softmmu targets we include a different Makefile fragement as the
|
|
|
|
# build options for bare programs are usually pretty different. They
|
|
|
|
# are expected to provide their own build recipes.
|
2019-03-05 12:40:31 +01:00
|
|
|
-include $(SRC_PATH)/tests/tcg/minilib/Makefile.target
|
2019-04-29 16:38:44 +02:00
|
|
|
-include $(SRC_PATH)/tests/tcg/multiarch/system/Makefile.softmmu-target
|
2018-11-29 23:19:21 +01:00
|
|
|
-include $(SRC_PATH)/tests/tcg/$(TARGET_BASE_ARCH)/Makefile.softmmu-target
|
|
|
|
ifneq ($(TARGET_BASE_ARCH),$(TARGET_NAME))
|
|
|
|
-include $(SRC_PATH)/tests/tcg/$(TARGET_NAME)/Makefile.softmmu-target
|
|
|
|
endif
|
|
|
|
|
|
|
|
endif
|
2003-06-15 21:37:07 +02:00
|
|
|
|
2018-04-06 14:32:18 +02:00
|
|
|
all: $(TESTS)
|
2007-04-30 04:02:17 +02:00
|
|
|
|
2018-04-06 14:32:18 +02:00
|
|
|
#
|
|
|
|
# Test Runners
|
|
|
|
#
|
|
|
|
# By default we just run the test with the appropriate QEMU for the
|
|
|
|
# target. More advanced tests may want to override the runner in their
|
|
|
|
# specific make rules. Additional runners for the same binary should
|
|
|
|
# be added to EXTRA_RUNS.
|
|
|
|
#
|
2006-12-14 15:48:11 +01:00
|
|
|
|
2018-04-06 14:32:18 +02:00
|
|
|
RUN_TESTS=$(patsubst %,run-%, $(TESTS))
|
|
|
|
RUN_TESTS+=$(EXTRA_RUNS)
|
2006-12-14 15:48:11 +01:00
|
|
|
|
2019-03-12 15:13:16 +01:00
|
|
|
ifdef CONFIG_USER_ONLY
|
2018-04-06 14:32:18 +02:00
|
|
|
run-%: %
|
2018-12-06 12:09:17 +01:00
|
|
|
$(call run-test, $<, $(QEMU) $(QEMU_OPTS) $<, "$< on $(TARGET_NAME)")
|
2019-03-12 15:13:16 +01:00
|
|
|
else
|
|
|
|
run-%: %
|
|
|
|
$(call run-test, $<, \
|
|
|
|
$(QEMU) -monitor none -display none \
|
|
|
|
-chardev file$(COMMA)path=$<.out$(COMMA)id=output \
|
|
|
|
$(QEMU_OPTS) $<, \
|
|
|
|
"$< on $(TARGET_NAME)")
|
|
|
|
endif
|
2007-10-08 15:38:27 +02:00
|
|
|
|
2019-02-27 16:42:18 +01:00
|
|
|
gdb-%: %
|
|
|
|
gdb --args $(QEMU) $(QEMU_OPTS) $<
|
|
|
|
|
2018-04-06 14:32:18 +02:00
|
|
|
.PHONY: run
|
|
|
|
run: $(RUN_TESTS)
|
2011-02-17 23:45:16 +01:00
|
|
|
|
2018-04-06 14:32:18 +02:00
|
|
|
# There is no clean target, the calling make just rm's the tests build dir
|