8 lines
161 B
Bash
8 lines
161 B
Bash
|
#!/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
|