mirror of
https://github.com/infiniteCable2/panda.git
synced 2026-02-19 09:43:51 +08:00
13 lines
262 B
Bash
Executable File
13 lines
262 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Loop over all HW_TYPEs, see board/boards/board_declarations.h
|
|
# Make sure test fails if one HW_TYPE fails
|
|
set -e
|
|
|
|
scons -u
|
|
|
|
for hw_type in {0..7}; do
|
|
echo "Testing HW_TYPE: $hw_type"
|
|
HW_TYPE=$hw_type python -m unittest discover .
|
|
done
|