mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 02:24:07 +00:00
7a12f6c8d4
- Moves travis package installations to addons.apt.packages. - Disables sudo in travis configuration. - Substitutes nasm for yasm in travis builds since yasm is not available on travis.
21 lines
422 B
Bash
Executable file
21 lines
422 B
Bash
Executable file
#!/bin/sh
|
|
set -ev
|
|
|
|
if [ -n "$VALGRIND_TEST" ]; then
|
|
cd src
|
|
make -e debug
|
|
valgrind --leak-check=full --error-exitcode=1 ./kvazaar_debug -i ../mandelbrot_${TEST_DIM}.yuv --input-res=${TEST_DIM} -o /dev/null $VALGRIND_TEST
|
|
elif [ -n "$EXPECTED_STATUS" ]; then
|
|
cd src
|
|
make -e
|
|
set +e
|
|
./kvazaar $PARAMS
|
|
EXIT_STATUS=$?
|
|
set -e
|
|
[ "$EXIT_STATUS" = "$EXPECTED_STATUS" ]
|
|
else
|
|
cd src
|
|
make -e
|
|
make -e tests
|
|
fi
|