2019-06-06 11:44:12 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -x
|
|
|
|
|
|
|
|
check_return_value () {
|
|
|
|
if [ $1 != 0 ] ; then
|
|
|
|
exit $1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
cd $1
|
2019-10-01 15:11:12 +00:00
|
|
|
|
|
|
|
export DISPLAY=:1
|
|
|
|
Xvfb $DISPLAY -screen 0 1024x768x16 &
|
|
|
|
|
2019-06-06 11:44:12 +00:00
|
|
|
./configure --prefix=/usr
|
|
|
|
check_return_value $?
|
2019-10-01 15:11:12 +00:00
|
|
|
make check && rc=0 || rc=1; cat tests/run_tests.log; cat tests/test-suite.log
|
2019-06-06 11:44:12 +00:00
|
|
|
exit $rc
|