2019-04-26 19:21:00 +03:00
|
|
|
#
|
|
|
|
# Aarch64 system tests
|
|
|
|
#
|
|
|
|
|
|
|
|
AARCH64_SYSTEM_SRC=$(SRC_PATH)/tests/tcg/aarch64/system
|
|
|
|
VPATH+=$(AARCH64_SYSTEM_SRC)
|
|
|
|
|
|
|
|
# These objects provide the basic boot code and helper functions for all tests
|
|
|
|
CRT_OBJS=boot.o
|
|
|
|
|
|
|
|
AARCH64_TEST_SRCS=$(wildcard $(AARCH64_SYSTEM_SRC)/*.c)
|
|
|
|
AARCH64_TESTS = $(patsubst $(AARCH64_SYSTEM_SRC)/%.c, %, $(AARCH64_TEST_SRCS))
|
|
|
|
|
|
|
|
CRT_PATH=$(AARCH64_SYSTEM_SRC)
|
|
|
|
LINK_SCRIPT=$(AARCH64_SYSTEM_SRC)/kernel.ld
|
|
|
|
LDFLAGS=-Wl,-T$(LINK_SCRIPT)
|
|
|
|
TESTS+=$(AARCH64_TESTS) $(MULTIARCH_TESTS)
|
|
|
|
CFLAGS+=-nostdlib -ggdb -O0 $(MINILIB_INC)
|
|
|
|
LDFLAGS+=-static -nostdlib $(CRT_OBJS) $(MINILIB_OBJS) -lgcc
|
|
|
|
|
|
|
|
# building head blobs
|
|
|
|
.PRECIOUS: $(CRT_OBJS)
|
|
|
|
|
|
|
|
%.o: $(CRT_PATH)/%.S
|
2019-08-07 17:35:21 +03:00
|
|
|
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -x assembler-with-cpp -c $< -o $@
|
2019-04-26 19:21:00 +03:00
|
|
|
|
|
|
|
# Build and link the tests
|
|
|
|
%: %.c $(LINK_SCRIPT) $(CRT_OBJS) $(MINILIB_OBJS)
|
2019-08-07 17:35:21 +03:00
|
|
|
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $< -o $@ $(LDFLAGS)
|
2019-04-26 19:21:00 +03:00
|
|
|
|
2019-04-29 18:55:59 +03:00
|
|
|
memory: CFLAGS+=-DCHECK_UNALIGNED=1
|
|
|
|
|
2019-04-26 19:21:00 +03:00
|
|
|
# Running
|
|
|
|
QEMU_OPTS+=-M virt -cpu max -display none -semihosting-config enable=on,target=native,chardev=output -kernel
|
2019-09-18 16:31:42 +03:00
|
|
|
|
|
|
|
# Simple Record/Replay Test
|
|
|
|
.PHONY: memory-record
|
|
|
|
run-memory-record: memory-record memory
|
|
|
|
$(call run-test, $<, \
|
|
|
|
$(QEMU) -monitor none -display none \
|
|
|
|
-chardev file$(COMMA)path=$<.out$(COMMA)id=output \
|
|
|
|
-icount shift=5$(COMMA)rr=record$(COMMA)rrfile=record.bin \
|
|
|
|
$(QEMU_OPTS) memory, \
|
|
|
|
"$< on $(TARGET_NAME)")
|
|
|
|
|
|
|
|
.PHONY: memory-replay
|
|
|
|
run-memory-replay: memory-replay run-memory-record
|
|
|
|
$(call run-test, $<, \
|
|
|
|
$(QEMU) -monitor none -display none \
|
|
|
|
-chardev file$(COMMA)path=$<.out$(COMMA)id=output \
|
|
|
|
-icount shift=5$(COMMA)rr=replay$(COMMA)rrfile=record.bin \
|
|
|
|
$(QEMU_OPTS) memory, \
|
|
|
|
"$< on $(TARGET_NAME)")
|
|
|
|
|
|
|
|
TESTS+=memory-record memory-replay
|