qapi: Improve reporting of redefinition
[qemu/armbru.git] / tests / tcg / multiarch / Makefile.target
blob035b09c8533d4c8c05c1b9058d265ecb4dab29c8
1 # -*- Mode: makefile -*-
3 # Multiarch Tests - included from tests/tcg/Makefile.target
5 # These tests are plain C and built without any architecture specific code.
8 MULTIARCH_SRC=$(SRC_PATH)/tests/tcg/multiarch
10 # Set search path for all sources
11 VPATH           += $(MULTIARCH_SRC)
12 MULTIARCH_SRCS   =$(notdir $(wildcard $(MULTIARCH_SRC)/*.c))
13 MULTIARCH_TESTS  =$(filter-out float_helpers, $(MULTIARCH_SRCS:.c=))
16 # The following are any additional rules needed to build things
20 float_%: LDFLAGS+=-lm
21 float_%: float_%.c float_helpers.c
22         $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $< $(MULTIARCH_SRC)/float_helpers.c -o $@ $(LDFLAGS)
24 run-float_%: float_%
25         $(call run-test,$<, $(QEMU) $(QEMU_OPTS) $<,"$< on $(TARGET_NAME)")
26         $(call conditional-diff-out,$<,$(SRC_PATH)/tests/tcg/$(TARGET_NAME)/$<.ref)
29 testthread: LDFLAGS+=-lpthread
31 # We define the runner for test-mmap after the individual
32 # architectures have defined their supported pages sizes. If no
33 # additional page sizes are defined we only run the default test.
35 # default case (host page size)
36 run-test-mmap: test-mmap
37         $(call run-test, test-mmap, $(QEMU) $<, \
38                 "$< (default) on $(TARGET_NAME)")
40 # additional page sizes (defined by each architecture adding to EXTRA_RUNS)
41 run-test-mmap-%: test-mmap
42         $(call run-test, test-mmap-$*, $(QEMU) -p $* $<,\
43                 "$< ($* byte pages) on $(TARGET_NAME)")
45 # Update TESTS
46 TESTS += $(MULTIARCH_TESTS)