mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-27 19:24:06 +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.
11 lines
241 B
Bash
Executable file
11 lines
241 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Test SMP and AMP blocks.
|
|
|
|
set -eu
|
|
source util.bash
|
|
|
|
valgrind_test 264x130 4 --threads=2 --owf=1 --wpp --smp
|
|
valgrind_test 264x130 4 --threads=2 --owf=1 --wpp --amp
|
|
valgrind_test 264x130 4 --threads=2 --owf=1 --wpp --smp --amp
|