mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-07-10 23:42:06 +08:00
a5cee30aa6
date: 2024-06-25T13:13:17
commit: 69a099242f
9 lines
208 B
Bash
Executable File
9 lines
208 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# Loops over all HW_TYPEs, see board/boards/board_declarations.h
|
|
for hw_type in {0..7}; do
|
|
echo "Testing HW_TYPE: $hw_type"
|
|
HW_TYPE=$hw_type python -m unittest discover .
|
|
done
|