You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
937 B
26 lines
937 B
LIB_SRC_C = lib/upytesthelper/upytesthelper.c
|
|
|
|
FROZEN_MANIFEST ?= "freeze('test-frzmpy')"
|
|
|
|
include Makefile
|
|
|
|
CFLAGS += -DTEST
|
|
|
|
.PHONY: $(BUILD)/genhdr/tests.h
|
|
|
|
$(BUILD)/test_main.o: $(BUILD)/genhdr/tests.h
|
|
$(BUILD)/genhdr/tests.h:
|
|
(cd $(TOP)/tests; ./run-tests --target=qemu-arm --write-exp)
|
|
$(Q)echo "Generating $@";(cd $(TOP)/tests; ../tools/tinytest-codegen.py) > $@
|
|
|
|
$(BUILD)/lib/tinytest/tinytest.o: CFLAGS += -DNO_FORKING
|
|
|
|
$(BUILD)/firmware-test.elf: $(LDSCRIPT) $(ALL_OBJ_TEST)
|
|
$(Q)$(LD) $(LDFLAGS) -o $@ $(ALL_OBJ_TEST) $(LIBS)
|
|
$(Q)$(SIZE) $@
|
|
|
|
# Note: Using timeout(1) to handle cases where qemu hangs (e.g. this can happen with alignment errors).
|
|
test: $(BUILD)/firmware-test.elf
|
|
timeout --foreground -k 5s 30s qemu-system-arm -machine $(BOARD) $(QEMU_EXTRA) -nographic -monitor null -semihosting -kernel $< > $(BUILD)/console.out
|
|
$(Q)tail -n2 $(BUILD)/console.out
|
|
$(Q)tail -n1 $(BUILD)/console.out | grep -q "status: 0"
|
|
|