xref: /qemu/tests/tcg/multiarch/Makefile.target (revision e3bcf57c)
1# -*- Mode: makefile -*-
2#
3# Multiarch Tests - included from tests/tcg/Makefile.target
4#
5# These tests are plain C and built without any architecture specific code.
6#
7
8MULTIARCH_SRC=$(SRC_PATH)/tests/tcg/multiarch
9
10# Set search path for all sources
11VPATH 		+= $(MULTIARCH_SRC)
12MULTIARCH_SRCS   =$(notdir $(wildcard $(MULTIARCH_SRC)/*.c))
13MULTIARCH_TESTS  =$(filter-out float_helpers, $(MULTIARCH_SRCS:.c=))
14
15#
16# The following are any additional rules needed to build things
17#
18
19
20float_%: LDFLAGS+=-lm
21float_%: float_%.c float_helpers.c
22	$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $< $(MULTIARCH_SRC)/float_helpers.c -o $@ $(LDFLAGS)
23
24run-float_%: float_%
25	$(call run-test,$<, $(QEMU) $(QEMU_OPTS) $<,"$< on $(TARGET_NAME)")
26	$(call conditional-diff-out,$<,$(SRC_PATH)/tests/tcg/$(TARGET_NAME)/$<.ref)
27
28
29testthread: LDFLAGS+=-lpthread
30
31threadcount: LDFLAGS+=-lpthread
32
33signals: LDFLAGS+=-lrt -lpthread
34
35# We define the runner for test-mmap after the individual
36# architectures have defined their supported pages sizes. If no
37# additional page sizes are defined we only run the default test.
38
39# default case (host page size)
40run-test-mmap: test-mmap
41	$(call run-test, test-mmap, $(QEMU) $<, \
42		"$< (default) on $(TARGET_NAME)")
43
44# additional page sizes (defined by each architecture adding to EXTRA_RUNS)
45run-test-mmap-%: test-mmap
46	$(call run-test, test-mmap-$*, $(QEMU) -p $* $<,\
47		"$< ($* byte pages) on $(TARGET_NAME)")
48
49ifneq ($(HAVE_GDB_BIN),)
50GDB_SCRIPT=$(SRC_PATH)/tests/guest-debug/run-test.py
51
52run-gdbstub-sha1: sha1
53	$(call run-test, $@, $(GDB_SCRIPT) \
54		--gdb $(HAVE_GDB_BIN) \
55		--qemu $(QEMU) --qargs "$(QEMU_OPTS)" \
56		--bin $< --test $(MULTIARCH_SRC)/gdbstub/sha1.py, \
57	"basic gdbstub support")
58
59EXTRA_RUNS += run-gdbstub-sha1
60
61run-gdbstub-qxfer-auxv-read: sha1
62	$(call run-test, $@, $(GDB_SCRIPT) \
63		--gdb $(HAVE_GDB_BIN) \
64		--qemu $(QEMU) --qargs "$(QEMU_OPTS)" \
65		--bin $< --test $(MULTIARCH_SRC)/gdbstub/test-qxfer-auxv-read.py, \
66	"basic gdbstub qXfer:auxv:read support")
67
68else
69run-gdbstub-%:
70	$(call skip-test, "gdbstub test $*", "need working gdb")
71endif
72EXTRA_RUNS += run-gdbstub-sha1 run-gdbstub-qxfer-auxv-read
73
74# ARM Compatible Semi Hosting Tests
75#
76# Despite having ARM in the name we actually have several
77# architectures that implement it. We gate the tests on the feature
78# appearing in config.
79#
80ifeq ($(CONFIG_ARM_COMPATIBLE_SEMIHOSTING),y)
81VPATH += $(MULTIARCH_SRC)/arm-compat-semi
82
83# Add -I path back to TARGET_NAME for semicall.h
84semihosting: CFLAGS+=-I$(SRC_PATH)/tests/tcg/$(TARGET_NAME)
85
86run-semihosting: semihosting
87	$(call run-test,$<,$(QEMU) $< 2> $<.err, "$< on $(TARGET_NAME)")
88
89run-plugin-semihosting-with-%:
90	$(call run-test, $@, $(QEMU) $(QEMU_OPTS) \
91		-plugin $(PLUGIN_LIB)/$(call extract-plugin,$@) \
92		 $(call strip-plugin,$<) 2> $<.err, \
93		"$< on $(TARGET_NAME) with $*")
94
95semiconsole: CFLAGS+=-I$(SRC_PATH)/tests/tcg/$(TARGET_NAME)
96
97run-semiconsole: semiconsole
98	$(call skip-test, $<, "MANUAL ONLY")
99
100run-plugin-semiconsole-with-%:
101	$(call skip-test, $<, "MANUAL ONLY")
102
103TESTS += semihosting semiconsole
104endif
105
106# Update TESTS
107TESTS += $(MULTIARCH_TESTS)
108