test/vpxenc.sh: Always use --test-decode=FATAL

Change-Id: I5ca3400aec1f77fd92762d0c4fc86ba3694de1ca
This commit is contained in:
Johann 2014-08-15 16:53:52 -07:00 committed by James Zern
parent 49fef90405
commit bc3a995f08

View File

@ -49,7 +49,9 @@ vpxenc_pipe() {
local readonly encoder="$(vpx_tool_path vpxenc)" local readonly encoder="$(vpx_tool_path vpxenc)"
local readonly input="$1" local readonly input="$1"
shift shift
cat "${input}" | eval "${VPX_TEST_PREFIX}" "${encoder}" - "$@" ${devnull} cat "${input}" | eval "${VPX_TEST_PREFIX}" "${encoder}" - \
--test-decode=fatal \
"$@" ${devnull}
} }
# Wrapper function for running vpxenc. Requires that LIBVPX_BIN_PATH points to # Wrapper function for running vpxenc. Requires that LIBVPX_BIN_PATH points to
@ -59,7 +61,9 @@ vpxenc() {
local readonly encoder="$(vpx_tool_path vpxenc)" local readonly encoder="$(vpx_tool_path vpxenc)"
local readonly input="${1}" local readonly input="${1}"
shift shift
eval "${VPX_TEST_PREFIX}" "${encoder}" "$input" "$@" ${devnull} eval "${VPX_TEST_PREFIX}" "${encoder}" "$input" \
--test-decode=fatal \
"$@" ${devnull}
} }
vpxenc_vp8_ivf() { vpxenc_vp8_ivf() {
@ -125,7 +129,6 @@ vpxenc_vp9_ivf() {
--height="${YUV_RAW_INPUT_HEIGHT}" \ --height="${YUV_RAW_INPUT_HEIGHT}" \
--limit="${TEST_FRAMES}" \ --limit="${TEST_FRAMES}" \
--ivf \ --ivf \
--test-decode=fatal \
--output="${output}" \ --output="${output}" \
"${YUV_RAW_INPUT}" "${YUV_RAW_INPUT}"
@ -144,7 +147,6 @@ vpxenc_vp9_webm() {
--width="${YUV_RAW_INPUT_WIDTH}" \ --width="${YUV_RAW_INPUT_WIDTH}" \
--height="${YUV_RAW_INPUT_HEIGHT}" \ --height="${YUV_RAW_INPUT_HEIGHT}" \
--limit="${TEST_FRAMES}" \ --limit="${TEST_FRAMES}" \
--test-decode=fatal \
--output="${output}" \ --output="${output}" \
"${YUV_RAW_INPUT}" "${YUV_RAW_INPUT}"
@ -165,7 +167,6 @@ vpxenc_vp9_ivf_lossless() {
--ivf \ --ivf \
--output="${output}" \ --output="${output}" \
--lossless=1 \ --lossless=1 \
--test-decode=fatal \
"${YUV_RAW_INPUT}" "${YUV_RAW_INPUT}"
if [ ! -e "${output}" ]; then if [ ! -e "${output}" ]; then
@ -186,7 +187,6 @@ vpxenc_vp9_ivf_minq0_maxq0() {
--output="${output}" \ --output="${output}" \
--min-q=0 \ --min-q=0 \
--max-q=0 \ --max-q=0 \
--test-decode=fatal \
"${YUV_RAW_INPUT}" "${YUV_RAW_INPUT}"
if [ ! -e "${output}" ]; then if [ ! -e "${output}" ]; then