51c623b0de
This allows gdb to access the target’s auxiliary vector, which can be helpful for telling system libraries important details about the hardware, operating system, and process. Signed-off-by: Lirong Yuan <yuanzi@google.com> [AJB: minor tweaks to test case, update MAINTAINERS, restrict to Linux] Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20200730193932.3654677-1-yuanzi@google.com> Message-Id: <20210108224256.2321-7-alex.bennee@linaro.org>
72 lines
2.0 KiB
Makefile
72 lines
2.0 KiB
Makefile
# -*- Mode: makefile -*-
|
|
#
|
|
# Multiarch Tests - included from tests/tcg/Makefile.target
|
|
#
|
|
# These tests are plain C and built without any architecture specific code.
|
|
#
|
|
|
|
MULTIARCH_SRC=$(SRC_PATH)/tests/tcg/multiarch
|
|
|
|
# Set search path for all sources
|
|
VPATH += $(MULTIARCH_SRC)
|
|
MULTIARCH_SRCS =$(notdir $(wildcard $(MULTIARCH_SRC)/*.c))
|
|
MULTIARCH_TESTS =$(filter-out float_helpers, $(MULTIARCH_SRCS:.c=))
|
|
|
|
#
|
|
# The following are any additional rules needed to build things
|
|
#
|
|
|
|
|
|
float_%: LDFLAGS+=-lm
|
|
float_%: float_%.c float_helpers.c
|
|
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $< $(MULTIARCH_SRC)/float_helpers.c -o $@ $(LDFLAGS)
|
|
|
|
run-float_%: float_%
|
|
$(call run-test,$<, $(QEMU) $(QEMU_OPTS) $<,"$< on $(TARGET_NAME)")
|
|
$(call conditional-diff-out,$<,$(SRC_PATH)/tests/tcg/$(TARGET_NAME)/$<.ref)
|
|
|
|
|
|
testthread: LDFLAGS+=-lpthread
|
|
|
|
threadcount: LDFLAGS+=-lpthread
|
|
|
|
# We define the runner for test-mmap after the individual
|
|
# architectures have defined their supported pages sizes. If no
|
|
# additional page sizes are defined we only run the default test.
|
|
|
|
# default case (host page size)
|
|
run-test-mmap: test-mmap
|
|
$(call run-test, test-mmap, $(QEMU) $<, \
|
|
"$< (default) on $(TARGET_NAME)")
|
|
|
|
# additional page sizes (defined by each architecture adding to EXTRA_RUNS)
|
|
run-test-mmap-%: test-mmap
|
|
$(call run-test, test-mmap-$*, $(QEMU) -p $* $<,\
|
|
"$< ($* byte pages) on $(TARGET_NAME)")
|
|
|
|
ifneq ($(HAVE_GDB_BIN),)
|
|
GDB_SCRIPT=$(SRC_PATH)/tests/guest-debug/run-test.py
|
|
|
|
run-gdbstub-sha1: sha1
|
|
$(call run-test, $@, $(GDB_SCRIPT) \
|
|
--gdb $(HAVE_GDB_BIN) \
|
|
--qemu $(QEMU) --qargs "$(QEMU_OPTS)" \
|
|
--bin $< --test $(MULTIARCH_SRC)/gdbstub/sha1.py, \
|
|
"basic gdbstub support")
|
|
|
|
EXTRA_RUNS += run-gdbstub-sha1
|
|
|
|
run-gdbstub-qxfer-auxv-read: sha1
|
|
$(call run-test, $@, $(GDB_SCRIPT) \
|
|
--gdb $(HAVE_GDB_BIN) \
|
|
--qemu $(QEMU) --qargs "$(QEMU_OPTS)" \
|
|
--bin $< --test $(MULTIARCH_SRC)/gdbstub/test-qxfer-auxv-read.py, \
|
|
"basic gdbstub qXfer:auxv:read support")
|
|
|
|
EXTRA_RUNS += run-gdbstub-sha1 run-gdbstub-qxfer-auxv-read
|
|
endif
|
|
|
|
|
|
# Update TESTS
|
|
TESTS += $(MULTIARCH_TESTS)
|