put back test in qemu-arm build
This commit is contained in:
parent
a5068eae0d
commit
bfbb5cde5a
@ -91,9 +91,27 @@ all: run
|
|||||||
run: $(BUILD)/firmware.elf
|
run: $(BUILD)/firmware.elf
|
||||||
qemu-system-arm -machine integratorcp -cpu cortex-m3 -nographic -monitor null -serial null -semihosting -kernel $(BUILD)/firmware.elf
|
qemu-system-arm -machine integratorcp -cpu cortex-m3 -nographic -monitor null -serial null -semihosting -kernel $(BUILD)/firmware.elf
|
||||||
|
|
||||||
|
test: $(BUILD)/firmware-test.elf
|
||||||
|
qemu-system-arm -machine integratorcp -cpu cortex-m3 -nographic -monitor null -serial null -semihosting -kernel $(BUILD)/firmware-test.elf > $(BUILD)/console.out
|
||||||
|
$(Q)tail -n2 $(BUILD)/console.out
|
||||||
|
$(Q)tail -n1 $(BUILD)/console.out | grep -q "status: 0"
|
||||||
|
|
||||||
|
.PHONY: $(BUILD)/genhdr/tests.h
|
||||||
|
|
||||||
|
$(BUILD)/test_main.o: $(BUILD)/genhdr/tests.h
|
||||||
|
$(BUILD)/genhdr/tests.h:
|
||||||
|
$(Q)echo "Generating $@";(cd $(TOP)/tests; ../tools/tinytest-codegen.py) > $@
|
||||||
|
|
||||||
|
$(BUILD)/tinytest.o:
|
||||||
|
$(Q)$(CC) $(CFLAGS) -DNO_FORKING -o $@ -c $(TOP)/tools/tinytest/tinytest.c
|
||||||
|
|
||||||
## `$(LD)` doesn't seem to like `--specs` for some reason, but we can just use `$(CC)` here.
|
## `$(LD)` doesn't seem to like `--specs` for some reason, but we can just use `$(CC)` here.
|
||||||
$(BUILD)/firmware.elf: $(OBJ_COMMON) $(OBJ_RUN)
|
$(BUILD)/firmware.elf: $(OBJ_COMMON) $(OBJ_RUN)
|
||||||
$(Q)$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS)
|
$(Q)$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS)
|
||||||
$(Q)$(SIZE) $@
|
$(Q)$(SIZE) $@
|
||||||
|
|
||||||
|
$(BUILD)/firmware-test.elf: $(OBJ_COMMON) $(OBJ_TEST)
|
||||||
|
$(Q)$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS)
|
||||||
|
$(Q)$(SIZE) $@
|
||||||
|
|
||||||
include $(TOP)/py/mkrules.mk
|
include $(TOP)/py/mkrules.mk
|
||||||
|
Loading…
Reference in New Issue
Block a user