mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 02:24:07 +00:00
7b2b72c932
It would be nice to see what is actually being run.
21 lines
442 B
Bash
Executable file
21 lines
442 B
Bash
Executable file
#!/bin/sh
|
|
set -ev
|
|
|
|
./autogen.sh
|
|
./configure
|
|
make --jobs=2 V=1
|
|
|
|
if [ -n "$VALGRIND_TEST" ]; then
|
|
libtool execute valgrind --leak-check=full --error-exitcode=1 -- \
|
|
src/kvazaar -i mandelbrot_${TEST_DIM}.yuv --input-res=${TEST_DIM} -o /dev/null \
|
|
$VALGRIND_TEST
|
|
elif [ -n "$EXPECTED_STATUS" ]; then
|
|
set +e
|
|
libtool execute src/kvazaar $PARAMS
|
|
EXIT_STATUS=$?
|
|
set -e
|
|
[ "$EXIT_STATUS" = "$EXPECTED_STATUS" ]
|
|
else
|
|
make check
|
|
fi
|