mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
15 lines
305 B
Bash
Executable File
15 lines
305 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export RIOTBOOT_SKIP_COMPILE=1
|
|
set -e
|
|
|
|
${APPDIR}/tests/common/assert_slotnum.py 0 0
|
|
|
|
APP_VER=1 make -C${APPDIR} riotboot/flash-slot1
|
|
${APPDIR}/tests/common/assert_slotnum.py 1 1
|
|
|
|
APP_VER=2 make -C${APPDIR} riotboot/flash-slot0
|
|
${APPDIR}/tests/common/assert_slotnum.py 0 2
|
|
|
|
echo "[TEST PASSED]"
|