Temporarily disable alarm test on macosx.

pull/153/head
Fredrik Öhrström 2020-08-19 11:16:23 +02:00
rodzic 15a3e6f94a
commit 4a3105e61e
1 zmienionych plików z 5 dodań i 2 usunięć

Wyświetl plik

@ -75,7 +75,10 @@ if [ "$?" != "0" ]; then RC="1"; fi
tests/test_serial_bads.sh $PROG
if [ "$?" != "0" ]; then RC="1"; fi
tests/test_alarm.sh $PROG
if [ "$?" != "0" ]; then RC="1"; fi
if [ "$(uname)" = "Linux" ]
then
tests/test_alarm.sh $PROG
if [ "$?" != "0" ]; then RC="1"; fi
fi
exit $RC