c2485ea402
Multiarch tests are written in C and need support for printing characters. Instead of implementing the runtime from scratch, just reuse the pc-bios/s390-ccw one. Run tests with -nographic in order to enable SCLP (enable this for the existing tests as well, since it does not hurt). Use the default linker script for the new tests. Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20230511114651.439872-3-iii@linux.ibm.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
41 lines
1.6 KiB
Makefile
41 lines
1.6 KiB
Makefile
S390X_SRC=$(SRC_PATH)/tests/tcg/s390x
|
|
VPATH+=$(S390X_SRC)
|
|
QEMU_OPTS=-action panic=exit-failure -nographic -kernel
|
|
LINK_SCRIPT=$(S390X_SRC)/softmmu.ld
|
|
CFLAGS+=-ggdb -O0
|
|
LDFLAGS=-nostdlib -static
|
|
|
|
%.o: %.S
|
|
$(CC) -march=z13 -m64 -c $< -o $@
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -march=z13 -m64 -c $< -o $@
|
|
|
|
%: %.o
|
|
$(CC) $< -o $@ $(LDFLAGS)
|
|
|
|
ASM_TESTS = \
|
|
bal \
|
|
exrl-ssm-early \
|
|
sam \
|
|
lpsw \
|
|
lpswe-early \
|
|
ssm-early \
|
|
stosm-early \
|
|
unaligned-lowcore
|
|
|
|
include $(S390X_SRC)/pgm-specification.mak
|
|
$(PGM_SPECIFICATION_TESTS): pgm-specification-softmmu.o
|
|
$(PGM_SPECIFICATION_TESTS): LDFLAGS+=pgm-specification-softmmu.o
|
|
ASM_TESTS += $(PGM_SPECIFICATION_TESTS)
|
|
|
|
$(ASM_TESTS): LDFLAGS += -Wl,-T$(LINK_SCRIPT) -Wl,--build-id=none
|
|
$(ASM_TESTS): $(LINK_SCRIPT)
|
|
TESTS += $(ASM_TESTS)
|
|
|
|
S390X_MULTIARCH_RUNTIME_OBJS = head64.o console.o $(MINILIB_OBJS)
|
|
$(MULTIARCH_TESTS): $(S390X_MULTIARCH_RUNTIME_OBJS)
|
|
$(MULTIARCH_TESTS): LDFLAGS += $(S390X_MULTIARCH_RUNTIME_OBJS)
|
|
$(MULTIARCH_TESTS): CFLAGS += $(MINILIB_INC)
|
|
memory: CFLAGS += -DCHECK_UNALIGNED=0
|