ARM: add Gen7-ARM to the series of regression tests.

Now ARM based boards are covered as well :-)
This commit is contained in:
Markus Hitter 2015-07-30 17:04:46 +02:00
parent 5a8dcf8e97
commit ab910ee1c4
3 changed files with 11 additions and 2 deletions

View File

@ -118,7 +118,7 @@ $(BUILDDIR)/%.sym: $(BUILDDIR)/%.elf
# "make regressiontests".
regressiontests:
# Generic Gen7 configuration.
$(MAKE) -f Makefile-AVR USER_CONFIG=testcases/config.regtest-gen7.h \
$(MAKE) -f Makefile-AVR USER_CONFIG=testcases/config.regtest-gen7-avr.h \
MCU=atmega644 F_CPU=20000000UL EXTRA_CFLAGS=-Werror all
# Generic RAMPS configuration.
$(MAKE) -f Makefile-AVR USER_CONFIG=testcases/config.regtest-ramps.h \
@ -132,8 +132,11 @@ regressiontests:
# The configuration used for performance measurements.
$(MAKE) -f Makefile-AVR USER_CONFIG=testcases/config.h.Profiling \
MCU=atmega644 F_CPU=20000000UL EXTRA_CFLAGS=-Werror all
# Continue with ARM based boards, a Gen7-ARM.
$(MAKE) -f Makefile-ARM USER_CONFIG=testcases/config.regtest-gen7-arm.h \
EXTRA_CFLAGS=-Werror all
# Don't forget the hostside simulator.
$(MAKE) -f Makefile-SIM USER_CONFIG=testcases/config.regtest-gen7.h \
$(MAKE) -f Makefile-SIM USER_CONFIG=testcases/config.regtest-gen7-avr.h \
EXTRA_CFLAGS=-Werror all
@# Nonstandard builds go into a subdirectory of build/, see definition of
@# $(BUILDDIR) above. Let's clean that up on success.

View File

@ -0,0 +1,6 @@
// Configuration for controller board.
#include "../config/board.gen7-arm.h"
// Configuration for printer board.
#include "../config/printer.wolfstrap.h"