From: Ivan Grokhotkov Date: Thu, 25 Aug 2016 02:28:25 +0000 (+0800) Subject: make: update template configuration before running tests X-Git-Tag: v0.9~83^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cb6e0b18f1584217e77f58bdb69ced77cc71eebb;p=esp-idf make: update template configuration before running tests This fixes build error for non-interactive builds --- diff --git a/make/build_system_tests.sh b/make/build_system_tests.sh index 6006f05a90..5824cf2b8e 100755 --- a/make/build_system_tests.sh +++ b/make/build_system_tests.sh @@ -30,6 +30,9 @@ function run_tests() git clone ${ESP_IDF_TEMPLATE_GIT} template cd template + print_status "Updating template config..." + make defconfig || exit $? + BOOTLOADER_BINS="bootloader/bootloader.elf bootloader/bootloader.bin" APP_BINS="app-template.elf app-template.bin"