libthai/tests/make_check.sh
Peng Wu f3f785e39a Add CI tests
Resolves: #1974232
2021-06-22 12:20:21 +08:00

18 lines
197 B
Bash

#!/bin/bash
set -x
check_return_value () {
if [ $1 != 0 ] ; then
exit $1
fi
}
cd $1
./configure --prefix=/usr
check_return_value $?
make
check_return_value $?
make check
exit $?