1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

murdock: run_test: build termdeps while flashing

This commit is contained in:
Kaspar Schleiser 2019-06-28 13:18:38 +02:00
parent 6d22f942f7
commit 3151fc7365

View File

@ -259,7 +259,12 @@ run_test() {
print_worker
echo "-- executing tests for $appdir on $board (compiled with $toolchain toolchain):"
hook run_test_pre
BOARD=$board TOOLCHAIN=${toolchain} make -C$appdir flash-only test
# do flashing and building of termdeps simultaneously
BOARD=$board TOOLCHAIN=${toolchain} make -C$appdir flash-only termdeps -j2
# now run the actual test
BOARD=$board TOOLCHAIN=${toolchain} make -C$appdir test
RES=$?
if [ $RES -eq 0 -a -n "$TEST_HASH" ]; then