mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 02:24:07 +00:00
674af752a2
Moves tests from .travis.yml to bash scripts in tests directory. Adds the test scripts to tests/Makefile.am so that they are included when running make check.
12 lines
249 B
Bash
Executable file
12 lines
249 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Test all-intra coding.
|
|
|
|
set -eu
|
|
|
|
source util.bash
|
|
|
|
common_args='264x130 10 -p1 --threads=2 --owf=1 --no-rdoq --no-deblock --no-sao --no-signhide'
|
|
valgrind_test $common_args --rd=1
|
|
valgrind_test $common_args --rd=2 --no-transform-skip
|