mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-05 08:28:32 +00:00
16 lines
227 B
Bash
Executable File
16 lines
227 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$COMPILER" ];
|
|
then
|
|
export CC=$COMPILER
|
|
fi
|
|
cd contrib/ports/unix/check
|
|
#build and run unit tests
|
|
make clean all
|
|
ERR=$?
|
|
if [ $ERR != 0 ]; then
|
|
echo "unittests build failed"
|
|
exit 33
|
|
fi
|
|
make check
|