mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-23 08:15:30 +03:00
7 lines
161 B
Bash
Executable file
7 lines
161 B
Bash
Executable file
#!/bin/bash
|
|
# A hacky way of running the unit tests at the same time as the normal builds.
|
|
if [ $RUNTESTS ] ; then
|
|
cd ./src/test && make test
|
|
else
|
|
make -j2
|
|
fi
|