Makefile-common: add perf. measurement config to regressiontests.

This commit is contained in:
Markus Hitter 2015-07-24 15:17:43 +02:00
parent 1509e5b3c8
commit c6a1f99758
1 changed files with 3 additions and 0 deletions

View File

@ -126,6 +126,9 @@ regressiontests:
# Generic Teensy2 configuration, which uses USB_SERIAL. # Generic Teensy2 configuration, which uses USB_SERIAL.
$(MAKE) -f Makefile-AVR USER_CONFIG=testcases/config.regtest-teensy2.h \ $(MAKE) -f Makefile-AVR USER_CONFIG=testcases/config.regtest-teensy2.h \
MCU=atmega32u4 F_CPU=16000000UL EXTRA_CFLAGS=-Werror all MCU=atmega32u4 F_CPU=16000000UL EXTRA_CFLAGS=-Werror all
# 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
# Don't forget the hostside simulator. # 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.h \
EXTRA_CFLAGS=-Werror all EXTRA_CFLAGS=-Werror all