diff --git a/lib/ts_common.sh b/lib/ts_common.sh index 6ef4aa8ba6fd9a86dd551496018152d6225edfac..36a82a3f36e1e9ff123ff031df52d80088f20b5c 100644 --- a/lib/ts_common.sh +++ b/lib/ts_common.sh @@ -4,8 +4,51 @@ # 1、以下划线"_"开头的函数和变量用例不能直接调用 # 2、环境变量全大写,全局变量加上"g_"前置,局部变量统一加"local"修饰 +g_install_dir="${TST_TS_TOPDIR}/tst-open-ffmpeg/ffmpeg.install" +g_build_dir="${g_install_dir}/ffmpeg" + +run_single_case() { + local case_name="$1" + + if [ -z "$case_name" ]; then + echo "ERROR: usage: run_single_case " + return 1 + fi + + if [ ! -f "$g_build_dir/ffbuild/config.mak" ]; then + echo "ERROR: config.mak not found in $g_build_dir, run tst-build.sh first" + return 1 + fi + + local test_name="${case_name#fate-}" + local rep_file="$g_build_dir/tests/data/fate/${test_name}.rep" + + rm -f "$rep_file" + + make -C "$g_build_dir" "$case_name" SKIP_LIBS=1 V=1 2>&1 + local rc=$? + + if [ -f "$rep_file" ]; then + local rep_code + rep_code=$(awk -F: '{print $2}' "$rep_file") + if [ "$rep_code" != "0" ] && [ -n "$rep_code" ]; then + echo "FAIL: $case_name (exit=$rep_code)" + return 1 + fi + fi + + if [ $rc -ne 0 ]; then + echo "FAIL: $case_name (make exit=$rc)" + return 1 + fi + + echo "PASS: $case_name" + return 0 +} + tc_setup_common() { msg "this is tc_setup_common" + skip_if_false command -v ffmpeg return 0 } diff --git a/testcase/Makefile b/testcase/Makefile index 8d8447530f137316621e4120af3e6e45e46c4c5e..c3a0b5202bf0d0b4c079d661665b4b0c2cd6f155 100644 --- a/testcase/Makefile +++ b/testcase/Makefile @@ -8,7 +8,7 @@ LDFLAGS += LDFLAGS += all: $(ALL_BIN) - ./tst-open-ffmpeg/ffmpeg/tst-build.sh + $(TST_TS_TOPDIR)/tst-open-ffmpeg/ffmpeg/tst-build.sh $(ALL_BIN):%.test:%.o $(CC) $^ -o $@ $(LDFLAGS) diff --git a/testcase/fate-acodec-adpcm-adx.sh b/testcase/fate-acodec-adpcm-adx.sh new file mode 100755 index 0000000000000000000000000000000000000000..42c05141412308f6adb7943240f7be0000078662 --- /dev/null +++ b/testcase/fate-acodec-adpcm-adx.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170233-547841259 +# @用例名称: fate-acodec-adpcm-adx +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-adpcm-adx +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-adpcm-adx + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-adpcm-adx + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-adpcm-argo.sh b/testcase/fate-acodec-adpcm-argo.sh new file mode 100755 index 0000000000000000000000000000000000000000..5525f706855ecc2b51d030399fb98b25c81234f1 --- /dev/null +++ b/testcase/fate-acodec-adpcm-argo.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170233-633478863 +# @用例名称: fate-acodec-adpcm-argo +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-adpcm-argo +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-adpcm-argo + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-adpcm-argo + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-adpcm-ima_alp.sh b/testcase/fate-acodec-adpcm-ima_alp.sh new file mode 100755 index 0000000000000000000000000000000000000000..c73cc8ca83f32d8c50a24003d81c4a62a29246e7 --- /dev/null +++ b/testcase/fate-acodec-adpcm-ima_alp.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170233-721448780 +# @用例名称: fate-acodec-adpcm-ima_alp +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-adpcm-ima_alp +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-adpcm-ima_alp + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-adpcm-ima_alp + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-adpcm-ima_apm.sh b/testcase/fate-acodec-adpcm-ima_apm.sh new file mode 100755 index 0000000000000000000000000000000000000000..ba963409d05342b9bf8c6d5e048899bf6e642d6a --- /dev/null +++ b/testcase/fate-acodec-adpcm-ima_apm.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170233-807144363 +# @用例名称: fate-acodec-adpcm-ima_apm +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-adpcm-ima_apm +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-adpcm-ima_apm + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-adpcm-ima_apm + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-adpcm-ima_qt-trellis.sh b/testcase/fate-acodec-adpcm-ima_qt-trellis.sh new file mode 100755 index 0000000000000000000000000000000000000000..cbd668878eb69c742136c392db0b4e2aeeb17526 --- /dev/null +++ b/testcase/fate-acodec-adpcm-ima_qt-trellis.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170233-980460460 +# @用例名称: fate-acodec-adpcm-ima_qt-trellis +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-adpcm-ima_qt-trellis +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-adpcm-ima_qt-trellis + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-adpcm-ima_qt-trellis + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-adpcm-ima_qt.sh b/testcase/fate-acodec-adpcm-ima_qt.sh new file mode 100755 index 0000000000000000000000000000000000000000..394ada61b60338c1eefee66e782a8848cc7c91d7 --- /dev/null +++ b/testcase/fate-acodec-adpcm-ima_qt.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170233-894329627 +# @用例名称: fate-acodec-adpcm-ima_qt +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-adpcm-ima_qt +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-adpcm-ima_qt + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-adpcm-ima_qt + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-adpcm-ima_ssi.sh b/testcase/fate-acodec-adpcm-ima_ssi.sh new file mode 100755 index 0000000000000000000000000000000000000000..cc3fab0b325b91ed0e21b15ff7c27bc1120e6089 --- /dev/null +++ b/testcase/fate-acodec-adpcm-ima_ssi.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170234-070074996 +# @用例名称: fate-acodec-adpcm-ima_ssi +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-adpcm-ima_ssi +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-adpcm-ima_ssi + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-adpcm-ima_ssi + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-adpcm-ima_wav-trellis.sh b/testcase/fate-acodec-adpcm-ima_wav-trellis.sh new file mode 100755 index 0000000000000000000000000000000000000000..726b43cbccc724bc93290ecaaf90d432b7de807c --- /dev/null +++ b/testcase/fate-acodec-adpcm-ima_wav-trellis.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170234-246463643 +# @用例名称: fate-acodec-adpcm-ima_wav-trellis +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-adpcm-ima_wav-trellis +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-adpcm-ima_wav-trellis + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-adpcm-ima_wav-trellis + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-adpcm-ima_wav.sh b/testcase/fate-acodec-adpcm-ima_wav.sh new file mode 100755 index 0000000000000000000000000000000000000000..d4183ff802eddfccd607432f7c042ee70422caec --- /dev/null +++ b/testcase/fate-acodec-adpcm-ima_wav.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170234-157152951 +# @用例名称: fate-acodec-adpcm-ima_wav +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-adpcm-ima_wav +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-adpcm-ima_wav + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-adpcm-ima_wav + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-adpcm-ima_ws.sh b/testcase/fate-acodec-adpcm-ima_ws.sh new file mode 100755 index 0000000000000000000000000000000000000000..d5a1db34ca1b7b740d80b6b246d784cb3fd462e7 --- /dev/null +++ b/testcase/fate-acodec-adpcm-ima_ws.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170234-334271194 +# @用例名称: fate-acodec-adpcm-ima_ws +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-adpcm-ima_ws +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-adpcm-ima_ws + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-adpcm-ima_ws + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-adpcm-ms-trellis.sh b/testcase/fate-acodec-adpcm-ms-trellis.sh new file mode 100755 index 0000000000000000000000000000000000000000..f985477d03e1c014814caf59ca095edc97999659 --- /dev/null +++ b/testcase/fate-acodec-adpcm-ms-trellis.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170234-509659532 +# @用例名称: fate-acodec-adpcm-ms-trellis +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-adpcm-ms-trellis +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-adpcm-ms-trellis + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-adpcm-ms-trellis + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-adpcm-ms.sh b/testcase/fate-acodec-adpcm-ms.sh new file mode 100755 index 0000000000000000000000000000000000000000..0d95bdf4460408a89688102d47731876087cd88b --- /dev/null +++ b/testcase/fate-acodec-adpcm-ms.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170234-423509917 +# @用例名称: fate-acodec-adpcm-ms +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-adpcm-ms +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-adpcm-ms + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-adpcm-ms + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-adpcm-swf-trellis.sh b/testcase/fate-acodec-adpcm-swf-trellis.sh new file mode 100755 index 0000000000000000000000000000000000000000..1a3798b6386630f29feec2e4fb910184aa98d1b9 --- /dev/null +++ b/testcase/fate-acodec-adpcm-swf-trellis.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170234-680140014 +# @用例名称: fate-acodec-adpcm-swf-trellis +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-adpcm-swf-trellis +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-adpcm-swf-trellis + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-adpcm-swf-trellis + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-adpcm-swf-wav.sh b/testcase/fate-acodec-adpcm-swf-wav.sh new file mode 100755 index 0000000000000000000000000000000000000000..121144a15147fe0671f72a28d188782ca88d6975 --- /dev/null +++ b/testcase/fate-acodec-adpcm-swf-wav.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170234-767662971 +# @用例名称: fate-acodec-adpcm-swf-wav +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-adpcm-swf-wav +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-adpcm-swf-wav + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-adpcm-swf-wav + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-adpcm-swf.sh b/testcase/fate-acodec-adpcm-swf.sh new file mode 100755 index 0000000000000000000000000000000000000000..9d15c0265e2dcf41813ed8e67a01a13c75d73601 --- /dev/null +++ b/testcase/fate-acodec-adpcm-swf.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170234-594942542 +# @用例名称: fate-acodec-adpcm-swf +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-adpcm-swf +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-adpcm-swf + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-adpcm-swf + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-adpcm-yamaha-trellis.sh b/testcase/fate-acodec-adpcm-yamaha-trellis.sh new file mode 100755 index 0000000000000000000000000000000000000000..38648f7226cbca084b20514d60210c46263a6d52 --- /dev/null +++ b/testcase/fate-acodec-adpcm-yamaha-trellis.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170234-943544787 +# @用例名称: fate-acodec-adpcm-yamaha-trellis +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-adpcm-yamaha-trellis +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-adpcm-yamaha-trellis + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-adpcm-yamaha-trellis + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-adpcm-yamaha.sh b/testcase/fate-acodec-adpcm-yamaha.sh new file mode 100755 index 0000000000000000000000000000000000000000..106a18add565c0310139dfd7453081a057e55546 --- /dev/null +++ b/testcase/fate-acodec-adpcm-yamaha.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170234-855096439 +# @用例名称: fate-acodec-adpcm-yamaha +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-adpcm-yamaha +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-adpcm-yamaha + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-adpcm-yamaha + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-alac.sh b/testcase/fate-acodec-alac.sh new file mode 100755 index 0000000000000000000000000000000000000000..ede7544dcc96a93bfe7c62aacd1ea75321202c4c --- /dev/null +++ b/testcase/fate-acodec-alac.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170235-030783300 +# @用例名称: fate-acodec-alac +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-alac +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-alac + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-alac + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-dca.sh b/testcase/fate-acodec-dca.sh new file mode 100755 index 0000000000000000000000000000000000000000..917fcd96753febd0ea413a5cdf6d7d499903ac82 --- /dev/null +++ b/testcase/fate-acodec-dca.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170235-117823436 +# @用例名称: fate-acodec-dca +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-dca +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-dca + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-dca + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-dca2.sh b/testcase/fate-acodec-dca2.sh new file mode 100755 index 0000000000000000000000000000000000000000..c05a13ccffef71ba603032d8f491adf405be19e3 --- /dev/null +++ b/testcase/fate-acodec-dca2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170235-206094028 +# @用例名称: fate-acodec-dca2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-dca2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-dca2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-dca2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-flac-exact-rice.sh b/testcase/fate-acodec-flac-exact-rice.sh new file mode 100755 index 0000000000000000000000000000000000000000..1c5543c38dfc888fe34c93239c378e0ceff9d082 --- /dev/null +++ b/testcase/fate-acodec-flac-exact-rice.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170235-381739089 +# @用例名称: fate-acodec-flac-exact-rice +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-flac-exact-rice +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-flac-exact-rice + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-flac-exact-rice + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-flac.sh b/testcase/fate-acodec-flac.sh new file mode 100755 index 0000000000000000000000000000000000000000..50a14f75a6583a42efacefafb84d8f6ec384cedb --- /dev/null +++ b/testcase/fate-acodec-flac.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170235-294575106 +# @用例名称: fate-acodec-flac +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-flac +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-flac + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-flac + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-g723_1.sh b/testcase/fate-acodec-g723_1.sh new file mode 100755 index 0000000000000000000000000000000000000000..1c7d1beb424fef484cc6e046a5b5fafd269ead58 --- /dev/null +++ b/testcase/fate-acodec-g723_1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170235-467421482 +# @用例名称: fate-acodec-g723_1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-g723_1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-g723_1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-g723_1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-mp2.sh b/testcase/fate-acodec-mp2.sh new file mode 100755 index 0000000000000000000000000000000000000000..689d5f8987cd9feaba6fae9c052017331c7d792b --- /dev/null +++ b/testcase/fate-acodec-mp2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170235-552840290 +# @用例名称: fate-acodec-mp2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-mp2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-mp2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-mp2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-mp2fixed.sh b/testcase/fate-acodec-mp2fixed.sh new file mode 100755 index 0000000000000000000000000000000000000000..a81f3c937ae90b1dc55422ca3f81b4afaf7210ee --- /dev/null +++ b/testcase/fate-acodec-mp2fixed.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170235-639111582 +# @用例名称: fate-acodec-mp2fixed +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-mp2fixed +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-mp2fixed + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-mp2fixed + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-alaw.sh b/testcase/fate-acodec-pcm-alaw.sh new file mode 100755 index 0000000000000000000000000000000000000000..faedb22b91f748b7d78c2767b6f48d6bf5c7e4a5 --- /dev/null +++ b/testcase/fate-acodec-pcm-alaw.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170235-726937872 +# @用例名称: fate-acodec-pcm-alaw +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-alaw +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-alaw + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-alaw + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-f32be.sh b/testcase/fate-acodec-pcm-f32be.sh new file mode 100755 index 0000000000000000000000000000000000000000..3608231d854349ce8fbfb793c64d4278ba7c284a --- /dev/null +++ b/testcase/fate-acodec-pcm-f32be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170235-811887639 +# @用例名称: fate-acodec-pcm-f32be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-f32be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-f32be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-f32be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-f32le.sh b/testcase/fate-acodec-pcm-f32le.sh new file mode 100755 index 0000000000000000000000000000000000000000..fad87b70f17398a3051e75dfe24a6fbad44a78e4 --- /dev/null +++ b/testcase/fate-acodec-pcm-f32le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170235-896376505 +# @用例名称: fate-acodec-pcm-f32le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-f32le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-f32le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-f32le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-f64be.sh b/testcase/fate-acodec-pcm-f64be.sh new file mode 100755 index 0000000000000000000000000000000000000000..6d07fa97d4ee9f64a95b528c561053ea2d37aaaf --- /dev/null +++ b/testcase/fate-acodec-pcm-f64be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170235-982368161 +# @用例名称: fate-acodec-pcm-f64be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-f64be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-f64be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-f64be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-f64le.sh b/testcase/fate-acodec-pcm-f64le.sh new file mode 100755 index 0000000000000000000000000000000000000000..6dcef766ddfe3bea0e4157707ec9424fb4d23c2d --- /dev/null +++ b/testcase/fate-acodec-pcm-f64le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170236-068867558 +# @用例名称: fate-acodec-pcm-f64le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-f64le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-f64le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-f64le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-mulaw.sh b/testcase/fate-acodec-pcm-mulaw.sh new file mode 100755 index 0000000000000000000000000000000000000000..08ced455f30671b30cfce9d0e90a2ea932d9fa69 --- /dev/null +++ b/testcase/fate-acodec-pcm-mulaw.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170236-153407434 +# @用例名称: fate-acodec-pcm-mulaw +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-mulaw +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-mulaw + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-mulaw + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-s16be.sh b/testcase/fate-acodec-pcm-s16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..66c629a4ae0cd91a9ebd3685db067c6d12eb9cd3 --- /dev/null +++ b/testcase/fate-acodec-pcm-s16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170236-239192023 +# @用例名称: fate-acodec-pcm-s16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-s16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-s16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-s16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-s16be_planar.sh b/testcase/fate-acodec-pcm-s16be_planar.sh new file mode 100755 index 0000000000000000000000000000000000000000..f0ce43dbf5e7ad841f3421ea1784bb3e4be9ebe3 --- /dev/null +++ b/testcase/fate-acodec-pcm-s16be_planar.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170236-323567012 +# @用例名称: fate-acodec-pcm-s16be_planar +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-s16be_planar +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-s16be_planar + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-s16be_planar + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-s16le.sh b/testcase/fate-acodec-pcm-s16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..2b224892207afe58bb91fa956084c565b36b3080 --- /dev/null +++ b/testcase/fate-acodec-pcm-s16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170236-407357743 +# @用例名称: fate-acodec-pcm-s16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-s16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-s16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-s16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-s16le_planar.sh b/testcase/fate-acodec-pcm-s16le_planar.sh new file mode 100755 index 0000000000000000000000000000000000000000..109b15c5da66187abb7ef4d8c7391c297af4ac80 --- /dev/null +++ b/testcase/fate-acodec-pcm-s16le_planar.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170236-494990286 +# @用例名称: fate-acodec-pcm-s16le_planar +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-s16le_planar +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-s16le_planar + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-s16le_planar + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-s24be.sh b/testcase/fate-acodec-pcm-s24be.sh new file mode 100755 index 0000000000000000000000000000000000000000..a9c6908d25b0dcd091b5052616d55cc97b36e9d4 --- /dev/null +++ b/testcase/fate-acodec-pcm-s24be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170236-583215519 +# @用例名称: fate-acodec-pcm-s24be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-s24be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-s24be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-s24be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-s24le.sh b/testcase/fate-acodec-pcm-s24le.sh new file mode 100755 index 0000000000000000000000000000000000000000..630a6e44e66af005e341cafb011bc356279c2f2a --- /dev/null +++ b/testcase/fate-acodec-pcm-s24le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170236-671444683 +# @用例名称: fate-acodec-pcm-s24le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-s24le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-s24le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-s24le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-s24le_planar.sh b/testcase/fate-acodec-pcm-s24le_planar.sh new file mode 100755 index 0000000000000000000000000000000000000000..8db98d0c4aa0fc1cf1ada7aba48d502079c52ba6 --- /dev/null +++ b/testcase/fate-acodec-pcm-s24le_planar.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170236-757936588 +# @用例名称: fate-acodec-pcm-s24le_planar +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-s24le_planar +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-s24le_planar + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-s24le_planar + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-s32be.sh b/testcase/fate-acodec-pcm-s32be.sh new file mode 100755 index 0000000000000000000000000000000000000000..74dc2472c32c017eb608d2814447d20d36e70821 --- /dev/null +++ b/testcase/fate-acodec-pcm-s32be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170236-846082663 +# @用例名称: fate-acodec-pcm-s32be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-s32be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-s32be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-s32be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-s32le.sh b/testcase/fate-acodec-pcm-s32le.sh new file mode 100755 index 0000000000000000000000000000000000000000..4370c7b898e9cfdc0ecde6ca9f75cd9e610652a8 --- /dev/null +++ b/testcase/fate-acodec-pcm-s32le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170236-932429184 +# @用例名称: fate-acodec-pcm-s32le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-s32le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-s32le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-s32le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-s32le_planar.sh b/testcase/fate-acodec-pcm-s32le_planar.sh new file mode 100755 index 0000000000000000000000000000000000000000..88b867179c1f61ebba403261d10624b1e7ab642c --- /dev/null +++ b/testcase/fate-acodec-pcm-s32le_planar.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170237-018463869 +# @用例名称: fate-acodec-pcm-s32le_planar +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-s32le_planar +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-s32le_planar + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-s32le_planar + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-s8.sh b/testcase/fate-acodec-pcm-s8.sh new file mode 100755 index 0000000000000000000000000000000000000000..2358543e2ecd4f365c10c1cf24129b5dbcfc0fd1 --- /dev/null +++ b/testcase/fate-acodec-pcm-s8.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170237-104380327 +# @用例名称: fate-acodec-pcm-s8 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-s8 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-s8 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-s8 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-s8_planar.sh b/testcase/fate-acodec-pcm-s8_planar.sh new file mode 100755 index 0000000000000000000000000000000000000000..f9946f898f839559018a8175811a5bdf9efb2a9f --- /dev/null +++ b/testcase/fate-acodec-pcm-s8_planar.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170237-190014811 +# @用例名称: fate-acodec-pcm-s8_planar +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-s8_planar +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-s8_planar + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-s8_planar + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-u16be.sh b/testcase/fate-acodec-pcm-u16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..753b3c2ad5d350499bddd60bd3f3512a5b0d3146 --- /dev/null +++ b/testcase/fate-acodec-pcm-u16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170237-277154975 +# @用例名称: fate-acodec-pcm-u16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-u16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-u16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-u16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-u16le.sh b/testcase/fate-acodec-pcm-u16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..61b2b9015754cdac744d1557594ef330d31469c6 --- /dev/null +++ b/testcase/fate-acodec-pcm-u16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170237-361846818 +# @用例名称: fate-acodec-pcm-u16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-u16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-u16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-u16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-u24be.sh b/testcase/fate-acodec-pcm-u24be.sh new file mode 100755 index 0000000000000000000000000000000000000000..d606f96ec64bec2656598fe11411b42065f65baa --- /dev/null +++ b/testcase/fate-acodec-pcm-u24be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170237-447575389 +# @用例名称: fate-acodec-pcm-u24be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-u24be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-u24be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-u24be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-u24le.sh b/testcase/fate-acodec-pcm-u24le.sh new file mode 100755 index 0000000000000000000000000000000000000000..c6ea3a03b8be6cee5c446a032483df8ca397909e --- /dev/null +++ b/testcase/fate-acodec-pcm-u24le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170237-532458058 +# @用例名称: fate-acodec-pcm-u24le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-u24le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-u24le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-u24le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-u32be.sh b/testcase/fate-acodec-pcm-u32be.sh new file mode 100755 index 0000000000000000000000000000000000000000..75d3cb78378b33e3e304113f3bab397e71e7ffc6 --- /dev/null +++ b/testcase/fate-acodec-pcm-u32be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170237-616245678 +# @用例名称: fate-acodec-pcm-u32be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-u32be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-u32be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-u32be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-u32le.sh b/testcase/fate-acodec-pcm-u32le.sh new file mode 100755 index 0000000000000000000000000000000000000000..91c39ec03b432e30425717f4fde11ed35039fccf --- /dev/null +++ b/testcase/fate-acodec-pcm-u32le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170237-700113926 +# @用例名称: fate-acodec-pcm-u32le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-u32le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-u32le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-u32le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-pcm-u8.sh b/testcase/fate-acodec-pcm-u8.sh new file mode 100755 index 0000000000000000000000000000000000000000..c004250c9be6caedb25418772dbcd81ae4da10be --- /dev/null +++ b/testcase/fate-acodec-pcm-u8.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170237-784369586 +# @用例名称: fate-acodec-pcm-u8 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-pcm-u8 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-pcm-u8 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-pcm-u8 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-ra144.sh b/testcase/fate-acodec-ra144.sh new file mode 100755 index 0000000000000000000000000000000000000000..90a5479063e2b835f703ffcc79814b6351ca0a18 --- /dev/null +++ b/testcase/fate-acodec-ra144.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170237-868909732 +# @用例名称: fate-acodec-ra144 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-ra144 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-ra144 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-ra144 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-roqaudio.sh b/testcase/fate-acodec-roqaudio.sh new file mode 100755 index 0000000000000000000000000000000000000000..485ac32805d44e92724c5818afa8c756e9b6aefb --- /dev/null +++ b/testcase/fate-acodec-roqaudio.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170237-955004955 +# @用例名称: fate-acodec-roqaudio +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-roqaudio +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-roqaudio + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-roqaudio + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-s302m.sh b/testcase/fate-acodec-s302m.sh new file mode 100755 index 0000000000000000000000000000000000000000..527a9353f671e2cbd734c6ee30507526bb7b9db4 --- /dev/null +++ b/testcase/fate-acodec-s302m.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170238-042052382 +# @用例名称: fate-acodec-s302m +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-s302m +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-s302m + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-s302m + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-tta.sh b/testcase/fate-acodec-tta.sh new file mode 100755 index 0000000000000000000000000000000000000000..fc6665e9b1ec2fb46ddf261e207968a0a6a538d3 --- /dev/null +++ b/testcase/fate-acodec-tta.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170238-127139206 +# @用例名称: fate-acodec-tta +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-tta +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-tta + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-tta + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-acodec-wavpack.sh b/testcase/fate-acodec-wavpack.sh new file mode 100755 index 0000000000000000000000000000000000000000..7462b50146a90346ffac2ad8539a36df4f5eb4e2 --- /dev/null +++ b/testcase/fate-acodec-wavpack.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170238-213335159 +# @用例名称: fate-acodec-wavpack +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-acodec-wavpack +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-acodec-wavpack + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-acodec-wavpack + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-concat-demuxer-extended-lavf-mxf.sh b/testcase/fate-concat-demuxer-extended-lavf-mxf.sh new file mode 100755 index 0000000000000000000000000000000000000000..3a6a5c486b32cbabbc669211197f9a714e5cc71f --- /dev/null +++ b/testcase/fate-concat-demuxer-extended-lavf-mxf.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170238-296916662 +# @用例名称: fate-concat-demuxer-extended-lavf-mxf +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-concat-demuxer-extended-lavf-mxf +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-concat-demuxer-extended-lavf-mxf + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-concat-demuxer-extended-lavf-mxf + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-concat-demuxer-extended-lavf-mxf_d10.sh b/testcase/fate-concat-demuxer-extended-lavf-mxf_d10.sh new file mode 100755 index 0000000000000000000000000000000000000000..9bb04c35198255f51572a11b278416ab16bd1e0f --- /dev/null +++ b/testcase/fate-concat-demuxer-extended-lavf-mxf_d10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170238-382352870 +# @用例名称: fate-concat-demuxer-extended-lavf-mxf_d10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-concat-demuxer-extended-lavf-mxf_d10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-concat-demuxer-extended-lavf-mxf_d10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-concat-demuxer-extended-lavf-mxf_d10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-concat-demuxer-simple1-lavf-mxf.sh b/testcase/fate-concat-demuxer-simple1-lavf-mxf.sh new file mode 100755 index 0000000000000000000000000000000000000000..ed462d7b47c34b421679f18abd13ff85867cace0 --- /dev/null +++ b/testcase/fate-concat-demuxer-simple1-lavf-mxf.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170238-467545153 +# @用例名称: fate-concat-demuxer-simple1-lavf-mxf +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-concat-demuxer-simple1-lavf-mxf +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-concat-demuxer-simple1-lavf-mxf + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-concat-demuxer-simple1-lavf-mxf + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-concat-demuxer-simple1-lavf-mxf_d10.sh b/testcase/fate-concat-demuxer-simple1-lavf-mxf_d10.sh new file mode 100755 index 0000000000000000000000000000000000000000..b2182c186de60d57f5fbf73bdfcb21e3ebf19b22 --- /dev/null +++ b/testcase/fate-concat-demuxer-simple1-lavf-mxf_d10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170238-550361672 +# @用例名称: fate-concat-demuxer-simple1-lavf-mxf_d10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-concat-demuxer-simple1-lavf-mxf_d10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-concat-demuxer-simple1-lavf-mxf_d10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-concat-demuxer-simple1-lavf-mxf_d10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-concat-demuxer-simple2-lavf-ts.sh b/testcase/fate-concat-demuxer-simple2-lavf-ts.sh new file mode 100755 index 0000000000000000000000000000000000000000..eeabcf0323238ab1ed06d7ed50e86b5a842d86ca --- /dev/null +++ b/testcase/fate-concat-demuxer-simple2-lavf-ts.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170238-635590473 +# @用例名称: fate-concat-demuxer-simple2-lavf-ts +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-concat-demuxer-simple2-lavf-ts +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-concat-demuxer-simple2-lavf-ts + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-concat-demuxer-simple2-lavf-ts + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-dcinema-encode.sh b/testcase/fate-dcinema-encode.sh new file mode 100755 index 0000000000000000000000000000000000000000..0bfbc23019e3182e8ef67aa7cbfb4de28ab8a693 --- /dev/null +++ b/testcase/fate-dcinema-encode.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170238-719651928 +# @用例名称: fate-dcinema-encode +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-dcinema-encode +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-dcinema-encode + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-dcinema-encode + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-ffmpeg-filter-in-eof.sh b/testcase/fate-ffmpeg-filter-in-eof.sh new file mode 100755 index 0000000000000000000000000000000000000000..fc0d6f765451fbf8c5f59a61c9c7db155a156231 --- /dev/null +++ b/testcase/fate-ffmpeg-filter-in-eof.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170238-804897179 +# @用例名称: fate-ffmpeg-filter-in-eof +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-ffmpeg-filter-in-eof +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-ffmpeg-filter-in-eof + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-ffmpeg-filter-in-eof + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-ffmpeg-filter_complex.sh b/testcase/fate-ffmpeg-filter_complex.sh new file mode 100755 index 0000000000000000000000000000000000000000..f2eb7f98b4d99cee7346d8c30a09dce4aeeaadb2 --- /dev/null +++ b/testcase/fate-ffmpeg-filter_complex.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170238-890202550 +# @用例名称: fate-ffmpeg-filter_complex +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-ffmpeg-filter_complex +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-ffmpeg-filter_complex + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-ffmpeg-filter_complex + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-ffmpeg-filter_complex_audio.sh b/testcase/fate-ffmpeg-filter_complex_audio.sh new file mode 100755 index 0000000000000000000000000000000000000000..6e78cc02018697361be1d544d088def50dea3152 --- /dev/null +++ b/testcase/fate-ffmpeg-filter_complex_audio.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170238-977057778 +# @用例名称: fate-ffmpeg-filter_complex_audio +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-ffmpeg-filter_complex_audio +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-ffmpeg-filter_complex_audio + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-ffmpeg-filter_complex_audio + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-ffmpeg-lavfi.sh b/testcase/fate-ffmpeg-lavfi.sh new file mode 100755 index 0000000000000000000000000000000000000000..9a6e7ab88eda90365e51e7e60dca86300162bede --- /dev/null +++ b/testcase/fate-ffmpeg-lavfi.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170239-062282160 +# @用例名称: fate-ffmpeg-lavfi +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-ffmpeg-lavfi +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-ffmpeg-lavfi + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-ffmpeg-lavfi + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-ffmpeg-loopback-decoding.sh b/testcase/fate-ffmpeg-loopback-decoding.sh new file mode 100755 index 0000000000000000000000000000000000000000..d157acea6cb3d883b652d5e2e04f0de78a08d8e2 --- /dev/null +++ b/testcase/fate-ffmpeg-loopback-decoding.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170239-149619771 +# @用例名称: fate-ffmpeg-loopback-decoding +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-ffmpeg-loopback-decoding +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-ffmpeg-loopback-decoding + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-ffmpeg-loopback-decoding + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-ffmpeg-streamcopy-t.sh b/testcase/fate-ffmpeg-streamcopy-t.sh new file mode 100755 index 0000000000000000000000000000000000000000..c128a1ef711825d657450290154f7cff56b3f7b6 --- /dev/null +++ b/testcase/fate-ffmpeg-streamcopy-t.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170239-234662186 +# @用例名称: fate-ffmpeg-streamcopy-t +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-ffmpeg-streamcopy-t +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-ffmpeg-streamcopy-t + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-ffmpeg-streamcopy-t + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-ffprobe_compact.sh b/testcase/fate-ffprobe_compact.sh new file mode 100755 index 0000000000000000000000000000000000000000..299365223853ae5faf0c6552a352da1fd5a672b9 --- /dev/null +++ b/testcase/fate-ffprobe_compact.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170239-319583104 +# @用例名称: fate-ffprobe_compact +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-ffprobe_compact +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-ffprobe_compact + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-ffprobe_compact + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-ffprobe_csv.sh b/testcase/fate-ffprobe_csv.sh new file mode 100755 index 0000000000000000000000000000000000000000..17dc4f7dfdf3c996a1c74e202056c01fe4509ade --- /dev/null +++ b/testcase/fate-ffprobe_csv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170239-406693389 +# @用例名称: fate-ffprobe_csv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-ffprobe_csv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-ffprobe_csv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-ffprobe_csv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-ffprobe_default.sh b/testcase/fate-ffprobe_default.sh new file mode 100755 index 0000000000000000000000000000000000000000..959ca858adcca6232f5cf77fd03367247ebab641 --- /dev/null +++ b/testcase/fate-ffprobe_default.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170239-493418811 +# @用例名称: fate-ffprobe_default +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-ffprobe_default +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-ffprobe_default + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-ffprobe_default + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-ffprobe_flat.sh b/testcase/fate-ffprobe_flat.sh new file mode 100755 index 0000000000000000000000000000000000000000..397f8ba70dfa0a5c803963d302810349502e26a0 --- /dev/null +++ b/testcase/fate-ffprobe_flat.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170239-580243631 +# @用例名称: fate-ffprobe_flat +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-ffprobe_flat +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-ffprobe_flat + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-ffprobe_flat + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-ffprobe_ini.sh b/testcase/fate-ffprobe_ini.sh new file mode 100755 index 0000000000000000000000000000000000000000..791bdfdf7f63c4a178ed4c21aa09e01714e12bac --- /dev/null +++ b/testcase/fate-ffprobe_ini.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170239-666445704 +# @用例名称: fate-ffprobe_ini +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-ffprobe_ini +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-ffprobe_ini + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-ffprobe_ini + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-ffprobe_json.sh b/testcase/fate-ffprobe_json.sh new file mode 100755 index 0000000000000000000000000000000000000000..789909ccc06b146cbee2fa86a367066a1a9e8be1 --- /dev/null +++ b/testcase/fate-ffprobe_json.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170239-753087028 +# @用例名称: fate-ffprobe_json +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-ffprobe_json +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-ffprobe_json + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-ffprobe_json + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-ffprobe_xml.sh b/testcase/fate-ffprobe_xml.sh new file mode 100755 index 0000000000000000000000000000000000000000..619a958a11af57433ba4226daf99507f1fa3dd60 --- /dev/null +++ b/testcase/fate-ffprobe_xml.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170239-837045504 +# @用例名称: fate-ffprobe_xml +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-ffprobe_xml +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-ffprobe_xml + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-ffprobe_xml + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-ffprobe_xsd.sh b/testcase/fate-ffprobe_xsd.sh new file mode 100755 index 0000000000000000000000000000000000000000..2b05149eb71f30ab40a47a17769f5ec45890faa0 --- /dev/null +++ b/testcase/fate-ffprobe_xsd.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170239-923521531 +# @用例名称: fate-ffprobe_xsd +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-ffprobe_xsd +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-ffprobe_xsd + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-ffprobe_xsd + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-fifo-muxer-tst.sh b/testcase/fate-fifo-muxer-tst.sh new file mode 100755 index 0000000000000000000000000000000000000000..382dbca272cb6a203d475e9a0e3d758e20cfe531 --- /dev/null +++ b/testcase/fate-fifo-muxer-tst.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170240-010098107 +# @用例名称: fate-fifo-muxer-tst +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-fifo-muxer-tst +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-fifo-muxer-tst + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-fifo-muxer-tst + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-adelay.sh b/testcase/fate-filter-adelay.sh new file mode 100755 index 0000000000000000000000000000000000000000..d40d8724d463a7103a657cbb5fb0eebf3d445d64 --- /dev/null +++ b/testcase/fate-filter-adelay.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170240-096565944 +# @用例名称: fate-filter-adelay +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-adelay +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-adelay + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-adelay + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-aecho.sh b/testcase/fate-filter-aecho.sh new file mode 100755 index 0000000000000000000000000000000000000000..a71dc223e09824a06f272cbfe0b0296d590276b5 --- /dev/null +++ b/testcase/fate-filter-aecho.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170240-182752847 +# @用例名称: fate-filter-aecho +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-aecho +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-aecho + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-aecho + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-aemphasis-50fm.sh b/testcase/fate-filter-aemphasis-50fm.sh new file mode 100755 index 0000000000000000000000000000000000000000..84b544fdc7bf457b88b649230c57fd5c1b18cfed --- /dev/null +++ b/testcase/fate-filter-aemphasis-50fm.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170240-270345812 +# @用例名称: fate-filter-aemphasis-50fm +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-aemphasis-50fm +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-aemphasis-50fm + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-aemphasis-50fm + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-aemphasis-75kf.sh b/testcase/fate-filter-aemphasis-75kf.sh new file mode 100755 index 0000000000000000000000000000000000000000..4984b5be709ea959478d140239021ac96aa89f48 --- /dev/null +++ b/testcase/fate-filter-aemphasis-75kf.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170240-356133983 +# @用例名称: fate-filter-aemphasis-75kf +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-aemphasis-75kf +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-aemphasis-75kf + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-aemphasis-75kf + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-afade-esin.sh b/testcase/fate-filter-afade-esin.sh new file mode 100755 index 0000000000000000000000000000000000000000..781a07c8887d138f0989b54d20c8006dd9b66cc6 --- /dev/null +++ b/testcase/fate-filter-afade-esin.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170240-440550080 +# @用例名称: fate-filter-afade-esin +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-afade-esin +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-afade-esin + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-afade-esin + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-afade-exp.sh b/testcase/fate-filter-afade-exp.sh new file mode 100755 index 0000000000000000000000000000000000000000..701bcbce40f9062b45c5400345d34352de4db979 --- /dev/null +++ b/testcase/fate-filter-afade-exp.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170240-525759302 +# @用例名称: fate-filter-afade-exp +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-afade-exp +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-afade-exp + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-afade-exp + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-afade-hsin.sh b/testcase/fate-filter-afade-hsin.sh new file mode 100755 index 0000000000000000000000000000000000000000..27f1909fb5c371fb8a84a59d610544c1e8831397 --- /dev/null +++ b/testcase/fate-filter-afade-hsin.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170240-610666070 +# @用例名称: fate-filter-afade-hsin +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-afade-hsin +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-afade-hsin + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-afade-hsin + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-afade-iqsin.sh b/testcase/fate-filter-afade-iqsin.sh new file mode 100755 index 0000000000000000000000000000000000000000..c84579e13313666e913332f3f8ce5fd0fbc10f09 --- /dev/null +++ b/testcase/fate-filter-afade-iqsin.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170240-696543648 +# @用例名称: fate-filter-afade-iqsin +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-afade-iqsin +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-afade-iqsin + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-afade-iqsin + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-afade-log.sh b/testcase/fate-filter-afade-log.sh new file mode 100755 index 0000000000000000000000000000000000000000..8b087d32caa4ff5d15aa408366df36b4c366265c --- /dev/null +++ b/testcase/fate-filter-afade-log.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170240-781570965 +# @用例名称: fate-filter-afade-log +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-afade-log +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-afade-log + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-afade-log + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-afade-qsin.sh b/testcase/fate-filter-afade-qsin.sh new file mode 100755 index 0000000000000000000000000000000000000000..19354cccd46533549c21ff0b09310f1c04a7fe1e --- /dev/null +++ b/testcase/fate-filter-afade-qsin.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170240-867914265 +# @用例名称: fate-filter-afade-qsin +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-afade-qsin +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-afade-qsin + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-afade-qsin + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-agate.sh b/testcase/fate-filter-agate.sh new file mode 100755 index 0000000000000000000000000000000000000000..87e0593cbdceaa3076de2767696e51b2150f0870 --- /dev/null +++ b/testcase/fate-filter-agate.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170240-953819383 +# @用例名称: fate-filter-agate +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-agate +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-agate + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-agate + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-alimiter.sh b/testcase/fate-filter-alimiter.sh new file mode 100755 index 0000000000000000000000000000000000000000..190a1a9a360717a73ce69182ce28d073c2288fca --- /dev/null +++ b/testcase/fate-filter-alimiter.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170241-038770529 +# @用例名称: fate-filter-alimiter +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-alimiter +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-alimiter + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-alimiter + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-allrgb.sh b/testcase/fate-filter-allrgb.sh new file mode 100755 index 0000000000000000000000000000000000000000..363dd9e77715cc74ecf337cb378b6b8eb88c1b10 --- /dev/null +++ b/testcase/fate-filter-allrgb.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170241-123692727 +# @用例名称: fate-filter-allrgb +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-allrgb +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-allrgb + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-allrgb + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-allyuv.sh b/testcase/fate-filter-allyuv.sh new file mode 100755 index 0000000000000000000000000000000000000000..0e019bcb11a11bc89e8769fbe3864878abf77672 --- /dev/null +++ b/testcase/fate-filter-allyuv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170241-210598076 +# @用例名称: fate-filter-allyuv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-allyuv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-allyuv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-allyuv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-aloop.sh b/testcase/fate-filter-aloop.sh new file mode 100755 index 0000000000000000000000000000000000000000..e153959d17431925cc6c41d0925a28d0e03491bc --- /dev/null +++ b/testcase/fate-filter-aloop.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170241-298890718 +# @用例名称: fate-filter-aloop +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-aloop +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-aloop + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-aloop + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-alphaextract_alphamerge_rgb.sh b/testcase/fate-filter-alphaextract_alphamerge_rgb.sh new file mode 100755 index 0000000000000000000000000000000000000000..8b6c6a7be693c27f73a836858d2b3d82cf372485 --- /dev/null +++ b/testcase/fate-filter-alphaextract_alphamerge_rgb.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170241-386344936 +# @用例名称: fate-filter-alphaextract_alphamerge_rgb +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-alphaextract_alphamerge_rgb +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-alphaextract_alphamerge_rgb + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-alphaextract_alphamerge_rgb + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-alphaextract_alphamerge_yuv.sh b/testcase/fate-filter-alphaextract_alphamerge_yuv.sh new file mode 100755 index 0000000000000000000000000000000000000000..20ef25b938b97c2355fe56f73bba56eb3b36977d --- /dev/null +++ b/testcase/fate-filter-alphaextract_alphamerge_yuv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170241-474013170 +# @用例名称: fate-filter-alphaextract_alphamerge_yuv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-alphaextract_alphamerge_yuv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-alphaextract_alphamerge_yuv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-alphaextract_alphamerge_yuv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-amerge-mode.sh b/testcase/fate-filter-amerge-mode.sh new file mode 100755 index 0000000000000000000000000000000000000000..52a452614f454fcb17168ec2c1d5542321e6820b --- /dev/null +++ b/testcase/fate-filter-amerge-mode.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170241-647469054 +# @用例名称: fate-filter-amerge-mode +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-amerge-mode +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-amerge-mode + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-amerge-mode + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-amerge.sh b/testcase/fate-filter-amerge.sh new file mode 100755 index 0000000000000000000000000000000000000000..ac352133da49ce24bf5c6b3931362b4770a4b9ff --- /dev/null +++ b/testcase/fate-filter-amerge.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170241-560451687 +# @用例名称: fate-filter-amerge +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-amerge +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-amerge + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-amerge + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-anequalizer.sh b/testcase/fate-filter-anequalizer.sh new file mode 100755 index 0000000000000000000000000000000000000000..db63fcd86aa6ed91b5d2aa953722856be14449bd --- /dev/null +++ b/testcase/fate-filter-anequalizer.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170241-735200447 +# @用例名称: fate-filter-anequalizer +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-anequalizer +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-anequalizer + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-anequalizer + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-anullsink.sh b/testcase/fate-filter-anullsink.sh new file mode 100755 index 0000000000000000000000000000000000000000..72f0dc11b0f2308d997df19fe371e23d141b6093 --- /dev/null +++ b/testcase/fate-filter-anullsink.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170241-823392290 +# @用例名称: fate-filter-anullsink +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-anullsink +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-anullsink + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-anullsink + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-apad.sh b/testcase/fate-filter-apad.sh new file mode 100755 index 0000000000000000000000000000000000000000..25eb6f57082eea8172695b5852c4e040d61b9072 --- /dev/null +++ b/testcase/fate-filter-apad.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170241-911206761 +# @用例名称: fate-filter-apad +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-apad +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-apad + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-apad + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-asegment-samples-absolute.sh b/testcase/fate-filter-asegment-samples-absolute.sh new file mode 100755 index 0000000000000000000000000000000000000000..11d0fe5519ded55bae8c5272086105cac9d02da0 --- /dev/null +++ b/testcase/fate-filter-asegment-samples-absolute.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170241-997992532 +# @用例名称: fate-filter-asegment-samples-absolute +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-asegment-samples-absolute +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-asegment-samples-absolute + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-asegment-samples-absolute + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-asegment-samples-relative.sh b/testcase/fate-filter-asegment-samples-relative.sh new file mode 100755 index 0000000000000000000000000000000000000000..57e17127ffc7f803303f94be26b1f7af275150f8 --- /dev/null +++ b/testcase/fate-filter-asegment-samples-relative.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170242-086438921 +# @用例名称: fate-filter-asegment-samples-relative +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-asegment-samples-relative +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-asegment-samples-relative + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-asegment-samples-relative + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-asegment-timestamps-absolute.sh b/testcase/fate-filter-asegment-timestamps-absolute.sh new file mode 100755 index 0000000000000000000000000000000000000000..ffe340b8fda8034964d0935246d7e2f687c42599 --- /dev/null +++ b/testcase/fate-filter-asegment-timestamps-absolute.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170242-173759032 +# @用例名称: fate-filter-asegment-timestamps-absolute +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-asegment-timestamps-absolute +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-asegment-timestamps-absolute + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-asegment-timestamps-absolute + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-asegment-timestamps-relative.sh b/testcase/fate-filter-asegment-timestamps-relative.sh new file mode 100755 index 0000000000000000000000000000000000000000..267f9da2fa791ef8cfe81811e3b743e0ae81fefb --- /dev/null +++ b/testcase/fate-filter-asegment-timestamps-relative.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170242-262617982 +# @用例名称: fate-filter-asegment-timestamps-relative +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-asegment-timestamps-relative +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-asegment-timestamps-relative + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-asegment-timestamps-relative + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-aselect.sh b/testcase/fate-filter-aselect.sh new file mode 100755 index 0000000000000000000000000000000000000000..342003d99479fd8d64dea2e513546b89e347aad9 --- /dev/null +++ b/testcase/fate-filter-aselect.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170242-349288955 +# @用例名称: fate-filter-aselect +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-aselect +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-aselect + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-aselect + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-asetnsamples-nopad.sh b/testcase/fate-filter-asetnsamples-nopad.sh new file mode 100755 index 0000000000000000000000000000000000000000..26f3d5d8b7b8c6f02c2a6c4c65b655a5253418c7 --- /dev/null +++ b/testcase/fate-filter-asetnsamples-nopad.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170242-439550668 +# @用例名称: fate-filter-asetnsamples-nopad +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-asetnsamples-nopad +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-asetnsamples-nopad + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-asetnsamples-nopad + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-asetnsamples-pad.sh b/testcase/fate-filter-asetnsamples-pad.sh new file mode 100755 index 0000000000000000000000000000000000000000..3507371fd2b18dba6b4bdfeae7df92563a9c3f92 --- /dev/null +++ b/testcase/fate-filter-asetnsamples-pad.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170242-529137245 +# @用例名称: fate-filter-asetnsamples-pad +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-asetnsamples-pad +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-asetnsamples-pad + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-asetnsamples-pad + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-asetrate.sh b/testcase/fate-filter-asetrate.sh new file mode 100755 index 0000000000000000000000000000000000000000..f2b6f6fb776882290d03617db44daf3fd7d0262d --- /dev/null +++ b/testcase/fate-filter-asetrate.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170242-616768929 +# @用例名称: fate-filter-asetrate +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-asetrate +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-asetrate + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-asetrate + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-atrim-duration.sh b/testcase/fate-filter-atrim-duration.sh new file mode 100755 index 0000000000000000000000000000000000000000..4500c8f67c2fc12f33e3d9a0cc703fb3522ae1fc --- /dev/null +++ b/testcase/fate-filter-atrim-duration.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170242-703636279 +# @用例名称: fate-filter-atrim-duration +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-atrim-duration +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-atrim-duration + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-atrim-duration + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-atrim-mixed.sh b/testcase/fate-filter-atrim-mixed.sh new file mode 100755 index 0000000000000000000000000000000000000000..bb85dcd4ef39fd0c1aa084fcf795e459c9c2b610 --- /dev/null +++ b/testcase/fate-filter-atrim-mixed.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170242-791182856 +# @用例名称: fate-filter-atrim-mixed +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-atrim-mixed +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-atrim-mixed + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-atrim-mixed + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-atrim-samples.sh b/testcase/fate-filter-atrim-samples.sh new file mode 100755 index 0000000000000000000000000000000000000000..ce405173a1b9ac7c5f85eb34d6673e82151b50d8 --- /dev/null +++ b/testcase/fate-filter-atrim-samples.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170242-876702521 +# @用例名称: fate-filter-atrim-samples +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-atrim-samples +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-atrim-samples + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-atrim-samples + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-atrim-time.sh b/testcase/fate-filter-atrim-time.sh new file mode 100755 index 0000000000000000000000000000000000000000..c9548d4c1a96403a425fd81a7146f7e9bebf0687 --- /dev/null +++ b/testcase/fate-filter-atrim-time.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170242-962924393 +# @用例名称: fate-filter-atrim-time +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-atrim-time +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-atrim-time + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-atrim-time + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-channelmap-one-int.sh b/testcase/fate-filter-channelmap-one-int.sh new file mode 100755 index 0000000000000000000000000000000000000000..c7ecbc56e5c027855a44aa304a45584c53aa9a4f --- /dev/null +++ b/testcase/fate-filter-channelmap-one-int.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170243-047447759 +# @用例名称: fate-filter-channelmap-one-int +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-channelmap-one-int +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-channelmap-one-int + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-channelmap-one-int + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-channelmap-one-str.sh b/testcase/fate-filter-channelmap-one-str.sh new file mode 100755 index 0000000000000000000000000000000000000000..f94b14c84b24e448b552cee85b1fb27e12e8a62a --- /dev/null +++ b/testcase/fate-filter-channelmap-one-str.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170243-133584582 +# @用例名称: fate-filter-channelmap-one-str +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-channelmap-one-str +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-channelmap-one-str + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-channelmap-one-str + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-channelsplit.sh b/testcase/fate-filter-channelsplit.sh new file mode 100755 index 0000000000000000000000000000000000000000..fa55820cd9b3b9cb63a7eb687a9333d92ad58b3e --- /dev/null +++ b/testcase/fate-filter-channelsplit.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170243-218057969 +# @用例名称: fate-filter-channelsplit +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-channelsplit +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-channelsplit + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-channelsplit + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-chorus.sh b/testcase/fate-filter-chorus.sh new file mode 100755 index 0000000000000000000000000000000000000000..0fb3ecebe91787fe7c17f1a48557672155131b65 --- /dev/null +++ b/testcase/fate-filter-chorus.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170243-304275371 +# @用例名称: fate-filter-chorus +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-chorus +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-chorus + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-chorus + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-chromashift-smear.sh b/testcase/fate-filter-chromashift-smear.sh new file mode 100755 index 0000000000000000000000000000000000000000..9e033be6069c13ddbe8f90619f7adf57802f70d6 --- /dev/null +++ b/testcase/fate-filter-chromashift-smear.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170243-391662580 +# @用例名称: fate-filter-chromashift-smear +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-chromashift-smear +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-chromashift-smear + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-chromashift-smear + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-chromashift-wrap.sh b/testcase/fate-filter-chromashift-wrap.sh new file mode 100755 index 0000000000000000000000000000000000000000..d311b4cd47bd8d0d47594deee2bee80c685dfd74 --- /dev/null +++ b/testcase/fate-filter-chromashift-wrap.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170243-476295844 +# @用例名称: fate-filter-chromashift-wrap +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-chromashift-wrap +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-chromashift-wrap + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-chromashift-wrap + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-codecview.sh b/testcase/fate-filter-codecview.sh new file mode 100755 index 0000000000000000000000000000000000000000..ba9da3c9fe7adba2753a5e96a54e6c99794b5876 --- /dev/null +++ b/testcase/fate-filter-codecview.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170243-566183704 +# @用例名称: fate-filter-codecview +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-codecview +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-codecview + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-codecview + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-colorbalance-gbrap-16.sh b/testcase/fate-filter-colorbalance-gbrap-16.sh new file mode 100755 index 0000000000000000000000000000000000000000..f56e3dd3a72ef38de89562a90b4f3867ff97e8ad --- /dev/null +++ b/testcase/fate-filter-colorbalance-gbrap-16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170243-826658334 +# @用例名称: fate-filter-colorbalance-gbrap-16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-colorbalance-gbrap-16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-colorbalance-gbrap-16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-colorbalance-gbrap-16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-colorbalance-gbrap.sh b/testcase/fate-filter-colorbalance-gbrap.sh new file mode 100755 index 0000000000000000000000000000000000000000..9e6f8da8dd6cac75150d6870207a511cbf871068 --- /dev/null +++ b/testcase/fate-filter-colorbalance-gbrap.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170243-739048950 +# @用例名称: fate-filter-colorbalance-gbrap +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-colorbalance-gbrap +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-colorbalance-gbrap + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-colorbalance-gbrap + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-colorbalance-rgba64.sh b/testcase/fate-filter-colorbalance-rgba64.sh new file mode 100755 index 0000000000000000000000000000000000000000..8376a1ac1f808d28ebc36bbd15819b84bcd2afc6 --- /dev/null +++ b/testcase/fate-filter-colorbalance-rgba64.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170243-912526914 +# @用例名称: fate-filter-colorbalance-rgba64 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-colorbalance-rgba64 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-colorbalance-rgba64 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-colorbalance-rgba64 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-colorbalance.sh b/testcase/fate-filter-colorbalance.sh new file mode 100755 index 0000000000000000000000000000000000000000..c38acb3e3ef3f0bb8ce6436a6175f2ca071c8646 --- /dev/null +++ b/testcase/fate-filter-colorbalance.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170243-653661352 +# @用例名称: fate-filter-colorbalance +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-colorbalance +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-colorbalance + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-colorbalance + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-colorchannelmixer.sh b/testcase/fate-filter-colorchannelmixer.sh new file mode 100755 index 0000000000000000000000000000000000000000..291bb77f235c576b20179008b53fca99919abf62 --- /dev/null +++ b/testcase/fate-filter-colorchannelmixer.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170243-998291916 +# @用例名称: fate-filter-colorchannelmixer +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-colorchannelmixer +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-colorchannelmixer + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-colorchannelmixer + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-colorlevels-16.sh b/testcase/fate-filter-colorlevels-16.sh new file mode 100755 index 0000000000000000000000000000000000000000..fbb30168262d0c8a1bceebbe5de0b0a73519cbd4 --- /dev/null +++ b/testcase/fate-filter-colorlevels-16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170244-167359846 +# @用例名称: fate-filter-colorlevels-16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-colorlevels-16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-colorlevels-16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-colorlevels-16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-colorlevels.sh b/testcase/fate-filter-colorlevels.sh new file mode 100755 index 0000000000000000000000000000000000000000..767ca967ace67ce3a70b166d0a45797e02bca998 --- /dev/null +++ b/testcase/fate-filter-colorlevels.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170244-083617134 +# @用例名称: fate-filter-colorlevels +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-colorlevels +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-colorlevels + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-colorlevels + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-compand.sh b/testcase/fate-filter-compand.sh new file mode 100755 index 0000000000000000000000000000000000000000..ed38a541231cfe6bdecbd4011154b7d3151abec4 --- /dev/null +++ b/testcase/fate-filter-compand.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170244-253433201 +# @用例名称: fate-filter-compand +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-compand +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-compand + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-compand + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-concat-vfr.sh b/testcase/fate-filter-concat-vfr.sh new file mode 100755 index 0000000000000000000000000000000000000000..b575eb5274723b868fba951f5dde218df8e36813 --- /dev/null +++ b/testcase/fate-filter-concat-vfr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170244-423678758 +# @用例名称: fate-filter-concat-vfr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-concat-vfr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-concat-vfr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-concat-vfr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-concat.sh b/testcase/fate-filter-concat.sh new file mode 100755 index 0000000000000000000000000000000000000000..ebe826b8403684864c21110166299bb8a7ca1286 --- /dev/null +++ b/testcase/fate-filter-concat.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170244-339491277 +# @用例名称: fate-filter-concat +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-concat +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-concat + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-concat + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-crazychannels.sh b/testcase/fate-filter-crazychannels.sh new file mode 100755 index 0000000000000000000000000000000000000000..bc61014f1d5c33b5aa20564a9966f5c73be27f9b --- /dev/null +++ b/testcase/fate-filter-crazychannels.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170244-509656295 +# @用例名称: fate-filter-crazychannels +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-crazychannels +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-crazychannels + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-crazychannels + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-crop.sh b/testcase/fate-filter-crop.sh new file mode 100755 index 0000000000000000000000000000000000000000..fddacc2bce1e5f157734a744b10ce41e5cf73db8 --- /dev/null +++ b/testcase/fate-filter-crop.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170244-596759339 +# @用例名称: fate-filter-crop +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-crop +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-crop + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-crop + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-crop_scale.sh b/testcase/fate-filter-crop_scale.sh new file mode 100755 index 0000000000000000000000000000000000000000..518292eea13446313540d66b139ee701d2fc6b84 --- /dev/null +++ b/testcase/fate-filter-crop_scale.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170244-682891514 +# @用例名称: fate-filter-crop_scale +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-crop_scale +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-crop_scale + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-crop_scale + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-crop_scale_vflip.sh b/testcase/fate-filter-crop_scale_vflip.sh new file mode 100755 index 0000000000000000000000000000000000000000..7ab59f6e13869ac30e0b4b9aaedf36cfa18144c1 --- /dev/null +++ b/testcase/fate-filter-crop_scale_vflip.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170244-771013159 +# @用例名称: fate-filter-crop_scale_vflip +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-crop_scale_vflip +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-crop_scale_vflip + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-crop_scale_vflip + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-crop_vflip.sh b/testcase/fate-filter-crop_vflip.sh new file mode 100755 index 0000000000000000000000000000000000000000..91ac11f63fb04aaf6ed0ac27770227ffafe8f135 --- /dev/null +++ b/testcase/fate-filter-crop_vflip.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170244-856630512 +# @用例名称: fate-filter-crop_vflip +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-crop_vflip +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-crop_vflip + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-crop_vflip + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-crystalizer.sh b/testcase/fate-filter-crystalizer.sh new file mode 100755 index 0000000000000000000000000000000000000000..1b17353e6cb55777045bb2e4e46fd92ae4bf2703 --- /dev/null +++ b/testcase/fate-filter-crystalizer.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170244-942379524 +# @用例名称: fate-filter-crystalizer +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-crystalizer +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-crystalizer + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-crystalizer + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-dcshift.sh b/testcase/fate-filter-dcshift.sh new file mode 100755 index 0000000000000000000000000000000000000000..ece72b3b0ff8bfb196c79fc7b650dc2fa4cb451f --- /dev/null +++ b/testcase/fate-filter-dcshift.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170245-028052597 +# @用例名称: fate-filter-dcshift +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-dcshift +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-dcshift + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-dcshift + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-decimate.sh b/testcase/fate-filter-decimate.sh new file mode 100755 index 0000000000000000000000000000000000000000..8e7ed00312ae64ea083ca5e6a3ec1deaeb2a5c88 --- /dev/null +++ b/testcase/fate-filter-decimate.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170245-111771989 +# @用例名称: fate-filter-decimate +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-decimate +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-decimate + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-decimate + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-drawbox.sh b/testcase/fate-filter-drawbox.sh new file mode 100755 index 0000000000000000000000000000000000000000..23493d24d4d8c3bc028c092c78634f4df6942c0d --- /dev/null +++ b/testcase/fate-filter-drawbox.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170245-196560038 +# @用例名称: fate-filter-drawbox +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-drawbox +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-drawbox + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-drawbox + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-earwax.sh b/testcase/fate-filter-earwax.sh new file mode 100755 index 0000000000000000000000000000000000000000..d47cb9bac4f037bfea4dfe285ba148fed666e871 --- /dev/null +++ b/testcase/fate-filter-earwax.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170245-280254960 +# @用例名称: fate-filter-earwax +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-earwax +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-earwax + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-earwax + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-edgedetect-colormix.sh b/testcase/fate-filter-edgedetect-colormix.sh new file mode 100755 index 0000000000000000000000000000000000000000..4145373eaab8bcdf9ee6a4b8c80519ec36ed4f3d --- /dev/null +++ b/testcase/fate-filter-edgedetect-colormix.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170245-452016978 +# @用例名称: fate-filter-edgedetect-colormix +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-edgedetect-colormix +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-edgedetect-colormix + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-edgedetect-colormix + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-edgedetect.sh b/testcase/fate-filter-edgedetect.sh new file mode 100755 index 0000000000000000000000000000000000000000..5c09152418c57c89341d166a72f91966e63b73ea --- /dev/null +++ b/testcase/fate-filter-edgedetect.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170245-366015111 +# @用例名称: fate-filter-edgedetect +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-edgedetect +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-edgedetect + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-edgedetect + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-extrastereo.sh b/testcase/fate-filter-extrastereo.sh new file mode 100755 index 0000000000000000000000000000000000000000..cf823e2fa7b4d1b648c3f39f83ba106739d92dd6 --- /dev/null +++ b/testcase/fate-filter-extrastereo.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170245-539372378 +# @用例名称: fate-filter-extrastereo +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-extrastereo +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-extrastereo + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-extrastereo + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-fade.sh b/testcase/fate-filter-fade.sh new file mode 100755 index 0000000000000000000000000000000000000000..87688fca60bc0e0cdb67772e9520f476cc785deb --- /dev/null +++ b/testcase/fate-filter-fade.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170245-625277125 +# @用例名称: fate-filter-fade +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-fade +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-fade + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-fade + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-feedback-hflip.sh b/testcase/fate-filter-feedback-hflip.sh new file mode 100755 index 0000000000000000000000000000000000000000..4fab4fe2c047ad0f290771a5540ac3b3071509a8 --- /dev/null +++ b/testcase/fate-filter-feedback-hflip.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170245-711200844 +# @用例名称: fate-filter-feedback-hflip +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-feedback-hflip +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-feedback-hflip + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-feedback-hflip + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-firequalizer.sh b/testcase/fate-filter-firequalizer.sh new file mode 100755 index 0000000000000000000000000000000000000000..b85a967dfe500467dc12f41e97ca26b0418a9015 --- /dev/null +++ b/testcase/fate-filter-firequalizer.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170245-795520673 +# @用例名称: fate-filter-firequalizer +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-firequalizer +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-firequalizer + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-firequalizer + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-formats.sh b/testcase/fate-filter-formats.sh new file mode 100755 index 0000000000000000000000000000000000000000..d92bbad9d67defda21957ef34c5fb61f52953640 --- /dev/null +++ b/testcase/fate-filter-formats.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170245-880047029 +# @用例名称: fate-filter-formats +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-formats +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-formats + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-formats + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-fps-down-eof-pass.sh b/testcase/fate-filter-fps-down-eof-pass.sh new file mode 100755 index 0000000000000000000000000000000000000000..56a176912b533ae3cc6df60300bf00bc0a969189 --- /dev/null +++ b/testcase/fate-filter-fps-down-eof-pass.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170246-047323534 +# @用例名称: fate-filter-fps-down-eof-pass +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-fps-down-eof-pass +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-fps-down-eof-pass + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-fps-down-eof-pass + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-fps-down-round-down.sh b/testcase/fate-filter-fps-down-round-down.sh new file mode 100755 index 0000000000000000000000000000000000000000..f3491ab470fee0ccefa42e64ccb5d6d3f28a31bf --- /dev/null +++ b/testcase/fate-filter-fps-down-round-down.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170246-131926548 +# @用例名称: fate-filter-fps-down-round-down +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-fps-down-round-down +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-fps-down-round-down + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-fps-down-round-down + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-fps-down-round-up.sh b/testcase/fate-filter-fps-down-round-up.sh new file mode 100755 index 0000000000000000000000000000000000000000..cec1a8808025a202f0bb6196df479cc99e7c50f2 --- /dev/null +++ b/testcase/fate-filter-fps-down-round-up.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170246-218888006 +# @用例名称: fate-filter-fps-down-round-up +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-fps-down-round-up +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-fps-down-round-up + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-fps-down-round-up + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-fps-down.sh b/testcase/fate-filter-fps-down.sh new file mode 100755 index 0000000000000000000000000000000000000000..b874fd799436ab4f8a1844b115f09b797740b8e6 --- /dev/null +++ b/testcase/fate-filter-fps-down.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170245-964373668 +# @用例名称: fate-filter-fps-down +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-fps-down +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-fps-down + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-fps-down + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-fps-start-drop.sh b/testcase/fate-filter-fps-start-drop.sh new file mode 100755 index 0000000000000000000000000000000000000000..0f3e17e9c5072e998e588d77ac52c95277ccb76a --- /dev/null +++ b/testcase/fate-filter-fps-start-drop.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170246-305868673 +# @用例名称: fate-filter-fps-start-drop +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-fps-start-drop +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-fps-start-drop + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-fps-start-drop + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-fps-start-fill.sh b/testcase/fate-filter-fps-start-fill.sh new file mode 100755 index 0000000000000000000000000000000000000000..3f1b2a2e987832ec07c9d0314ea0282dbdaac96a --- /dev/null +++ b/testcase/fate-filter-fps-start-fill.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170246-395120445 +# @用例名称: fate-filter-fps-start-fill +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-fps-start-fill +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-fps-start-fill + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-fps-start-fill + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-fps-up-round-down.sh b/testcase/fate-filter-fps-up-round-down.sh new file mode 100755 index 0000000000000000000000000000000000000000..45e8a5abe451f18bd2d6354db4eb3b596ca88139 --- /dev/null +++ b/testcase/fate-filter-fps-up-round-down.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170246-574425906 +# @用例名称: fate-filter-fps-up-round-down +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-fps-up-round-down +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-fps-up-round-down + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-fps-up-round-down + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-fps-up-round-up.sh b/testcase/fate-filter-fps-up-round-up.sh new file mode 100755 index 0000000000000000000000000000000000000000..9e2566a9dd9696fef8f503b2ed255d272ae9d485 --- /dev/null +++ b/testcase/fate-filter-fps-up-round-up.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170246-661215867 +# @用例名称: fate-filter-fps-up-round-up +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-fps-up-round-up +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-fps-up-round-up + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-fps-up-round-up + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-fps-up.sh b/testcase/fate-filter-fps-up.sh new file mode 100755 index 0000000000000000000000000000000000000000..724935207b6e21d0896474a664c998dcd3f5aa23 --- /dev/null +++ b/testcase/fate-filter-fps-up.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170246-485974107 +# @用例名称: fate-filter-fps-up +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-fps-up +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-fps-up + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-fps-up + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-framepack-columns.sh b/testcase/fate-filter-framepack-columns.sh new file mode 100755 index 0000000000000000000000000000000000000000..3ea2f3e653e44607d820e17c2db5dc1bcda02241 --- /dev/null +++ b/testcase/fate-filter-framepack-columns.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170246-749579167 +# @用例名称: fate-filter-framepack-columns +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-framepack-columns +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-framepack-columns + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-framepack-columns + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-framepack-frameseq.sh b/testcase/fate-filter-framepack-frameseq.sh new file mode 100755 index 0000000000000000000000000000000000000000..122d246b702cc2623f12467fc194380975529377 --- /dev/null +++ b/testcase/fate-filter-framepack-frameseq.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170246-839272742 +# @用例名称: fate-filter-framepack-frameseq +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-framepack-frameseq +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-framepack-frameseq + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-framepack-frameseq + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-framepack-lines.sh b/testcase/fate-filter-framepack-lines.sh new file mode 100755 index 0000000000000000000000000000000000000000..b248b5f97069fa8e73753aa95d52636ffc0ec788 --- /dev/null +++ b/testcase/fate-filter-framepack-lines.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170246-926401885 +# @用例名称: fate-filter-framepack-lines +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-framepack-lines +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-framepack-lines + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-framepack-lines + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-framepack-sbs.sh b/testcase/fate-filter-framepack-sbs.sh new file mode 100755 index 0000000000000000000000000000000000000000..e36a5cd58d6b5144972c2c619d5204b087df5c37 --- /dev/null +++ b/testcase/fate-filter-framepack-sbs.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170247-010994300 +# @用例名称: fate-filter-framepack-sbs +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-framepack-sbs +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-framepack-sbs + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-framepack-sbs + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-framepack-tab.sh b/testcase/fate-filter-framepack-tab.sh new file mode 100755 index 0000000000000000000000000000000000000000..3e6cd5cf457f23852f0403a08380be1d6694550a --- /dev/null +++ b/testcase/fate-filter-framepack-tab.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170247-095505116 +# @用例名称: fate-filter-framepack-tab +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-framepack-tab +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-framepack-tab + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-framepack-tab + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-framerate-12bit-down.sh b/testcase/fate-filter-framerate-12bit-down.sh new file mode 100755 index 0000000000000000000000000000000000000000..ba1df8dca1cf697cbf4c95e8a9879e8ecddd32d3 --- /dev/null +++ b/testcase/fate-filter-framerate-12bit-down.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170247-180961943 +# @用例名称: fate-filter-framerate-12bit-down +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-framerate-12bit-down +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-framerate-12bit-down + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-framerate-12bit-down + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-framerate-12bit-up.sh b/testcase/fate-filter-framerate-12bit-up.sh new file mode 100755 index 0000000000000000000000000000000000000000..b7109138d67013e86e6220f8b07fa173c83b1246 --- /dev/null +++ b/testcase/fate-filter-framerate-12bit-up.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170247-266333332 +# @用例名称: fate-filter-framerate-12bit-up +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-framerate-12bit-up +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-framerate-12bit-up + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-framerate-12bit-up + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-framerate-down.sh b/testcase/fate-filter-framerate-down.sh new file mode 100755 index 0000000000000000000000000000000000000000..313460128f1b30a852317b298ea25059aa63e5f7 --- /dev/null +++ b/testcase/fate-filter-framerate-down.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170247-352490175 +# @用例名称: fate-filter-framerate-down +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-framerate-down +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-framerate-down + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-framerate-down + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-framerate-up.sh b/testcase/fate-filter-framerate-up.sh new file mode 100755 index 0000000000000000000000000000000000000000..92b9257503a2e28a9cbf4686b5adc429b0ee1409 --- /dev/null +++ b/testcase/fate-filter-framerate-up.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170247-437014170 +# @用例名称: fate-filter-framerate-up +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-framerate-up +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-framerate-up + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-framerate-up + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-gradfun.sh b/testcase/fate-filter-gradfun.sh new file mode 100755 index 0000000000000000000000000000000000000000..9f06fdc8a969a16d06cbc3fb94f28050a25612ec --- /dev/null +++ b/testcase/fate-filter-gradfun.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170247-524988749 +# @用例名称: fate-filter-gradfun +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-gradfun +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-gradfun + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-gradfun + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-histogram-levels.sh b/testcase/fate-filter-histogram-levels.sh new file mode 100755 index 0000000000000000000000000000000000000000..498f81c6228114ce459cac22629add23b60e5a26 --- /dev/null +++ b/testcase/fate-filter-histogram-levels.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170247-612389717 +# @用例名称: fate-filter-histogram-levels +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-histogram-levels +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-histogram-levels + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-histogram-levels + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-hls-append.sh b/testcase/fate-filter-hls-append.sh new file mode 100755 index 0000000000000000000000000000000000000000..2d27aca62ceccce02a971ffc90c1c858adbdfc10 --- /dev/null +++ b/testcase/fate-filter-hls-append.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170247-789153797 +# @用例名称: fate-filter-hls-append +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-hls-append +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-hls-append + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-hls-append + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-hls.sh b/testcase/fate-filter-hls.sh new file mode 100755 index 0000000000000000000000000000000000000000..3d9ebe27708f49324efd62c866755b922c0e7403 --- /dev/null +++ b/testcase/fate-filter-hls.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170247-700596470 +# @用例名称: fate-filter-hls +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-hls +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-hls + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-hls + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-hstack.sh b/testcase/fate-filter-hstack.sh new file mode 100755 index 0000000000000000000000000000000000000000..1a3e9b4db7736a6f2719a8e3d89960b4e56b7221 --- /dev/null +++ b/testcase/fate-filter-hstack.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170247-878838331 +# @用例名称: fate-filter-hstack +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-hstack +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-hstack + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-hstack + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-hue1.sh b/testcase/fate-filter-hue1.sh new file mode 100755 index 0000000000000000000000000000000000000000..0313e32ce6d5fbe084ce72085981b4b94fd5a452 --- /dev/null +++ b/testcase/fate-filter-hue1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170247-965080953 +# @用例名称: fate-filter-hue1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-hue1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-hue1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-hue1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-hue2.sh b/testcase/fate-filter-hue2.sh new file mode 100755 index 0000000000000000000000000000000000000000..b500f1d74c7008d580ac16e4901bd1d50378d93a --- /dev/null +++ b/testcase/fate-filter-hue2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170248-054494403 +# @用例名称: fate-filter-hue2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-hue2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-hue2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-hue2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-hue3.sh b/testcase/fate-filter-hue3.sh new file mode 100755 index 0000000000000000000000000000000000000000..82e240a8b78da9bf2a86192c2b26cb14237261c4 --- /dev/null +++ b/testcase/fate-filter-hue3.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170248-142095298 +# @用例名称: fate-filter-hue3 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-hue3 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-hue3 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-hue3 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-hue4.sh b/testcase/fate-filter-hue4.sh new file mode 100755 index 0000000000000000000000000000000000000000..612e8c226dfb4606abd176e6c9dfff7b8f501205 --- /dev/null +++ b/testcase/fate-filter-hue4.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170248-228262291 +# @用例名称: fate-filter-hue4 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-hue4 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-hue4 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-hue4 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-idet.sh b/testcase/fate-filter-idet.sh new file mode 100755 index 0000000000000000000000000000000000000000..280a748fdf0f6835f852bb034f94f913b15a1690 --- /dev/null +++ b/testcase/fate-filter-idet.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170248-317181480 +# @用例名称: fate-filter-idet +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-idet +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-idet + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-idet + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-join.sh b/testcase/fate-filter-join.sh new file mode 100755 index 0000000000000000000000000000000000000000..c3c41b592b31f968b4bf410312d967a4f37a214e --- /dev/null +++ b/testcase/fate-filter-join.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170248-404400762 +# @用例名称: fate-filter-join +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-join +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-join + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-join + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-lavd-life.sh b/testcase/fate-filter-lavd-life.sh new file mode 100755 index 0000000000000000000000000000000000000000..12fdd44106cec52801c1a284600d74cbbdf1403e --- /dev/null +++ b/testcase/fate-filter-lavd-life.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170248-490532057 +# @用例名称: fate-filter-lavd-life +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-lavd-life +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-lavd-life + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-lavd-life + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-lavd-scalenorm.sh b/testcase/fate-filter-lavd-scalenorm.sh new file mode 100755 index 0000000000000000000000000000000000000000..43a25709bb4f52d45a140c42b39f1864f05443ac --- /dev/null +++ b/testcase/fate-filter-lavd-scalenorm.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170248-574952205 +# @用例名称: fate-filter-lavd-scalenorm +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-lavd-scalenorm +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-lavd-scalenorm + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-lavd-scalenorm + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-lavd-testsrc.sh b/testcase/fate-filter-lavd-testsrc.sh new file mode 100755 index 0000000000000000000000000000000000000000..a8a40de2dd791a9d14493db88b90490c12d75e91 --- /dev/null +++ b/testcase/fate-filter-lavd-testsrc.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170248-660089978 +# @用例名称: fate-filter-lavd-testsrc +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-lavd-testsrc +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-lavd-testsrc + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-lavd-testsrc + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-median.sh b/testcase/fate-filter-median.sh new file mode 100755 index 0000000000000000000000000000000000000000..a403c027830352c5ec5166a1c3f5c1efa795c6bb --- /dev/null +++ b/testcase/fate-filter-median.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170248-745986226 +# @用例名称: fate-filter-median +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-median +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-median + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-median + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-mergeplanes.sh b/testcase/fate-filter-mergeplanes.sh new file mode 100755 index 0000000000000000000000000000000000000000..9edbdc93bad2ec7e3f9357bd2f6030782de698f8 --- /dev/null +++ b/testcase/fate-filter-mergeplanes.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170248-830843755 +# @用例名称: fate-filter-mergeplanes +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-mergeplanes +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-mergeplanes + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-mergeplanes + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-minterpolate-down.sh b/testcase/fate-filter-minterpolate-down.sh new file mode 100755 index 0000000000000000000000000000000000000000..f9704b792c50dcb70e606e66705f2d90f59d4626 --- /dev/null +++ b/testcase/fate-filter-minterpolate-down.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170248-914950749 +# @用例名称: fate-filter-minterpolate-down +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-minterpolate-down +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-minterpolate-down + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-minterpolate-down + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-minterpolate-up.sh b/testcase/fate-filter-minterpolate-up.sh new file mode 100755 index 0000000000000000000000000000000000000000..c71871aa482f516e14e318dac14acdc89a45f21b --- /dev/null +++ b/testcase/fate-filter-minterpolate-up.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170248-998720189 +# @用例名称: fate-filter-minterpolate-up +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-minterpolate-up +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-minterpolate-up + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-minterpolate-up + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-negate.sh b/testcase/fate-filter-negate.sh new file mode 100755 index 0000000000000000000000000000000000000000..15c6ac7ea4fe15110c931c8761a80cf3f39a212b --- /dev/null +++ b/testcase/fate-filter-negate.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170249-083200355 +# @用例名称: fate-filter-negate +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-negate +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-negate + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-negate + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-null.sh b/testcase/fate-filter-null.sh new file mode 100755 index 0000000000000000000000000000000000000000..3de385dd0552f6a90381659fcc50568716e636af --- /dev/null +++ b/testcase/fate-filter-null.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170249-167212651 +# @用例名称: fate-filter-null +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-null +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-null + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-null + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-overlay.sh b/testcase/fate-filter-overlay.sh new file mode 100755 index 0000000000000000000000000000000000000000..c022d41e2d144c90a7390a888326de6cd3aa90c7 --- /dev/null +++ b/testcase/fate-filter-overlay.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170249-254532892 +# @用例名称: fate-filter-overlay +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-overlay +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-overlay + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-overlay + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-overlay_nv12.sh b/testcase/fate-filter-overlay_nv12.sh new file mode 100755 index 0000000000000000000000000000000000000000..7d1e76ee8eebb31aba39c81c74088383bad81678 --- /dev/null +++ b/testcase/fate-filter-overlay_nv12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170249-338094715 +# @用例名称: fate-filter-overlay_nv12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-overlay_nv12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-overlay_nv12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-overlay_nv12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-overlay_nv21.sh b/testcase/fate-filter-overlay_nv21.sh new file mode 100755 index 0000000000000000000000000000000000000000..4df56a9b03f161864148483d90126e2109a8265c --- /dev/null +++ b/testcase/fate-filter-overlay_nv21.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170249-420665889 +# @用例名称: fate-filter-overlay_nv21 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-overlay_nv21 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-overlay_nv21 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-overlay_nv21 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-overlay_rgb.sh b/testcase/fate-filter-overlay_rgb.sh new file mode 100755 index 0000000000000000000000000000000000000000..527697055b8853417396b5b7ea06c00344cfd50d --- /dev/null +++ b/testcase/fate-filter-overlay_rgb.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170249-504964369 +# @用例名称: fate-filter-overlay_rgb +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-overlay_rgb +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-overlay_rgb + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-overlay_rgb + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-overlay_yuv420.sh b/testcase/fate-filter-overlay_yuv420.sh new file mode 100755 index 0000000000000000000000000000000000000000..d554027279a8c6e603b72dd23a4a9f0dfd658fdb --- /dev/null +++ b/testcase/fate-filter-overlay_yuv420.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170249-589347477 +# @用例名称: fate-filter-overlay_yuv420 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-overlay_yuv420 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-overlay_yuv420 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-overlay_yuv420 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-overlay_yuv420p10.sh b/testcase/fate-filter-overlay_yuv420p10.sh new file mode 100755 index 0000000000000000000000000000000000000000..77155d60638bff7af8d21624142546a5eba90aa8 --- /dev/null +++ b/testcase/fate-filter-overlay_yuv420p10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170249-673520499 +# @用例名称: fate-filter-overlay_yuv420p10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-overlay_yuv420p10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-overlay_yuv420p10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-overlay_yuv420p10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-overlay_yuv422.sh b/testcase/fate-filter-overlay_yuv422.sh new file mode 100755 index 0000000000000000000000000000000000000000..50db20dbb59e5873d2c80bc5c0885564c2cc5dca --- /dev/null +++ b/testcase/fate-filter-overlay_yuv422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170249-758174582 +# @用例名称: fate-filter-overlay_yuv422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-overlay_yuv422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-overlay_yuv422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-overlay_yuv422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-overlay_yuv422p10.sh b/testcase/fate-filter-overlay_yuv422p10.sh new file mode 100755 index 0000000000000000000000000000000000000000..6af5494b590a27d3bd49c3852d52498cfeb9ca0a --- /dev/null +++ b/testcase/fate-filter-overlay_yuv422p10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170249-841450492 +# @用例名称: fate-filter-overlay_yuv422p10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-overlay_yuv422p10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-overlay_yuv422p10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-overlay_yuv422p10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-overlay_yuv444.sh b/testcase/fate-filter-overlay_yuv444.sh new file mode 100755 index 0000000000000000000000000000000000000000..3b34d777b5ca4593a3fc1f7bf816f987d5d0e895 --- /dev/null +++ b/testcase/fate-filter-overlay_yuv444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170249-924691022 +# @用例名称: fate-filter-overlay_yuv444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-overlay_yuv444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-overlay_yuv444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-overlay_yuv444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-overlay_yuv444p10.sh b/testcase/fate-filter-overlay_yuv444p10.sh new file mode 100755 index 0000000000000000000000000000000000000000..a436da0a581db2711d3ebea4503a44f163a8028f --- /dev/null +++ b/testcase/fate-filter-overlay_yuv444p10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170250-010636771 +# @用例名称: fate-filter-overlay_yuv444p10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-overlay_yuv444p10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-overlay_yuv444p10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-overlay_yuv444p10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pad.sh b/testcase/fate-filter-pad.sh new file mode 100755 index 0000000000000000000000000000000000000000..4746248576ddb2d29722f08c46991e1daabb362d --- /dev/null +++ b/testcase/fate-filter-pad.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170250-099520130 +# @用例名称: fate-filter-pad +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pad +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pad + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pad + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pal100bars.sh b/testcase/fate-filter-pal100bars.sh new file mode 100755 index 0000000000000000000000000000000000000000..119a3d901f13a713eb487f3f2b689dedfdb38646 --- /dev/null +++ b/testcase/fate-filter-pal100bars.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170250-186801992 +# @用例名称: fate-filter-pal100bars +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pal100bars +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pal100bars + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pal100bars + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pal75bars.sh b/testcase/fate-filter-pal75bars.sh new file mode 100755 index 0000000000000000000000000000000000000000..79cc5f8314e9d1ffba85f860156ed5cb402c73e8 --- /dev/null +++ b/testcase/fate-filter-pal75bars.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170250-272421656 +# @用例名称: fate-filter-pal75bars +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pal75bars +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pal75bars + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pal75bars + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pan-downmix1.sh b/testcase/fate-filter-pan-downmix1.sh new file mode 100755 index 0000000000000000000000000000000000000000..8abee8152e5984cfacb35c7381c47177462a5860 --- /dev/null +++ b/testcase/fate-filter-pan-downmix1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170250-355246145 +# @用例名称: fate-filter-pan-downmix1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pan-downmix1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pan-downmix1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pan-downmix1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pan-downmix2.sh b/testcase/fate-filter-pan-downmix2.sh new file mode 100755 index 0000000000000000000000000000000000000000..79337e4e3dfa42512c67ded37381d320b74500d8 --- /dev/null +++ b/testcase/fate-filter-pan-downmix2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170250-439658021 +# @用例名称: fate-filter-pan-downmix2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pan-downmix2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pan-downmix2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pan-downmix2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pan-mono1.sh b/testcase/fate-filter-pan-mono1.sh new file mode 100755 index 0000000000000000000000000000000000000000..b29cea930cf284fd4e10e97f21655109742c72e3 --- /dev/null +++ b/testcase/fate-filter-pan-mono1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170250-525691197 +# @用例名称: fate-filter-pan-mono1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pan-mono1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pan-mono1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pan-mono1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pan-mono2.sh b/testcase/fate-filter-pan-mono2.sh new file mode 100755 index 0000000000000000000000000000000000000000..a82f1e70769982f40eb4470bcdf7624f6a7f5a56 --- /dev/null +++ b/testcase/fate-filter-pan-mono2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170250-611921949 +# @用例名称: fate-filter-pan-mono2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pan-mono2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pan-mono2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pan-mono2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pan-stereo1.sh b/testcase/fate-filter-pan-stereo1.sh new file mode 100755 index 0000000000000000000000000000000000000000..5cb5d27c94cc0cc07c4ac3823d97a21012d0564e --- /dev/null +++ b/testcase/fate-filter-pan-stereo1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170250-696026533 +# @用例名称: fate-filter-pan-stereo1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pan-stereo1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pan-stereo1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pan-stereo1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pan-stereo2.sh b/testcase/fate-filter-pan-stereo2.sh new file mode 100755 index 0000000000000000000000000000000000000000..408a52e2ad29f7581b25c1c32c40188cd8543a74 --- /dev/null +++ b/testcase/fate-filter-pan-stereo2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170250-780341713 +# @用例名称: fate-filter-pan-stereo2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pan-stereo2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pan-stereo2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pan-stereo2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pan-stereo3.sh b/testcase/fate-filter-pan-stereo3.sh new file mode 100755 index 0000000000000000000000000000000000000000..1dd97cbb37af2b57adefcfc829ae3f7bce420599 --- /dev/null +++ b/testcase/fate-filter-pan-stereo3.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170250-864485466 +# @用例名称: fate-filter-pan-stereo3 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pan-stereo3 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pan-stereo3 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pan-stereo3 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pan-stereo4.sh b/testcase/fate-filter-pan-stereo4.sh new file mode 100755 index 0000000000000000000000000000000000000000..4d1dcd973ff386ffb96c6fe9bbe3a28fdf7dda80 --- /dev/null +++ b/testcase/fate-filter-pan-stereo4.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170250-950125799 +# @用例名称: fate-filter-pan-stereo4 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pan-stereo4 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pan-stereo4 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pan-stereo4 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pan-upmix1.sh b/testcase/fate-filter-pan-upmix1.sh new file mode 100755 index 0000000000000000000000000000000000000000..e60d162aa255e55b75277b534fd8ebb98aac5391 --- /dev/null +++ b/testcase/fate-filter-pan-upmix1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170251-035178955 +# @用例名称: fate-filter-pan-upmix1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pan-upmix1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pan-upmix1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pan-upmix1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pan-upmix2.sh b/testcase/fate-filter-pan-upmix2.sh new file mode 100755 index 0000000000000000000000000000000000000000..bae06d99ae9c0f9020d09188895617fd3bffa7f1 --- /dev/null +++ b/testcase/fate-filter-pan-upmix2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170251-122265309 +# @用例名称: fate-filter-pan-upmix2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pan-upmix2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pan-upmix2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pan-upmix2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-0bgr.sh b/testcase/fate-filter-pixdesc-0bgr.sh new file mode 100755 index 0000000000000000000000000000000000000000..af3e542ef92d8f95b86404d7d9be32d93eca53cc --- /dev/null +++ b/testcase/fate-filter-pixdesc-0bgr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170251-205916602 +# @用例名称: fate-filter-pixdesc-0bgr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-0bgr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-0bgr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-0bgr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-0rgb.sh b/testcase/fate-filter-pixdesc-0rgb.sh new file mode 100755 index 0000000000000000000000000000000000000000..748c627a7bb830a2eebe290d5656c84d3721bf47 --- /dev/null +++ b/testcase/fate-filter-pixdesc-0rgb.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170251-289987256 +# @用例名称: fate-filter-pixdesc-0rgb +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-0rgb +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-0rgb + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-0rgb + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-abgr.sh b/testcase/fate-filter-pixdesc-abgr.sh new file mode 100755 index 0000000000000000000000000000000000000000..59479a67fdf0ed3bcb7e200064f1a9853cfb1359 --- /dev/null +++ b/testcase/fate-filter-pixdesc-abgr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170251-374416593 +# @用例名称: fate-filter-pixdesc-abgr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-abgr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-abgr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-abgr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-argb.sh b/testcase/fate-filter-pixdesc-argb.sh new file mode 100755 index 0000000000000000000000000000000000000000..68abda7d1863c12733ddd5cce9b5b74331d84869 --- /dev/null +++ b/testcase/fate-filter-pixdesc-argb.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170251-458099765 +# @用例名称: fate-filter-pixdesc-argb +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-argb +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-argb + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-argb + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-ayuv.sh b/testcase/fate-filter-pixdesc-ayuv.sh new file mode 100755 index 0000000000000000000000000000000000000000..89915cfe5e2260af989412cf49f9dc8ea431819f --- /dev/null +++ b/testcase/fate-filter-pixdesc-ayuv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170251-542504123 +# @用例名称: fate-filter-pixdesc-ayuv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-ayuv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-ayuv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-ayuv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-ayuv64be.sh b/testcase/fate-filter-pixdesc-ayuv64be.sh new file mode 100755 index 0000000000000000000000000000000000000000..fe87231c636fa500b6b8ddfbfcc1dae67f684c07 --- /dev/null +++ b/testcase/fate-filter-pixdesc-ayuv64be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170251-627592977 +# @用例名称: fate-filter-pixdesc-ayuv64be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-ayuv64be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-ayuv64be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-ayuv64be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-ayuv64le.sh b/testcase/fate-filter-pixdesc-ayuv64le.sh new file mode 100755 index 0000000000000000000000000000000000000000..0b02e622d2450c599f13a6a5fa004765d63270c7 --- /dev/null +++ b/testcase/fate-filter-pixdesc-ayuv64le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170251-713839478 +# @用例名称: fate-filter-pixdesc-ayuv64le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-ayuv64le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-ayuv64le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-ayuv64le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-bgr0.sh b/testcase/fate-filter-pixdesc-bgr0.sh new file mode 100755 index 0000000000000000000000000000000000000000..a5fa9cd28eeac5f540d1aac958c80f11dd7dc535 --- /dev/null +++ b/testcase/fate-filter-pixdesc-bgr0.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170251-798988752 +# @用例名称: fate-filter-pixdesc-bgr0 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgr0 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgr0 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-bgr0 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-bgr24.sh b/testcase/fate-filter-pixdesc-bgr24.sh new file mode 100755 index 0000000000000000000000000000000000000000..f57a04daa41a7e44b81b871413ba67d474b8e673 --- /dev/null +++ b/testcase/fate-filter-pixdesc-bgr24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170251-882873201 +# @用例名称: fate-filter-pixdesc-bgr24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgr24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgr24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-bgr24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-bgr444be.sh b/testcase/fate-filter-pixdesc-bgr444be.sh new file mode 100755 index 0000000000000000000000000000000000000000..6708fe4da13b31a8ea881191cec06961b3d50fab --- /dev/null +++ b/testcase/fate-filter-pixdesc-bgr444be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170251-966758848 +# @用例名称: fate-filter-pixdesc-bgr444be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgr444be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgr444be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-bgr444be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-bgr444le.sh b/testcase/fate-filter-pixdesc-bgr444le.sh new file mode 100755 index 0000000000000000000000000000000000000000..7f858ecfc7bf8a043a881f3c35535234a2b0d511 --- /dev/null +++ b/testcase/fate-filter-pixdesc-bgr444le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170252-050519169 +# @用例名称: fate-filter-pixdesc-bgr444le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgr444le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgr444le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-bgr444le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-bgr48be.sh b/testcase/fate-filter-pixdesc-bgr48be.sh new file mode 100755 index 0000000000000000000000000000000000000000..b87dc7ee218cd8f85761b9d5712b52c473aac27d --- /dev/null +++ b/testcase/fate-filter-pixdesc-bgr48be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170252-136197762 +# @用例名称: fate-filter-pixdesc-bgr48be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgr48be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgr48be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-bgr48be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-bgr48le.sh b/testcase/fate-filter-pixdesc-bgr48le.sh new file mode 100755 index 0000000000000000000000000000000000000000..13adb156b2c3ec2b1e87756139b8f504fe513d51 --- /dev/null +++ b/testcase/fate-filter-pixdesc-bgr48le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170252-220807214 +# @用例名称: fate-filter-pixdesc-bgr48le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgr48le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgr48le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-bgr48le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-bgr4_byte.sh b/testcase/fate-filter-pixdesc-bgr4_byte.sh new file mode 100755 index 0000000000000000000000000000000000000000..7dde7c81171659cced8964f8c9445841afac7342 --- /dev/null +++ b/testcase/fate-filter-pixdesc-bgr4_byte.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170252-306765822 +# @用例名称: fate-filter-pixdesc-bgr4_byte +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgr4_byte +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgr4_byte + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-bgr4_byte + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-bgr555be.sh b/testcase/fate-filter-pixdesc-bgr555be.sh new file mode 100755 index 0000000000000000000000000000000000000000..61b3678134287f2899d08e03adf82d5df6f1a42f --- /dev/null +++ b/testcase/fate-filter-pixdesc-bgr555be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170252-389682879 +# @用例名称: fate-filter-pixdesc-bgr555be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgr555be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgr555be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-bgr555be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-bgr555le.sh b/testcase/fate-filter-pixdesc-bgr555le.sh new file mode 100755 index 0000000000000000000000000000000000000000..80f5ed13efc64c63f05095bba267b3812e2a2852 --- /dev/null +++ b/testcase/fate-filter-pixdesc-bgr555le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170252-472696944 +# @用例名称: fate-filter-pixdesc-bgr555le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgr555le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgr555le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-bgr555le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-bgr565be.sh b/testcase/fate-filter-pixdesc-bgr565be.sh new file mode 100755 index 0000000000000000000000000000000000000000..7fe37bb8289c4314af57caf7ab69cf0cdfe69b14 --- /dev/null +++ b/testcase/fate-filter-pixdesc-bgr565be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170252-560121342 +# @用例名称: fate-filter-pixdesc-bgr565be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgr565be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgr565be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-bgr565be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-bgr565le.sh b/testcase/fate-filter-pixdesc-bgr565le.sh new file mode 100755 index 0000000000000000000000000000000000000000..11e0b0cc536eb0190fe9c4bebe53a38c5b2193af --- /dev/null +++ b/testcase/fate-filter-pixdesc-bgr565le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170252-646110619 +# @用例名称: fate-filter-pixdesc-bgr565le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgr565le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgr565le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-bgr565le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-bgr8.sh b/testcase/fate-filter-pixdesc-bgr8.sh new file mode 100755 index 0000000000000000000000000000000000000000..42e5241fc01b1c4d06166d76fcc7980e6449f8a4 --- /dev/null +++ b/testcase/fate-filter-pixdesc-bgr8.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170252-732046427 +# @用例名称: fate-filter-pixdesc-bgr8 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgr8 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgr8 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-bgr8 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-bgra.sh b/testcase/fate-filter-pixdesc-bgra.sh new file mode 100755 index 0000000000000000000000000000000000000000..de5f045116621cbb703cb263cbb1478057e66c69 --- /dev/null +++ b/testcase/fate-filter-pixdesc-bgra.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170252-817378046 +# @用例名称: fate-filter-pixdesc-bgra +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgra +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgra + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-bgra + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-bgra64be.sh b/testcase/fate-filter-pixdesc-bgra64be.sh new file mode 100755 index 0000000000000000000000000000000000000000..90c356e3333badddaade7b5ee7671c000bdbd085 --- /dev/null +++ b/testcase/fate-filter-pixdesc-bgra64be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170252-903097208 +# @用例名称: fate-filter-pixdesc-bgra64be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgra64be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgra64be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-bgra64be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-bgra64le.sh b/testcase/fate-filter-pixdesc-bgra64le.sh new file mode 100755 index 0000000000000000000000000000000000000000..e9fe1da6774d8da35ab74fc81f324d31d63fa512 --- /dev/null +++ b/testcase/fate-filter-pixdesc-bgra64le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170252-988297980 +# @用例名称: fate-filter-pixdesc-bgra64le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgra64le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-bgra64le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-bgra64le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrap.sh b/testcase/fate-filter-pixdesc-gbrap.sh new file mode 100755 index 0000000000000000000000000000000000000000..18977625a98a476c814b2fd86fcff471e02f1362 --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrap.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170253-073886155 +# @用例名称: fate-filter-pixdesc-gbrap +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrap +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrap + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrap + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrap10be.sh b/testcase/fate-filter-pixdesc-gbrap10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..cef4e4bc139e9d117bd6f9e444688e9896936252 --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrap10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170253-157371600 +# @用例名称: fate-filter-pixdesc-gbrap10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrap10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrap10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrap10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrap10le.sh b/testcase/fate-filter-pixdesc-gbrap10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..674b6e3e5283ef162319394ff71855d00df97bfb --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrap10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170253-242578023 +# @用例名称: fate-filter-pixdesc-gbrap10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrap10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrap10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrap10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrap12be.sh b/testcase/fate-filter-pixdesc-gbrap12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..f35dca3ffd1f289e73fa93fcfc1894cd026af6aa --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrap12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170253-327421512 +# @用例名称: fate-filter-pixdesc-gbrap12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrap12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrap12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrap12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrap12le.sh b/testcase/fate-filter-pixdesc-gbrap12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..7a8db08ce0041fee2d5f595ff2a3f14e18aac8cc --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrap12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170253-412718722 +# @用例名称: fate-filter-pixdesc-gbrap12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrap12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrap12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrap12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrap14be.sh b/testcase/fate-filter-pixdesc-gbrap14be.sh new file mode 100755 index 0000000000000000000000000000000000000000..fb699c9e592632c92c6941c6d41448608910ab55 --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrap14be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170253-498101041 +# @用例名称: fate-filter-pixdesc-gbrap14be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrap14be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrap14be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrap14be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrap14le.sh b/testcase/fate-filter-pixdesc-gbrap14le.sh new file mode 100755 index 0000000000000000000000000000000000000000..1ae874bc73c5d36126e144e8446e4d267784d050 --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrap14le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170253-582417750 +# @用例名称: fate-filter-pixdesc-gbrap14le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrap14le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrap14le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrap14le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrap16be.sh b/testcase/fate-filter-pixdesc-gbrap16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..4a2149d9273d1bc445d75cbf858e98935fe54b77 --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrap16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170253-666089762 +# @用例名称: fate-filter-pixdesc-gbrap16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrap16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrap16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrap16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrap16le.sh b/testcase/fate-filter-pixdesc-gbrap16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..18e8b89a203e7442db18ff3911b32178b544dd39 --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrap16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170253-749583308 +# @用例名称: fate-filter-pixdesc-gbrap16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrap16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrap16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrap16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrapf32be.sh b/testcase/fate-filter-pixdesc-gbrapf32be.sh new file mode 100755 index 0000000000000000000000000000000000000000..88061eaa64e637ffc99a673699d7d04354c67027 --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrapf32be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170253-836552125 +# @用例名称: fate-filter-pixdesc-gbrapf32be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrapf32be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrapf32be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrapf32be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrapf32le.sh b/testcase/fate-filter-pixdesc-gbrapf32le.sh new file mode 100755 index 0000000000000000000000000000000000000000..eb82d472f70175f0098bea9f2fcb73c7fc923ead --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrapf32le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170253-921585452 +# @用例名称: fate-filter-pixdesc-gbrapf32le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrapf32le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrapf32le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrapf32le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrp.sh b/testcase/fate-filter-pixdesc-gbrp.sh new file mode 100755 index 0000000000000000000000000000000000000000..ba415eba0025f20744efaf55911f548eed187e09 --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrp.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170254-007151275 +# @用例名称: fate-filter-pixdesc-gbrp +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrp + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrp10be.sh b/testcase/fate-filter-pixdesc-gbrp10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..650663574e5f7280fb1c73ca074ea1c028c91ef3 --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrp10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170254-091993215 +# @用例名称: fate-filter-pixdesc-gbrp10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrp10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrp10le.sh b/testcase/fate-filter-pixdesc-gbrp10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..da3e0919b3a029d5f1c9e22859c07186be1117ae --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrp10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170254-176504810 +# @用例名称: fate-filter-pixdesc-gbrp10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrp10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrp10msbbe.sh b/testcase/fate-filter-pixdesc-gbrp10msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..31d566a86964051e24dc080f6be684b7ad192c53 --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrp10msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170254-260668402 +# @用例名称: fate-filter-pixdesc-gbrp10msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp10msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp10msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrp10msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrp10msble.sh b/testcase/fate-filter-pixdesc-gbrp10msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..93df57c961bc32b5cdb08278edb929b6b17fab7b --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrp10msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170254-344780937 +# @用例名称: fate-filter-pixdesc-gbrp10msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp10msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp10msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrp10msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrp12be.sh b/testcase/fate-filter-pixdesc-gbrp12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..7bdb5961e6b57ac69c16d0db5e22e6d70f03cd59 --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrp12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170254-428714823 +# @用例名称: fate-filter-pixdesc-gbrp12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrp12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrp12le.sh b/testcase/fate-filter-pixdesc-gbrp12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..118ad8bba4d8e61cbf09c540e43690e0c5707cc0 --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrp12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170254-515897317 +# @用例名称: fate-filter-pixdesc-gbrp12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrp12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrp12msbbe.sh b/testcase/fate-filter-pixdesc-gbrp12msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..4c10dafd6ec9a1f526ef7f0cf7a1023367c0be7d --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrp12msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170254-602713607 +# @用例名称: fate-filter-pixdesc-gbrp12msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp12msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp12msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrp12msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrp12msble.sh b/testcase/fate-filter-pixdesc-gbrp12msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..6e9ee3459a725c15e5f366effa7b7d1925eb50fe --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrp12msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170254-688133415 +# @用例名称: fate-filter-pixdesc-gbrp12msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp12msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp12msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrp12msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrp14be.sh b/testcase/fate-filter-pixdesc-gbrp14be.sh new file mode 100755 index 0000000000000000000000000000000000000000..3eca4f09895ba196584db9b81b165e379ee2f59a --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrp14be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170254-773951515 +# @用例名称: fate-filter-pixdesc-gbrp14be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp14be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp14be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrp14be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrp14le.sh b/testcase/fate-filter-pixdesc-gbrp14le.sh new file mode 100755 index 0000000000000000000000000000000000000000..15e18184b3efe0c920d8b43e0d318c83c04a7038 --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrp14le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170254-859354894 +# @用例名称: fate-filter-pixdesc-gbrp14le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp14le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp14le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrp14le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrp16be.sh b/testcase/fate-filter-pixdesc-gbrp16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..2acd95a9c90e8d98298bbaeda01859a93e1bb07a --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrp16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170254-946008158 +# @用例名称: fate-filter-pixdesc-gbrp16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrp16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrp16le.sh b/testcase/fate-filter-pixdesc-gbrp16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..6941c2bd875048d9c8df7002519c89708779ab4f --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrp16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170255-032927716 +# @用例名称: fate-filter-pixdesc-gbrp16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrp16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrp9be.sh b/testcase/fate-filter-pixdesc-gbrp9be.sh new file mode 100755 index 0000000000000000000000000000000000000000..abcc38b32dadbe977218bdbdc68799aaaea2a875 --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrp9be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170255-120403812 +# @用例名称: fate-filter-pixdesc-gbrp9be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp9be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp9be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrp9be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrp9le.sh b/testcase/fate-filter-pixdesc-gbrp9le.sh new file mode 100755 index 0000000000000000000000000000000000000000..a75d399b4a3f5346e0c456bd2c8bce2c901a7d9e --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrp9le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170255-206186853 +# @用例名称: fate-filter-pixdesc-gbrp9le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp9le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrp9le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrp9le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrpf32be.sh b/testcase/fate-filter-pixdesc-gbrpf32be.sh new file mode 100755 index 0000000000000000000000000000000000000000..5f8444bbbafad099cd386c2998bd99d21390af66 --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrpf32be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170255-292558343 +# @用例名称: fate-filter-pixdesc-gbrpf32be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrpf32be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrpf32be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrpf32be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gbrpf32le.sh b/testcase/fate-filter-pixdesc-gbrpf32le.sh new file mode 100755 index 0000000000000000000000000000000000000000..970db8030a31a3908b22a0b3857c9319dd5ae01f --- /dev/null +++ b/testcase/fate-filter-pixdesc-gbrpf32le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170255-377333734 +# @用例名称: fate-filter-pixdesc-gbrpf32le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrpf32le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gbrpf32le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gbrpf32le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gray.sh b/testcase/fate-filter-pixdesc-gray.sh new file mode 100755 index 0000000000000000000000000000000000000000..6fdde52a4745f4cdeefc607b1222a30a75e3d324 --- /dev/null +++ b/testcase/fate-filter-pixdesc-gray.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170255-460417387 +# @用例名称: fate-filter-pixdesc-gray +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gray +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gray + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gray + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gray10be.sh b/testcase/fate-filter-pixdesc-gray10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..c00434739b4dbfd70b6e1adbbed4d4bf1c27eb5f --- /dev/null +++ b/testcase/fate-filter-pixdesc-gray10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170255-545293946 +# @用例名称: fate-filter-pixdesc-gray10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gray10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gray10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gray10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gray10le.sh b/testcase/fate-filter-pixdesc-gray10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..73030c779c685c6b90d52c69d9eb04842be140af --- /dev/null +++ b/testcase/fate-filter-pixdesc-gray10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170255-629635985 +# @用例名称: fate-filter-pixdesc-gray10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gray10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gray10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gray10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gray12be.sh b/testcase/fate-filter-pixdesc-gray12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..ccba2d7d112bd4a3239234cc2cb4f9beb0d3920d --- /dev/null +++ b/testcase/fate-filter-pixdesc-gray12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170255-713635331 +# @用例名称: fate-filter-pixdesc-gray12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gray12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gray12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gray12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gray12le.sh b/testcase/fate-filter-pixdesc-gray12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..b0c690c968172049f1842b234c97a291a150006c --- /dev/null +++ b/testcase/fate-filter-pixdesc-gray12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170255-801014920 +# @用例名称: fate-filter-pixdesc-gray12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gray12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gray12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gray12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gray14be.sh b/testcase/fate-filter-pixdesc-gray14be.sh new file mode 100755 index 0000000000000000000000000000000000000000..192fdbd5276071cd57e7e8c9f4026ba41e9c66f3 --- /dev/null +++ b/testcase/fate-filter-pixdesc-gray14be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170255-886356269 +# @用例名称: fate-filter-pixdesc-gray14be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gray14be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gray14be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gray14be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gray14le.sh b/testcase/fate-filter-pixdesc-gray14le.sh new file mode 100755 index 0000000000000000000000000000000000000000..90d68e5d80932adf1a88c7bc97ded221cf764ff8 --- /dev/null +++ b/testcase/fate-filter-pixdesc-gray14le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170255-973033763 +# @用例名称: fate-filter-pixdesc-gray14le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gray14le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gray14le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gray14le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gray16be.sh b/testcase/fate-filter-pixdesc-gray16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..6a695b3a4d43b2b08572cddb88f8bce192432b36 --- /dev/null +++ b/testcase/fate-filter-pixdesc-gray16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170256-057066777 +# @用例名称: fate-filter-pixdesc-gray16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gray16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gray16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gray16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gray16le.sh b/testcase/fate-filter-pixdesc-gray16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..07d4be03ad2020ae6dfc177a2e3af28d22aac09c --- /dev/null +++ b/testcase/fate-filter-pixdesc-gray16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170256-247112658 +# @用例名称: fate-filter-pixdesc-gray16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gray16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gray16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gray16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gray9be.sh b/testcase/fate-filter-pixdesc-gray9be.sh new file mode 100755 index 0000000000000000000000000000000000000000..31f6eb0ffe17301a1310689e505cbc24a7d580dd --- /dev/null +++ b/testcase/fate-filter-pixdesc-gray9be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170256-327536243 +# @用例名称: fate-filter-pixdesc-gray9be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gray9be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gray9be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gray9be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-gray9le.sh b/testcase/fate-filter-pixdesc-gray9le.sh new file mode 100755 index 0000000000000000000000000000000000000000..06992cc101fb538422a35d1bb4c6134fb402d2f6 --- /dev/null +++ b/testcase/fate-filter-pixdesc-gray9le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170256-411125807 +# @用例名称: fate-filter-pixdesc-gray9le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-gray9le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-gray9le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-gray9le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-grayf32be.sh b/testcase/fate-filter-pixdesc-grayf32be.sh new file mode 100755 index 0000000000000000000000000000000000000000..c119ce530ab8779f3429cdede255e5eb0bd726dd --- /dev/null +++ b/testcase/fate-filter-pixdesc-grayf32be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170256-574178765 +# @用例名称: fate-filter-pixdesc-grayf32be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-grayf32be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-grayf32be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-grayf32be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-grayf32le.sh b/testcase/fate-filter-pixdesc-grayf32le.sh new file mode 100755 index 0000000000000000000000000000000000000000..b1ed5fa7e9534c7106272e4432cff110708da4ea --- /dev/null +++ b/testcase/fate-filter-pixdesc-grayf32le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170256-734842919 +# @用例名称: fate-filter-pixdesc-grayf32le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-grayf32le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-grayf32le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-grayf32le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-monob.sh b/testcase/fate-filter-pixdesc-monob.sh new file mode 100755 index 0000000000000000000000000000000000000000..46e635bb14b62f1b7739e1e1ebe33dbafe1c6873 --- /dev/null +++ b/testcase/fate-filter-pixdesc-monob.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170257-057970994 +# @用例名称: fate-filter-pixdesc-monob +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-monob +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-monob + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-monob + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-monow.sh b/testcase/fate-filter-pixdesc-monow.sh new file mode 100755 index 0000000000000000000000000000000000000000..f1c8bc607718f73ce6208820bc2e340e9660a2f5 --- /dev/null +++ b/testcase/fate-filter-pixdesc-monow.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170257-139901251 +# @用例名称: fate-filter-pixdesc-monow +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-monow +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-monow + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-monow + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-nv12.sh b/testcase/fate-filter-pixdesc-nv12.sh new file mode 100755 index 0000000000000000000000000000000000000000..70ae22f5e23b3cd1ff889136d7644239eb8106f7 --- /dev/null +++ b/testcase/fate-filter-pixdesc-nv12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170257-464429597 +# @用例名称: fate-filter-pixdesc-nv12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-nv12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-nv12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-nv12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-nv16.sh b/testcase/fate-filter-pixdesc-nv16.sh new file mode 100755 index 0000000000000000000000000000000000000000..06301ea8c25b6ff4861161f07b8168837da71748 --- /dev/null +++ b/testcase/fate-filter-pixdesc-nv16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170257-545831704 +# @用例名称: fate-filter-pixdesc-nv16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-nv16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-nv16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-nv16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-nv20be.sh b/testcase/fate-filter-pixdesc-nv20be.sh new file mode 100755 index 0000000000000000000000000000000000000000..73045f85baffb2fd4912a54a0df5ab417a378085 --- /dev/null +++ b/testcase/fate-filter-pixdesc-nv20be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170257-706443601 +# @用例名称: fate-filter-pixdesc-nv20be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-nv20be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-nv20be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-nv20be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-nv20le.sh b/testcase/fate-filter-pixdesc-nv20le.sh new file mode 100755 index 0000000000000000000000000000000000000000..617bc21900cf802cc1997ca4818f721a513b7dd3 --- /dev/null +++ b/testcase/fate-filter-pixdesc-nv20le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170257-791576673 +# @用例名称: fate-filter-pixdesc-nv20le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-nv20le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-nv20le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-nv20le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-nv21.sh b/testcase/fate-filter-pixdesc-nv21.sh new file mode 100755 index 0000000000000000000000000000000000000000..aadc9977fbeb975c9488735be2eb5989b140295f --- /dev/null +++ b/testcase/fate-filter-pixdesc-nv21.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170257-877365264 +# @用例名称: fate-filter-pixdesc-nv21 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-nv21 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-nv21 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-nv21 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-nv24.sh b/testcase/fate-filter-pixdesc-nv24.sh new file mode 100755 index 0000000000000000000000000000000000000000..0671030c2e7f77084abb86a878e0ebe95ef91487 --- /dev/null +++ b/testcase/fate-filter-pixdesc-nv24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170257-961836281 +# @用例名称: fate-filter-pixdesc-nv24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-nv24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-nv24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-nv24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-nv42.sh b/testcase/fate-filter-pixdesc-nv42.sh new file mode 100755 index 0000000000000000000000000000000000000000..795b8cc7786bdd77cc21846869b853da892765b9 --- /dev/null +++ b/testcase/fate-filter-pixdesc-nv42.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170258-044544462 +# @用例名称: fate-filter-pixdesc-nv42 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-nv42 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-nv42 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-nv42 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-p010be.sh b/testcase/fate-filter-pixdesc-p010be.sh new file mode 100755 index 0000000000000000000000000000000000000000..624e2ca616b87a24ea2ba07cc14b0b0319cc10d1 --- /dev/null +++ b/testcase/fate-filter-pixdesc-p010be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170258-129914950 +# @用例名称: fate-filter-pixdesc-p010be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-p010be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-p010be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-p010be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-p010le.sh b/testcase/fate-filter-pixdesc-p010le.sh new file mode 100755 index 0000000000000000000000000000000000000000..0eed3f41fbd524e2fb58e59adc05af9993f04425 --- /dev/null +++ b/testcase/fate-filter-pixdesc-p010le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170258-215267820 +# @用例名称: fate-filter-pixdesc-p010le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-p010le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-p010le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-p010le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-p012be.sh b/testcase/fate-filter-pixdesc-p012be.sh new file mode 100755 index 0000000000000000000000000000000000000000..22d1ebf324b66b1c8b90314d3072b6bb9fe28737 --- /dev/null +++ b/testcase/fate-filter-pixdesc-p012be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170258-299258886 +# @用例名称: fate-filter-pixdesc-p012be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-p012be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-p012be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-p012be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-p012le.sh b/testcase/fate-filter-pixdesc-p012le.sh new file mode 100755 index 0000000000000000000000000000000000000000..2b9e191c868de0ca6a2cf45dc66b44ebbba1f4f2 --- /dev/null +++ b/testcase/fate-filter-pixdesc-p012le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170258-384053565 +# @用例名称: fate-filter-pixdesc-p012le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-p012le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-p012le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-p012le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-p016be.sh b/testcase/fate-filter-pixdesc-p016be.sh new file mode 100755 index 0000000000000000000000000000000000000000..2df2b22f1c2d19263857228ef62bc0333cd02835 --- /dev/null +++ b/testcase/fate-filter-pixdesc-p016be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170258-468650539 +# @用例名称: fate-filter-pixdesc-p016be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-p016be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-p016be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-p016be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-p016le.sh b/testcase/fate-filter-pixdesc-p016le.sh new file mode 100755 index 0000000000000000000000000000000000000000..d548cde3a5528a27b2592803ce4cccf8921f5cc1 --- /dev/null +++ b/testcase/fate-filter-pixdesc-p016le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170258-552928050 +# @用例名称: fate-filter-pixdesc-p016le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-p016le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-p016le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-p016le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-p210be.sh b/testcase/fate-filter-pixdesc-p210be.sh new file mode 100755 index 0000000000000000000000000000000000000000..d7cf161008e9061fd127d050792c1bf204e26071 --- /dev/null +++ b/testcase/fate-filter-pixdesc-p210be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170258-638033283 +# @用例名称: fate-filter-pixdesc-p210be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-p210be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-p210be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-p210be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-p210le.sh b/testcase/fate-filter-pixdesc-p210le.sh new file mode 100755 index 0000000000000000000000000000000000000000..3b1efe5c781a79b4cd88f564bc1b0698af798371 --- /dev/null +++ b/testcase/fate-filter-pixdesc-p210le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170258-723066319 +# @用例名称: fate-filter-pixdesc-p210le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-p210le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-p210le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-p210le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-p212be.sh b/testcase/fate-filter-pixdesc-p212be.sh new file mode 100755 index 0000000000000000000000000000000000000000..3013a9335883426736979fa7e174d3d8dce916cd --- /dev/null +++ b/testcase/fate-filter-pixdesc-p212be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170258-807073095 +# @用例名称: fate-filter-pixdesc-p212be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-p212be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-p212be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-p212be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-p212le.sh b/testcase/fate-filter-pixdesc-p212le.sh new file mode 100755 index 0000000000000000000000000000000000000000..c85d49ca509b3410998bc36cbf4e2b5d44f79d28 --- /dev/null +++ b/testcase/fate-filter-pixdesc-p212le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170258-890770576 +# @用例名称: fate-filter-pixdesc-p212le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-p212le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-p212le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-p212le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-p216be.sh b/testcase/fate-filter-pixdesc-p216be.sh new file mode 100755 index 0000000000000000000000000000000000000000..b926963cb08f019c7af7662e9785855534cd585b --- /dev/null +++ b/testcase/fate-filter-pixdesc-p216be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170258-977034328 +# @用例名称: fate-filter-pixdesc-p216be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-p216be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-p216be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-p216be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-p216le.sh b/testcase/fate-filter-pixdesc-p216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..00405e4f69f02d6ca03158622f65c15eaac00f6b --- /dev/null +++ b/testcase/fate-filter-pixdesc-p216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170259-062985935 +# @用例名称: fate-filter-pixdesc-p216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-p216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-p216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-p216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-p410be.sh b/testcase/fate-filter-pixdesc-p410be.sh new file mode 100755 index 0000000000000000000000000000000000000000..b92164154a60143e4d0560bfad13501fede62410 --- /dev/null +++ b/testcase/fate-filter-pixdesc-p410be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170259-148353634 +# @用例名称: fate-filter-pixdesc-p410be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-p410be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-p410be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-p410be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-p410le.sh b/testcase/fate-filter-pixdesc-p410le.sh new file mode 100755 index 0000000000000000000000000000000000000000..09524dec2e65fadd5ce7020d7b2c427046e15ee5 --- /dev/null +++ b/testcase/fate-filter-pixdesc-p410le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170259-232050445 +# @用例名称: fate-filter-pixdesc-p410le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-p410le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-p410le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-p410le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-p412be.sh b/testcase/fate-filter-pixdesc-p412be.sh new file mode 100755 index 0000000000000000000000000000000000000000..d7084278d6c367e45159221efdb0697e065469a4 --- /dev/null +++ b/testcase/fate-filter-pixdesc-p412be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170259-314041301 +# @用例名称: fate-filter-pixdesc-p412be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-p412be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-p412be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-p412be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-p412le.sh b/testcase/fate-filter-pixdesc-p412le.sh new file mode 100755 index 0000000000000000000000000000000000000000..fa7af5160b543b1a057aa08964528aa4a46afb07 --- /dev/null +++ b/testcase/fate-filter-pixdesc-p412le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170259-399620975 +# @用例名称: fate-filter-pixdesc-p412le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-p412le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-p412le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-p412le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-p416be.sh b/testcase/fate-filter-pixdesc-p416be.sh new file mode 100755 index 0000000000000000000000000000000000000000..3b776fe0fa017f55e04cc33a86f4b49792ee6fff --- /dev/null +++ b/testcase/fate-filter-pixdesc-p416be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170259-483111200 +# @用例名称: fate-filter-pixdesc-p416be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-p416be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-p416be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-p416be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-p416le.sh b/testcase/fate-filter-pixdesc-p416le.sh new file mode 100755 index 0000000000000000000000000000000000000000..0357a15e7df49cc32860fc040d3e95c921e929e4 --- /dev/null +++ b/testcase/fate-filter-pixdesc-p416le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170259-567198065 +# @用例名称: fate-filter-pixdesc-p416le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-p416le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-p416le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-p416le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-rgb0.sh b/testcase/fate-filter-pixdesc-rgb0.sh new file mode 100755 index 0000000000000000000000000000000000000000..80516c00b103cecea8e00bb0f9e3de989fc48e8a --- /dev/null +++ b/testcase/fate-filter-pixdesc-rgb0.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170259-653770520 +# @用例名称: fate-filter-pixdesc-rgb0 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgb0 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgb0 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-rgb0 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-rgb24.sh b/testcase/fate-filter-pixdesc-rgb24.sh new file mode 100755 index 0000000000000000000000000000000000000000..0ae0ce197d187c0061c4027bd78dafc432ec0af0 --- /dev/null +++ b/testcase/fate-filter-pixdesc-rgb24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170259-738327345 +# @用例名称: fate-filter-pixdesc-rgb24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgb24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgb24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-rgb24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-rgb444be.sh b/testcase/fate-filter-pixdesc-rgb444be.sh new file mode 100755 index 0000000000000000000000000000000000000000..da35c10c5f5d65a8903195fc3cf5fc7e50f742d2 --- /dev/null +++ b/testcase/fate-filter-pixdesc-rgb444be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170259-822449718 +# @用例名称: fate-filter-pixdesc-rgb444be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgb444be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgb444be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-rgb444be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-rgb444le.sh b/testcase/fate-filter-pixdesc-rgb444le.sh new file mode 100755 index 0000000000000000000000000000000000000000..70a7f07bebbda3f4f863f2ea95995bb3fbab5c4a --- /dev/null +++ b/testcase/fate-filter-pixdesc-rgb444le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170259-906125330 +# @用例名称: fate-filter-pixdesc-rgb444le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgb444le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgb444le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-rgb444le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-rgb48be.sh b/testcase/fate-filter-pixdesc-rgb48be.sh new file mode 100755 index 0000000000000000000000000000000000000000..3ba3ca7feac02053b1798f7ea1c9318bbd5607c8 --- /dev/null +++ b/testcase/fate-filter-pixdesc-rgb48be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170259-990935939 +# @用例名称: fate-filter-pixdesc-rgb48be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgb48be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgb48be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-rgb48be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-rgb48le.sh b/testcase/fate-filter-pixdesc-rgb48le.sh new file mode 100755 index 0000000000000000000000000000000000000000..5f0efd81c3197e9ed76614bcce1cd0d7899b3959 --- /dev/null +++ b/testcase/fate-filter-pixdesc-rgb48le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170300-079903498 +# @用例名称: fate-filter-pixdesc-rgb48le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgb48le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgb48le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-rgb48le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-rgb4_byte.sh b/testcase/fate-filter-pixdesc-rgb4_byte.sh new file mode 100755 index 0000000000000000000000000000000000000000..58e26a1bae4b57932465a5957c652d60cea97d9d --- /dev/null +++ b/testcase/fate-filter-pixdesc-rgb4_byte.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170300-165250808 +# @用例名称: fate-filter-pixdesc-rgb4_byte +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgb4_byte +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgb4_byte + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-rgb4_byte + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-rgb555be.sh b/testcase/fate-filter-pixdesc-rgb555be.sh new file mode 100755 index 0000000000000000000000000000000000000000..338a8b58cca4179073730250348b37dd221e14f3 --- /dev/null +++ b/testcase/fate-filter-pixdesc-rgb555be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170300-250294103 +# @用例名称: fate-filter-pixdesc-rgb555be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgb555be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgb555be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-rgb555be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-rgb555le.sh b/testcase/fate-filter-pixdesc-rgb555le.sh new file mode 100755 index 0000000000000000000000000000000000000000..0c6e327db577107af0e889983450b6f221cee211 --- /dev/null +++ b/testcase/fate-filter-pixdesc-rgb555le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170300-335510185 +# @用例名称: fate-filter-pixdesc-rgb555le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgb555le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgb555le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-rgb555le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-rgb565be.sh b/testcase/fate-filter-pixdesc-rgb565be.sh new file mode 100755 index 0000000000000000000000000000000000000000..72cb3989b5c49bc44e6c0d4f2928e20f50e15deb --- /dev/null +++ b/testcase/fate-filter-pixdesc-rgb565be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170300-419822184 +# @用例名称: fate-filter-pixdesc-rgb565be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgb565be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgb565be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-rgb565be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-rgb565le.sh b/testcase/fate-filter-pixdesc-rgb565le.sh new file mode 100755 index 0000000000000000000000000000000000000000..e3eef20b4f71db7cb4269518b3ea10b0abe6e9b1 --- /dev/null +++ b/testcase/fate-filter-pixdesc-rgb565le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170300-504768711 +# @用例名称: fate-filter-pixdesc-rgb565le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgb565le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgb565le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-rgb565le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-rgb8.sh b/testcase/fate-filter-pixdesc-rgb8.sh new file mode 100755 index 0000000000000000000000000000000000000000..62ffe7bfda6a9c60660c94b571c29a508b80564a --- /dev/null +++ b/testcase/fate-filter-pixdesc-rgb8.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170300-587013381 +# @用例名称: fate-filter-pixdesc-rgb8 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgb8 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgb8 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-rgb8 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-rgba.sh b/testcase/fate-filter-pixdesc-rgba.sh new file mode 100755 index 0000000000000000000000000000000000000000..2c12817eaa80fe58bb58d0162b7fdc03642f51f8 --- /dev/null +++ b/testcase/fate-filter-pixdesc-rgba.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170300-669962598 +# @用例名称: fate-filter-pixdesc-rgba +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgba +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgba + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-rgba + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-rgba64be.sh b/testcase/fate-filter-pixdesc-rgba64be.sh new file mode 100755 index 0000000000000000000000000000000000000000..f04dafedb7fb2b45c34a167d69b2895d3822c4b8 --- /dev/null +++ b/testcase/fate-filter-pixdesc-rgba64be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170300-752793516 +# @用例名称: fate-filter-pixdesc-rgba64be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgba64be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgba64be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-rgba64be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-rgba64le.sh b/testcase/fate-filter-pixdesc-rgba64le.sh new file mode 100755 index 0000000000000000000000000000000000000000..f515b2cbcdb2e9b46204f0cc904696b76c8039c3 --- /dev/null +++ b/testcase/fate-filter-pixdesc-rgba64le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170300-834848949 +# @用例名称: fate-filter-pixdesc-rgba64le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgba64le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-rgba64le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-rgba64le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-uyva.sh b/testcase/fate-filter-pixdesc-uyva.sh new file mode 100755 index 0000000000000000000000000000000000000000..e3ef506b76263a43b657d2e5c42a3f17cf569324 --- /dev/null +++ b/testcase/fate-filter-pixdesc-uyva.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170300-918161139 +# @用例名称: fate-filter-pixdesc-uyva +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-uyva +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-uyva + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-uyva + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-uyvy422.sh b/testcase/fate-filter-pixdesc-uyvy422.sh new file mode 100755 index 0000000000000000000000000000000000000000..7c8654056c26bd90cfabcc9fdedb7a5d7650368f --- /dev/null +++ b/testcase/fate-filter-pixdesc-uyvy422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170300-999944188 +# @用例名称: fate-filter-pixdesc-uyvy422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-uyvy422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-uyvy422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-uyvy422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-v30xle.sh b/testcase/fate-filter-pixdesc-v30xle.sh new file mode 100755 index 0000000000000000000000000000000000000000..7393f089d3ff72d7405b87ac5d9bf757c1d41d20 --- /dev/null +++ b/testcase/fate-filter-pixdesc-v30xle.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170301-085480864 +# @用例名称: fate-filter-pixdesc-v30xle +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-v30xle +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-v30xle + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-v30xle + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-vuya.sh b/testcase/fate-filter-pixdesc-vuya.sh new file mode 100755 index 0000000000000000000000000000000000000000..0a36adda93ea9dfc39da3250fb8092a446e8d08f --- /dev/null +++ b/testcase/fate-filter-pixdesc-vuya.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170301-172794044 +# @用例名称: fate-filter-pixdesc-vuya +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-vuya +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-vuya + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-vuya + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-vuyx.sh b/testcase/fate-filter-pixdesc-vuyx.sh new file mode 100755 index 0000000000000000000000000000000000000000..63bf32dbd02ce302b70fa31d532cf77cd7523eb3 --- /dev/null +++ b/testcase/fate-filter-pixdesc-vuyx.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170301-299417786 +# @用例名称: fate-filter-pixdesc-vuyx +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-vuyx +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-vuyx + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-vuyx + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-vyu444.sh b/testcase/fate-filter-pixdesc-vyu444.sh new file mode 100755 index 0000000000000000000000000000000000000000..e03824e0bdacf38a9f57e0bc58a6b61ae7eb2cfe --- /dev/null +++ b/testcase/fate-filter-pixdesc-vyu444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170301-382099327 +# @用例名称: fate-filter-pixdesc-vyu444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-vyu444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-vyu444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-vyu444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-x2bgr10le.sh b/testcase/fate-filter-pixdesc-x2bgr10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..77bdb9af7fa9067cf6b147bf2e60bcb3104818e2 --- /dev/null +++ b/testcase/fate-filter-pixdesc-x2bgr10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170301-465043653 +# @用例名称: fate-filter-pixdesc-x2bgr10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-x2bgr10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-x2bgr10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-x2bgr10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-x2rgb10le.sh b/testcase/fate-filter-pixdesc-x2rgb10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..605bd9785c3466e10bba3eb11965c781a10267d4 --- /dev/null +++ b/testcase/fate-filter-pixdesc-x2rgb10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170301-548969981 +# @用例名称: fate-filter-pixdesc-x2rgb10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-x2rgb10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-x2rgb10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-x2rgb10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-xv30le.sh b/testcase/fate-filter-pixdesc-xv30le.sh new file mode 100755 index 0000000000000000000000000000000000000000..8c584c44129c69f5e3768c59e3b21062b4495ead --- /dev/null +++ b/testcase/fate-filter-pixdesc-xv30le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170301-633449007 +# @用例名称: fate-filter-pixdesc-xv30le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-xv30le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-xv30le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-xv30le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-xv36be.sh b/testcase/fate-filter-pixdesc-xv36be.sh new file mode 100755 index 0000000000000000000000000000000000000000..81741eafea7823b9f8149b3a75537704daf9204c --- /dev/null +++ b/testcase/fate-filter-pixdesc-xv36be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170301-717604959 +# @用例名称: fate-filter-pixdesc-xv36be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-xv36be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-xv36be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-xv36be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-xv36le.sh b/testcase/fate-filter-pixdesc-xv36le.sh new file mode 100755 index 0000000000000000000000000000000000000000..b5b4e988d41ecb32cb9413479bb24be1bf6b8cd7 --- /dev/null +++ b/testcase/fate-filter-pixdesc-xv36le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170301-801121454 +# @用例名称: fate-filter-pixdesc-xv36le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-xv36le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-xv36le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-xv36le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-xv48be.sh b/testcase/fate-filter-pixdesc-xv48be.sh new file mode 100755 index 0000000000000000000000000000000000000000..e07da63eb5d1d5233e94411c810434d4e0675e75 --- /dev/null +++ b/testcase/fate-filter-pixdesc-xv48be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170301-881961622 +# @用例名称: fate-filter-pixdesc-xv48be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-xv48be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-xv48be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-xv48be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-xv48le.sh b/testcase/fate-filter-pixdesc-xv48le.sh new file mode 100755 index 0000000000000000000000000000000000000000..de26195d471791fc329c8d3513ae2167fecba911 --- /dev/null +++ b/testcase/fate-filter-pixdesc-xv48le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170301-964147623 +# @用例名称: fate-filter-pixdesc-xv48le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-xv48le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-xv48le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-xv48le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-xyz12be.sh b/testcase/fate-filter-pixdesc-xyz12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..8df8a51cb75ec69b99cb17bf81f4dcccd7a17674 --- /dev/null +++ b/testcase/fate-filter-pixdesc-xyz12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170302-046496971 +# @用例名称: fate-filter-pixdesc-xyz12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-xyz12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-xyz12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-xyz12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-xyz12le.sh b/testcase/fate-filter-pixdesc-xyz12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..4f2c15ce2dc6e4a9abf2b07347083e40cda7116a --- /dev/null +++ b/testcase/fate-filter-pixdesc-xyz12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170302-131562705 +# @用例名称: fate-filter-pixdesc-xyz12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-xyz12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-xyz12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-xyz12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-y210le.sh b/testcase/fate-filter-pixdesc-y210le.sh new file mode 100755 index 0000000000000000000000000000000000000000..d5b58721b810d027b77994913ccf11b7073030f8 --- /dev/null +++ b/testcase/fate-filter-pixdesc-y210le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170302-217576031 +# @用例名称: fate-filter-pixdesc-y210le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-y210le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-y210le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-y210le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-y212le.sh b/testcase/fate-filter-pixdesc-y212le.sh new file mode 100755 index 0000000000000000000000000000000000000000..d75f0bdd11036498d3e1fb47fba083d0ee66210b --- /dev/null +++ b/testcase/fate-filter-pixdesc-y212le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170302-303113447 +# @用例名称: fate-filter-pixdesc-y212le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-y212le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-y212le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-y212le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-y216le.sh b/testcase/fate-filter-pixdesc-y216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..9e1da1f15cd4f3252cbc6d9f0d5453e13b83de22 --- /dev/null +++ b/testcase/fate-filter-pixdesc-y216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170302-389481716 +# @用例名称: fate-filter-pixdesc-y216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-y216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-y216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-y216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-ya16be.sh b/testcase/fate-filter-pixdesc-ya16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..31c2698ecf76aea82a982cfa97006630010b9a1d --- /dev/null +++ b/testcase/fate-filter-pixdesc-ya16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170302-476552192 +# @用例名称: fate-filter-pixdesc-ya16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-ya16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-ya16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-ya16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-ya16le.sh b/testcase/fate-filter-pixdesc-ya16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..793cdddb224be6915b19b1db970cc2517ead7acc --- /dev/null +++ b/testcase/fate-filter-pixdesc-ya16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170302-565921433 +# @用例名称: fate-filter-pixdesc-ya16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-ya16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-ya16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-ya16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-ya8.sh b/testcase/fate-filter-pixdesc-ya8.sh new file mode 100755 index 0000000000000000000000000000000000000000..cc35fbf288a9324b3fa5ab44ea806f21e54d44c4 --- /dev/null +++ b/testcase/fate-filter-pixdesc-ya8.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170302-654976650 +# @用例名称: fate-filter-pixdesc-ya8 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-ya8 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-ya8 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-ya8 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv410p.sh b/testcase/fate-filter-pixdesc-yuv410p.sh new file mode 100755 index 0000000000000000000000000000000000000000..b0764f124f1508e7f7d15cec5a96a12bd0dadf66 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv410p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170302-741006566 +# @用例名称: fate-filter-pixdesc-yuv410p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv410p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv410p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv410p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv411p.sh b/testcase/fate-filter-pixdesc-yuv411p.sh new file mode 100755 index 0000000000000000000000000000000000000000..fbd0aca927d2b3611b866614418e8e0d847c7069 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv411p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170302-826673329 +# @用例名称: fate-filter-pixdesc-yuv411p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv411p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv411p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv411p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv420p.sh b/testcase/fate-filter-pixdesc-yuv420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..64623d571d7b0404e997a6bfa7c4fdc045415ea7 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170302-912256783 +# @用例名称: fate-filter-pixdesc-yuv420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv420p10be.sh b/testcase/fate-filter-pixdesc-yuv420p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..6cbb3f0864bb576421376e84e303279352caf5a2 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv420p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170302-996160590 +# @用例名称: fate-filter-pixdesc-yuv420p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv420p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv420p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv420p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv420p10le.sh b/testcase/fate-filter-pixdesc-yuv420p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..9669286bed12f7bead562c4a449e38a0ab9f9727 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv420p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170303-081841083 +# @用例名称: fate-filter-pixdesc-yuv420p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv420p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv420p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv420p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv420p12be.sh b/testcase/fate-filter-pixdesc-yuv420p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..a58c5602cef01b1e3dac1d7edaa5133e536f3231 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv420p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170303-165512805 +# @用例名称: fate-filter-pixdesc-yuv420p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv420p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv420p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv420p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv420p12le.sh b/testcase/fate-filter-pixdesc-yuv420p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..c6ed41bccdee647cfd5741dba31fe40a1394e564 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv420p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170303-249855384 +# @用例名称: fate-filter-pixdesc-yuv420p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv420p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv420p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv420p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv420p14be.sh b/testcase/fate-filter-pixdesc-yuv420p14be.sh new file mode 100755 index 0000000000000000000000000000000000000000..b0535cad80a2193179cedb5689241a653dd5402a --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv420p14be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170303-332357200 +# @用例名称: fate-filter-pixdesc-yuv420p14be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv420p14be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv420p14be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv420p14be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv420p14le.sh b/testcase/fate-filter-pixdesc-yuv420p14le.sh new file mode 100755 index 0000000000000000000000000000000000000000..1eb7c15ed84367598866415449ac0cb6d6a9a1c7 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv420p14le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170303-416373734 +# @用例名称: fate-filter-pixdesc-yuv420p14le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv420p14le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv420p14le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv420p14le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv420p16be.sh b/testcase/fate-filter-pixdesc-yuv420p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..b75d1e42dabe14980d06fadf9817340225e78a9a --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv420p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170303-499296012 +# @用例名称: fate-filter-pixdesc-yuv420p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv420p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv420p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv420p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv420p16le.sh b/testcase/fate-filter-pixdesc-yuv420p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..937378f8b1bbe6d8bb6805e05b152f942ed20b22 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv420p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170303-581996043 +# @用例名称: fate-filter-pixdesc-yuv420p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv420p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv420p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv420p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv420p9be.sh b/testcase/fate-filter-pixdesc-yuv420p9be.sh new file mode 100755 index 0000000000000000000000000000000000000000..30ef3c5f94fd483be56c0d46a86379bc0fc6da8f --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv420p9be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170303-668802143 +# @用例名称: fate-filter-pixdesc-yuv420p9be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv420p9be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv420p9be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv420p9be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv420p9le.sh b/testcase/fate-filter-pixdesc-yuv420p9le.sh new file mode 100755 index 0000000000000000000000000000000000000000..93ac1596750f84ee02ba5e7f063ecdf3620bad5e --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv420p9le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170303-751990285 +# @用例名称: fate-filter-pixdesc-yuv420p9le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv420p9le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv420p9le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv420p9le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv422p.sh b/testcase/fate-filter-pixdesc-yuv422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..2dc9c683b4c4e68646bb78230d1c69d9e6336a06 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170303-836173217 +# @用例名称: fate-filter-pixdesc-yuv422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv422p10be.sh b/testcase/fate-filter-pixdesc-yuv422p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..b7d8b376380cb3b4b91f454425d664fc108641df --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv422p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170303-918198002 +# @用例名称: fate-filter-pixdesc-yuv422p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv422p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv422p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv422p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv422p10le.sh b/testcase/fate-filter-pixdesc-yuv422p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..8ec9b2d1e66075e9df8a928032e482a5d813d6ee --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv422p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170304-001329894 +# @用例名称: fate-filter-pixdesc-yuv422p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv422p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv422p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv422p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv422p12be.sh b/testcase/fate-filter-pixdesc-yuv422p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..7ee508df1bbc756f8bc1e1040179e6b1a3c1fb48 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv422p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170304-086725713 +# @用例名称: fate-filter-pixdesc-yuv422p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv422p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv422p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv422p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv422p12le.sh b/testcase/fate-filter-pixdesc-yuv422p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..76819c2c092db6fd67f359f9f1a28671079bee38 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv422p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170304-169675708 +# @用例名称: fate-filter-pixdesc-yuv422p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv422p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv422p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv422p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv422p14be.sh b/testcase/fate-filter-pixdesc-yuv422p14be.sh new file mode 100755 index 0000000000000000000000000000000000000000..ba89e25b2674d1ef8fd781d550ab61eb3b02a577 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv422p14be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170304-252861199 +# @用例名称: fate-filter-pixdesc-yuv422p14be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv422p14be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv422p14be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv422p14be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv422p14le.sh b/testcase/fate-filter-pixdesc-yuv422p14le.sh new file mode 100755 index 0000000000000000000000000000000000000000..5f238f34949ff93bfd9fa9d4a33bb78cb983ce1c --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv422p14le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170304-335069150 +# @用例名称: fate-filter-pixdesc-yuv422p14le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv422p14le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv422p14le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv422p14le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv422p16be.sh b/testcase/fate-filter-pixdesc-yuv422p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..92b797d052be28bf60de3de18c0f3024da30ffc6 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv422p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170304-421515138 +# @用例名称: fate-filter-pixdesc-yuv422p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv422p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv422p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv422p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv422p16le.sh b/testcase/fate-filter-pixdesc-yuv422p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..178f15cdd43027d51fc9f3be1afc593e62e970fb --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv422p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170304-506786169 +# @用例名称: fate-filter-pixdesc-yuv422p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv422p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv422p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv422p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv422p9be.sh b/testcase/fate-filter-pixdesc-yuv422p9be.sh new file mode 100755 index 0000000000000000000000000000000000000000..13ef95d9397ffae9f4ed5a62995bde2f127e6dee --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv422p9be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170304-593702327 +# @用例名称: fate-filter-pixdesc-yuv422p9be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv422p9be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv422p9be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv422p9be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv422p9le.sh b/testcase/fate-filter-pixdesc-yuv422p9le.sh new file mode 100755 index 0000000000000000000000000000000000000000..484ffffcf9079d9d2b3e61e0dcdcc1d05a97a7f7 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv422p9le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170304-679963109 +# @用例名称: fate-filter-pixdesc-yuv422p9le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv422p9le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv422p9le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv422p9le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv440p.sh b/testcase/fate-filter-pixdesc-yuv440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..3f7e6a0a9252279a9958a6310998791bb4ed711a --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170304-766267770 +# @用例名称: fate-filter-pixdesc-yuv440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv440p10be.sh b/testcase/fate-filter-pixdesc-yuv440p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..2adb8fc704db0e5d3f25409d142a5521dcd9a297 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv440p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170304-853326076 +# @用例名称: fate-filter-pixdesc-yuv440p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv440p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv440p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv440p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv440p10le.sh b/testcase/fate-filter-pixdesc-yuv440p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..85605e403a84ea7692c7bbdd7da6e6cbe43c7afb --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv440p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170304-939260513 +# @用例名称: fate-filter-pixdesc-yuv440p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv440p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv440p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv440p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv440p12be.sh b/testcase/fate-filter-pixdesc-yuv440p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..ab7f1f6c29126d51e5233b21da48fd2a63ff5314 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv440p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170305-025613192 +# @用例名称: fate-filter-pixdesc-yuv440p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv440p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv440p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv440p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv440p12le.sh b/testcase/fate-filter-pixdesc-yuv440p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..8de7f0b09cf4b4b6e649248738d97ff9ae920fd6 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv440p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170305-113626220 +# @用例名称: fate-filter-pixdesc-yuv440p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv440p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv440p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv440p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv444p.sh b/testcase/fate-filter-pixdesc-yuv444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..4a175b800d530045490da5529d9889d40e60d36a --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170305-199272794 +# @用例名称: fate-filter-pixdesc-yuv444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv444p10be.sh b/testcase/fate-filter-pixdesc-yuv444p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..cc857b221b95412a4e739a195b3a51f3f7eb0b7b --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv444p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170305-286476947 +# @用例名称: fate-filter-pixdesc-yuv444p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv444p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv444p10le.sh b/testcase/fate-filter-pixdesc-yuv444p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..4437d7fa6159e759a761ea20d58b6efd9f804b6c --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv444p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170305-374138451 +# @用例名称: fate-filter-pixdesc-yuv444p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv444p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv444p10msbbe.sh b/testcase/fate-filter-pixdesc-yuv444p10msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..2ae1a7c8d31355d5ab0967ff4391c2c331c50143 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv444p10msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170305-463333485 +# @用例名称: fate-filter-pixdesc-yuv444p10msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p10msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p10msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv444p10msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv444p10msble.sh b/testcase/fate-filter-pixdesc-yuv444p10msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..750ae7619a28db96f60dbb42ff5af4e40a9ad739 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv444p10msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170305-553712186 +# @用例名称: fate-filter-pixdesc-yuv444p10msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p10msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p10msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv444p10msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv444p12be.sh b/testcase/fate-filter-pixdesc-yuv444p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..982bf13a7afa581c67f1c64297fa8765c52af8f1 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv444p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170305-644047547 +# @用例名称: fate-filter-pixdesc-yuv444p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv444p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv444p12le.sh b/testcase/fate-filter-pixdesc-yuv444p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..47e31cb01e97ab6e759b5acb0e611beaa2325760 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv444p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170305-733981627 +# @用例名称: fate-filter-pixdesc-yuv444p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv444p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv444p12msbbe.sh b/testcase/fate-filter-pixdesc-yuv444p12msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..3471ecac0cc41fea6a605c715cb3a72ce0982f2d --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv444p12msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170305-822456314 +# @用例名称: fate-filter-pixdesc-yuv444p12msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p12msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p12msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv444p12msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv444p12msble.sh b/testcase/fate-filter-pixdesc-yuv444p12msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..d17e7091efe4c2645f89927f01f99af21e3ffa8b --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv444p12msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170305-912009081 +# @用例名称: fate-filter-pixdesc-yuv444p12msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p12msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p12msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv444p12msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv444p14be.sh b/testcase/fate-filter-pixdesc-yuv444p14be.sh new file mode 100755 index 0000000000000000000000000000000000000000..0f548675bd13cf43d5da161fedb65e2bde2b31f5 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv444p14be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170305-998719354 +# @用例名称: fate-filter-pixdesc-yuv444p14be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p14be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p14be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv444p14be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv444p14le.sh b/testcase/fate-filter-pixdesc-yuv444p14le.sh new file mode 100755 index 0000000000000000000000000000000000000000..15313e5a1e375b9572cd148496f209ac53d06084 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv444p14le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170306-092860381 +# @用例名称: fate-filter-pixdesc-yuv444p14le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p14le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p14le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv444p14le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv444p16be.sh b/testcase/fate-filter-pixdesc-yuv444p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..6afc74c9c5d2d6c0673acddeccd43e2d5d20b70a --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv444p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170306-189130256 +# @用例名称: fate-filter-pixdesc-yuv444p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv444p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv444p16le.sh b/testcase/fate-filter-pixdesc-yuv444p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..3d7637877ebb10ace43ac2bb38c8af97d568b644 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv444p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170306-280811152 +# @用例名称: fate-filter-pixdesc-yuv444p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv444p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv444p9be.sh b/testcase/fate-filter-pixdesc-yuv444p9be.sh new file mode 100755 index 0000000000000000000000000000000000000000..985b181aedee0b1a181e7e0533d1ff30c0df449b --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv444p9be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170306-371736253 +# @用例名称: fate-filter-pixdesc-yuv444p9be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p9be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p9be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv444p9be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuv444p9le.sh b/testcase/fate-filter-pixdesc-yuv444p9le.sh new file mode 100755 index 0000000000000000000000000000000000000000..09dbbafb69734fb40d0ffd5603759107dc394cde --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuv444p9le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170306-464972116 +# @用例名称: fate-filter-pixdesc-yuv444p9le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p9le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuv444p9le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuv444p9le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva420p.sh b/testcase/fate-filter-pixdesc-yuva420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..65206f82a3f5fb8f7790755bcf42f763ab3d740c --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170306-554206690 +# @用例名称: fate-filter-pixdesc-yuva420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva420p10be.sh b/testcase/fate-filter-pixdesc-yuva420p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..f9f29d8e4f04825eb4a573e8894efa8fdc7912ea --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva420p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170306-642844275 +# @用例名称: fate-filter-pixdesc-yuva420p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva420p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva420p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva420p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva420p10le.sh b/testcase/fate-filter-pixdesc-yuva420p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..4ee59cdae01ef7e33198281a2766e6001bd7fb51 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva420p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170306-734025120 +# @用例名称: fate-filter-pixdesc-yuva420p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva420p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva420p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva420p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva420p16be.sh b/testcase/fate-filter-pixdesc-yuva420p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..672e7682934378418fae8763e6e763fd89be18d2 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva420p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170306-822359870 +# @用例名称: fate-filter-pixdesc-yuva420p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva420p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva420p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva420p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva420p16le.sh b/testcase/fate-filter-pixdesc-yuva420p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..aaba60efbaa16ebd175587811771f531c72f58ac --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva420p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170306-911031265 +# @用例名称: fate-filter-pixdesc-yuva420p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva420p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva420p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva420p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva420p9be.sh b/testcase/fate-filter-pixdesc-yuva420p9be.sh new file mode 100755 index 0000000000000000000000000000000000000000..5c3119c0a0a8cd9d233ef769b84288b660e30baf --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva420p9be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170306-994995211 +# @用例名称: fate-filter-pixdesc-yuva420p9be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva420p9be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva420p9be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva420p9be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva420p9le.sh b/testcase/fate-filter-pixdesc-yuva420p9le.sh new file mode 100755 index 0000000000000000000000000000000000000000..6a1cb7b648983786c0ebb51c93357b7449e2301c --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva420p9le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170307-075210021 +# @用例名称: fate-filter-pixdesc-yuva420p9le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva420p9le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva420p9le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva420p9le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva422p.sh b/testcase/fate-filter-pixdesc-yuva422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..e6b4c9b7f8404824ee0b1cbba60a7b9b6a91ae2f --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170307-158194577 +# @用例名称: fate-filter-pixdesc-yuva422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva422p10be.sh b/testcase/fate-filter-pixdesc-yuva422p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..638fbb500c2618159d3674c2d34cbf63491bfaed --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva422p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170307-245300242 +# @用例名称: fate-filter-pixdesc-yuva422p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva422p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva422p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva422p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva422p10le.sh b/testcase/fate-filter-pixdesc-yuva422p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..d345a1bbbe8811688815927cce75120d2abe5d05 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva422p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170307-332827898 +# @用例名称: fate-filter-pixdesc-yuva422p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva422p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva422p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva422p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva422p12be.sh b/testcase/fate-filter-pixdesc-yuva422p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..a90e4f0d165da87e52ff80ec2d2a61b25c55cd02 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva422p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170307-419479391 +# @用例名称: fate-filter-pixdesc-yuva422p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva422p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva422p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva422p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva422p12le.sh b/testcase/fate-filter-pixdesc-yuva422p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..b0f79b290624fbba8ae4ed565005df4070470e49 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva422p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170307-505445519 +# @用例名称: fate-filter-pixdesc-yuva422p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva422p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva422p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva422p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva422p16be.sh b/testcase/fate-filter-pixdesc-yuva422p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..186195c24ddd380ebf3e90c44194ee8028ffb6dd --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva422p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170307-590112842 +# @用例名称: fate-filter-pixdesc-yuva422p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva422p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva422p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva422p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva422p16le.sh b/testcase/fate-filter-pixdesc-yuva422p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..521b79e02e9d1d732e71754dbbe71353e9e368e1 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva422p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170307-676309594 +# @用例名称: fate-filter-pixdesc-yuva422p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva422p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva422p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva422p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva422p9be.sh b/testcase/fate-filter-pixdesc-yuva422p9be.sh new file mode 100755 index 0000000000000000000000000000000000000000..8d935ca7bba5b454420bb7ec0168e3314eb7f7e8 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva422p9be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170307-763862400 +# @用例名称: fate-filter-pixdesc-yuva422p9be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva422p9be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva422p9be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva422p9be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva422p9le.sh b/testcase/fate-filter-pixdesc-yuva422p9le.sh new file mode 100755 index 0000000000000000000000000000000000000000..e297416e655a6fbd27b556aae7355db3238f30de --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva422p9le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170307-854672603 +# @用例名称: fate-filter-pixdesc-yuva422p9le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva422p9le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva422p9le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva422p9le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva444p.sh b/testcase/fate-filter-pixdesc-yuva444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..6c2a05c08f4266b5efd1d1a262f80c051802d3dc --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170307-940348706 +# @用例名称: fate-filter-pixdesc-yuva444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva444p10be.sh b/testcase/fate-filter-pixdesc-yuva444p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..23f10424d6bd952a9a7b580a1e91f5fdec1d545e --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva444p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170308-028948892 +# @用例名称: fate-filter-pixdesc-yuva444p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva444p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva444p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva444p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva444p10le.sh b/testcase/fate-filter-pixdesc-yuva444p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..8aeaf9ab1735db4d4f6adfdf7e61cd13463a178b --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva444p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170308-118207093 +# @用例名称: fate-filter-pixdesc-yuva444p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva444p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva444p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva444p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva444p12be.sh b/testcase/fate-filter-pixdesc-yuva444p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..7cf99c314c6aa6be4716a3279cdb882d167e9a53 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva444p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170308-203633672 +# @用例名称: fate-filter-pixdesc-yuva444p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva444p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva444p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva444p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva444p12le.sh b/testcase/fate-filter-pixdesc-yuva444p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..16f4b20031ef458cea0e19d2f6a8046752ef6241 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva444p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170308-289622178 +# @用例名称: fate-filter-pixdesc-yuva444p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva444p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva444p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva444p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva444p16be.sh b/testcase/fate-filter-pixdesc-yuva444p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..3c1eceeecfa52f62fb263c8ba29eae9f15c9268c --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva444p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170308-375971348 +# @用例名称: fate-filter-pixdesc-yuva444p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva444p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva444p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva444p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva444p16le.sh b/testcase/fate-filter-pixdesc-yuva444p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..2a7d6897ff5d0271043ceefbdb5ac6a70e261dca --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva444p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170308-463056293 +# @用例名称: fate-filter-pixdesc-yuva444p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva444p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva444p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva444p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva444p9be.sh b/testcase/fate-filter-pixdesc-yuva444p9be.sh new file mode 100755 index 0000000000000000000000000000000000000000..f1776c742b3de693403d4fd875cc4413d5e3e6fd --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva444p9be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170308-549419622 +# @用例名称: fate-filter-pixdesc-yuva444p9be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva444p9be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva444p9be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva444p9be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuva444p9le.sh b/testcase/fate-filter-pixdesc-yuva444p9le.sh new file mode 100755 index 0000000000000000000000000000000000000000..fa6f4069b8dde8c5e7f50e3be745eeaca92f57d2 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuva444p9le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170308-638440310 +# @用例名称: fate-filter-pixdesc-yuva444p9le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva444p9le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuva444p9le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuva444p9le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuvj411p.sh b/testcase/fate-filter-pixdesc-yuvj411p.sh new file mode 100755 index 0000000000000000000000000000000000000000..9f4b870949e4974b43b65952d11a6f4dcfa7556b --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuvj411p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170308-724561394 +# @用例名称: fate-filter-pixdesc-yuvj411p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuvj411p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuvj411p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuvj411p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuvj420p.sh b/testcase/fate-filter-pixdesc-yuvj420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..277260c43c3b133f28fc8f845bc0e78a8b178755 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuvj420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170308-810475393 +# @用例名称: fate-filter-pixdesc-yuvj420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuvj420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuvj420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuvj420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuvj422p.sh b/testcase/fate-filter-pixdesc-yuvj422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..cce8ea8c60e338c8e6e78f805beeaed8a8b94545 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuvj422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170308-895284012 +# @用例名称: fate-filter-pixdesc-yuvj422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuvj422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuvj422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuvj422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuvj440p.sh b/testcase/fate-filter-pixdesc-yuvj440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..5b38e349e5e46f9142e3ee051cdc325270fa4106 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuvj440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170308-983141322 +# @用例名称: fate-filter-pixdesc-yuvj440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuvj440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuvj440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuvj440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuvj444p.sh b/testcase/fate-filter-pixdesc-yuvj444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..4fd915738ab460e5513894b715e0f25841890bb5 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuvj444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170309-069796936 +# @用例名称: fate-filter-pixdesc-yuvj444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuvj444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuvj444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuvj444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yuyv422.sh b/testcase/fate-filter-pixdesc-yuyv422.sh new file mode 100755 index 0000000000000000000000000000000000000000..9c2ae58dc7c234ce7bdbfb50c635bfa083f8f997 --- /dev/null +++ b/testcase/fate-filter-pixdesc-yuyv422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170309-154597106 +# @用例名称: fate-filter-pixdesc-yuyv422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuyv422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yuyv422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yuyv422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixdesc-yvyu422.sh b/testcase/fate-filter-pixdesc-yvyu422.sh new file mode 100755 index 0000000000000000000000000000000000000000..af8223cb4fc1785eba59f7efa380dbb9b94657ed --- /dev/null +++ b/testcase/fate-filter-pixdesc-yvyu422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170309-239829997 +# @用例名称: fate-filter-pixdesc-yvyu422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixdesc-yvyu422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixdesc-yvyu422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixdesc-yvyu422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixelize-avg.sh b/testcase/fate-filter-pixelize-avg.sh new file mode 100755 index 0000000000000000000000000000000000000000..a9031d8fed904f2a81ec63e2f097df8d5c209319 --- /dev/null +++ b/testcase/fate-filter-pixelize-avg.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170309-324364432 +# @用例名称: fate-filter-pixelize-avg +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixelize-avg +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixelize-avg + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixelize-avg + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixelize-max.sh b/testcase/fate-filter-pixelize-max.sh new file mode 100755 index 0000000000000000000000000000000000000000..6434f0f699ac7f6f1ec9f9616437068917746d62 --- /dev/null +++ b/testcase/fate-filter-pixelize-max.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170309-409836640 +# @用例名称: fate-filter-pixelize-max +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixelize-max +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixelize-max + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixelize-max + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixelize-min.sh b/testcase/fate-filter-pixelize-min.sh new file mode 100755 index 0000000000000000000000000000000000000000..5c57d82ca50ed8dbebaea9923751563dec9de9e0 --- /dev/null +++ b/testcase/fate-filter-pixelize-min.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170309-493595149 +# @用例名称: fate-filter-pixelize-min +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixelize-min +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixelize-min + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixelize-min + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixfmts-copy.sh b/testcase/fate-filter-pixfmts-copy.sh new file mode 100755 index 0000000000000000000000000000000000000000..58d4e72e32fe60e5ed2a3fed30558126f885c320 --- /dev/null +++ b/testcase/fate-filter-pixfmts-copy.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170309-580019308 +# @用例名称: fate-filter-pixfmts-copy +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixfmts-copy +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixfmts-copy + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixfmts-copy + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixfmts-crop.sh b/testcase/fate-filter-pixfmts-crop.sh new file mode 100755 index 0000000000000000000000000000000000000000..e198160833924c3d90e42a8de17aa104d799410e --- /dev/null +++ b/testcase/fate-filter-pixfmts-crop.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170309-665295358 +# @用例名称: fate-filter-pixfmts-crop +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixfmts-crop +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixfmts-crop + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixfmts-crop + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixfmts-field.sh b/testcase/fate-filter-pixfmts-field.sh new file mode 100755 index 0000000000000000000000000000000000000000..886fad2209eb5b526339d3bc086228f50a3b462a --- /dev/null +++ b/testcase/fate-filter-pixfmts-field.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170309-751329154 +# @用例名称: fate-filter-pixfmts-field +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixfmts-field +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixfmts-field + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixfmts-field + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixfmts-fieldmatch.sh b/testcase/fate-filter-pixfmts-fieldmatch.sh new file mode 100755 index 0000000000000000000000000000000000000000..665e0b8254b6b8868dccf8c1e89383b098b970b7 --- /dev/null +++ b/testcase/fate-filter-pixfmts-fieldmatch.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170309-835898659 +# @用例名称: fate-filter-pixfmts-fieldmatch +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixfmts-fieldmatch +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixfmts-fieldmatch + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixfmts-fieldmatch + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixfmts-fieldorder.sh b/testcase/fate-filter-pixfmts-fieldorder.sh new file mode 100755 index 0000000000000000000000000000000000000000..3af3ea32741e0d3a46c48150745612015c1e72ad --- /dev/null +++ b/testcase/fate-filter-pixfmts-fieldorder.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170309-922998474 +# @用例名称: fate-filter-pixfmts-fieldorder +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixfmts-fieldorder +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixfmts-fieldorder + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixfmts-fieldorder + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixfmts-hflip.sh b/testcase/fate-filter-pixfmts-hflip.sh new file mode 100755 index 0000000000000000000000000000000000000000..a5dcf34fb3e2908f15db241e41edcddbfb253858 --- /dev/null +++ b/testcase/fate-filter-pixfmts-hflip.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170310-009981851 +# @用例名称: fate-filter-pixfmts-hflip +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixfmts-hflip +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixfmts-hflip + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixfmts-hflip + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixfmts-il.sh b/testcase/fate-filter-pixfmts-il.sh new file mode 100755 index 0000000000000000000000000000000000000000..b95a35ea38a1b4371a5866f94c242d713168a09e --- /dev/null +++ b/testcase/fate-filter-pixfmts-il.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170310-096440488 +# @用例名称: fate-filter-pixfmts-il +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixfmts-il +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixfmts-il + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixfmts-il + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixfmts-lut.sh b/testcase/fate-filter-pixfmts-lut.sh new file mode 100755 index 0000000000000000000000000000000000000000..d5cdbb92c4da47564b472bc55e3536afd5e279c1 --- /dev/null +++ b/testcase/fate-filter-pixfmts-lut.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170310-181507714 +# @用例名称: fate-filter-pixfmts-lut +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixfmts-lut +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixfmts-lut + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixfmts-lut + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixfmts-null.sh b/testcase/fate-filter-pixfmts-null.sh new file mode 100755 index 0000000000000000000000000000000000000000..0154006bd988f1f428c6532d8c24997044c48112 --- /dev/null +++ b/testcase/fate-filter-pixfmts-null.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170310-265930080 +# @用例名称: fate-filter-pixfmts-null +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixfmts-null +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixfmts-null + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixfmts-null + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixfmts-pad.sh b/testcase/fate-filter-pixfmts-pad.sh new file mode 100755 index 0000000000000000000000000000000000000000..d351f58a527690bc58e05b01611648989a7753dd --- /dev/null +++ b/testcase/fate-filter-pixfmts-pad.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170310-350553384 +# @用例名称: fate-filter-pixfmts-pad +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixfmts-pad +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixfmts-pad + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixfmts-pad + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixfmts-rotate.sh b/testcase/fate-filter-pixfmts-rotate.sh new file mode 100755 index 0000000000000000000000000000000000000000..f6bded0750b38b3a598a52acdc3aa49748d5a96d --- /dev/null +++ b/testcase/fate-filter-pixfmts-rotate.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170310-435317986 +# @用例名称: fate-filter-pixfmts-rotate +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixfmts-rotate +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixfmts-rotate + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixfmts-rotate + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixfmts-scale.sh b/testcase/fate-filter-pixfmts-scale.sh new file mode 100755 index 0000000000000000000000000000000000000000..cb38898a37ec5551d881284f3e24aac5e19dabd2 --- /dev/null +++ b/testcase/fate-filter-pixfmts-scale.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170310-520316461 +# @用例名称: fate-filter-pixfmts-scale +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixfmts-scale +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixfmts-scale + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixfmts-scale + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixfmts-swapuv.sh b/testcase/fate-filter-pixfmts-swapuv.sh new file mode 100755 index 0000000000000000000000000000000000000000..c38393df32a8dc58b2d66b64203a7767b72aa5cc --- /dev/null +++ b/testcase/fate-filter-pixfmts-swapuv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170310-603357275 +# @用例名称: fate-filter-pixfmts-swapuv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixfmts-swapuv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixfmts-swapuv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixfmts-swapuv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixfmts-transpose.sh b/testcase/fate-filter-pixfmts-transpose.sh new file mode 100755 index 0000000000000000000000000000000000000000..cca13d9d077b31ca0cca2e1a2a228f8b45460301 --- /dev/null +++ b/testcase/fate-filter-pixfmts-transpose.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170310-689556468 +# @用例名称: fate-filter-pixfmts-transpose +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixfmts-transpose +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixfmts-transpose + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixfmts-transpose + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-pixfmts-vflip.sh b/testcase/fate-filter-pixfmts-vflip.sh new file mode 100755 index 0000000000000000000000000000000000000000..696df06f1d5ab61d2754e556bf4c96c23e5815fa --- /dev/null +++ b/testcase/fate-filter-pixfmts-vflip.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170310-777582215 +# @用例名称: fate-filter-pixfmts-vflip +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-pixfmts-vflip +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-pixfmts-vflip + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-pixfmts-vflip + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-refcmp-blockdetect-yuv.sh b/testcase/fate-filter-refcmp-blockdetect-yuv.sh new file mode 100755 index 0000000000000000000000000000000000000000..c089e84a2eface25e0bfed685e14c3b40fdcfc03 --- /dev/null +++ b/testcase/fate-filter-refcmp-blockdetect-yuv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170310-866056754 +# @用例名称: fate-filter-refcmp-blockdetect-yuv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-refcmp-blockdetect-yuv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-refcmp-blockdetect-yuv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-refcmp-blockdetect-yuv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-refcmp-blurdetect-yuv.sh b/testcase/fate-filter-refcmp-blurdetect-yuv.sh new file mode 100755 index 0000000000000000000000000000000000000000..37283349fcfed490a1ee6a9752ffd0bb2192112a --- /dev/null +++ b/testcase/fate-filter-refcmp-blurdetect-yuv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170310-951165506 +# @用例名称: fate-filter-refcmp-blurdetect-yuv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-refcmp-blurdetect-yuv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-refcmp-blurdetect-yuv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-refcmp-blurdetect-yuv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-refcmp-psnr-rgb.sh b/testcase/fate-filter-refcmp-psnr-rgb.sh new file mode 100755 index 0000000000000000000000000000000000000000..b00876a7800614ad3792fc0f27d3a529e1bb96de --- /dev/null +++ b/testcase/fate-filter-refcmp-psnr-rgb.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170311-034685471 +# @用例名称: fate-filter-refcmp-psnr-rgb +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-refcmp-psnr-rgb +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-refcmp-psnr-rgb + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-refcmp-psnr-rgb + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-refcmp-psnr-yuv.sh b/testcase/fate-filter-refcmp-psnr-yuv.sh new file mode 100755 index 0000000000000000000000000000000000000000..a70feb5938c612552d178057a9c013e310e20025 --- /dev/null +++ b/testcase/fate-filter-refcmp-psnr-yuv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170311-120121759 +# @用例名称: fate-filter-refcmp-psnr-yuv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-refcmp-psnr-yuv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-refcmp-psnr-yuv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-refcmp-psnr-yuv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-refcmp-siti-yuv.sh b/testcase/fate-filter-refcmp-siti-yuv.sh new file mode 100755 index 0000000000000000000000000000000000000000..d3370265464331bd8ffebe73c664bbc20d639dfa --- /dev/null +++ b/testcase/fate-filter-refcmp-siti-yuv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170311-205951969 +# @用例名称: fate-filter-refcmp-siti-yuv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-refcmp-siti-yuv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-refcmp-siti-yuv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-refcmp-siti-yuv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-refcmp-ssim-rgb.sh b/testcase/fate-filter-refcmp-ssim-rgb.sh new file mode 100755 index 0000000000000000000000000000000000000000..9093b0aeec59af81d41f44b17c92c26bfade1bcb --- /dev/null +++ b/testcase/fate-filter-refcmp-ssim-rgb.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170311-291296829 +# @用例名称: fate-filter-refcmp-ssim-rgb +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-refcmp-ssim-rgb +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-refcmp-ssim-rgb + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-refcmp-ssim-rgb + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-refcmp-ssim-yuv.sh b/testcase/fate-filter-refcmp-ssim-yuv.sh new file mode 100755 index 0000000000000000000000000000000000000000..11eaf3db2a46ea80b9ddee12e004958616d8b205 --- /dev/null +++ b/testcase/fate-filter-refcmp-ssim-yuv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170311-376298485 +# @用例名称: fate-filter-refcmp-ssim-yuv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-refcmp-ssim-yuv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-refcmp-ssim-yuv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-refcmp-ssim-yuv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-refcmp-xpsnr-rgb.sh b/testcase/fate-filter-refcmp-xpsnr-rgb.sh new file mode 100755 index 0000000000000000000000000000000000000000..7b8e436b8a32ce0936ff1e2da0cb2b61b389efed --- /dev/null +++ b/testcase/fate-filter-refcmp-xpsnr-rgb.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170311-460582115 +# @用例名称: fate-filter-refcmp-xpsnr-rgb +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-refcmp-xpsnr-rgb +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-refcmp-xpsnr-rgb + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-refcmp-xpsnr-rgb + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-refcmp-xpsnr-yuv.sh b/testcase/fate-filter-refcmp-xpsnr-yuv.sh new file mode 100755 index 0000000000000000000000000000000000000000..03abc58b85f0efad18c59636ea0e5883e664edd9 --- /dev/null +++ b/testcase/fate-filter-refcmp-xpsnr-yuv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170311-546398755 +# @用例名称: fate-filter-refcmp-xpsnr-yuv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-refcmp-xpsnr-yuv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-refcmp-xpsnr-yuv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-refcmp-xpsnr-yuv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-00.sh b/testcase/fate-filter-removegrain-mode-00.sh new file mode 100755 index 0000000000000000000000000000000000000000..5a78e2eba0bfd19882d007f666bf6e8816085c8c --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-00.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170311-629709494 +# @用例名称: fate-filter-removegrain-mode-00 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-00 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-00 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-00 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-01.sh b/testcase/fate-filter-removegrain-mode-01.sh new file mode 100755 index 0000000000000000000000000000000000000000..05ce83b56dca8a56d4e4eae41c249296269bc3c6 --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-01.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170311-714288188 +# @用例名称: fate-filter-removegrain-mode-01 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-01 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-01 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-01 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-02.sh b/testcase/fate-filter-removegrain-mode-02.sh new file mode 100755 index 0000000000000000000000000000000000000000..2ae0521ccdca936a64d7319a26fbd7eeefe9e6eb --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-02.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170311-798646787 +# @用例名称: fate-filter-removegrain-mode-02 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-02 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-02 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-02 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-03.sh b/testcase/fate-filter-removegrain-mode-03.sh new file mode 100755 index 0000000000000000000000000000000000000000..177b95cf19117b4907b5c53fa0ea06001096be14 --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-03.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170311-881948536 +# @用例名称: fate-filter-removegrain-mode-03 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-03 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-03 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-03 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-04.sh b/testcase/fate-filter-removegrain-mode-04.sh new file mode 100755 index 0000000000000000000000000000000000000000..0064ddbf910a6498e1d6b9c7df68934972d31d48 --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-04.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170311-967248656 +# @用例名称: fate-filter-removegrain-mode-04 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-04 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-04 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-04 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-05.sh b/testcase/fate-filter-removegrain-mode-05.sh new file mode 100755 index 0000000000000000000000000000000000000000..65630b03464cb12c613c2436f0a3d0bb6555f6a2 --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-05.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170312-053820352 +# @用例名称: fate-filter-removegrain-mode-05 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-05 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-05 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-05 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-06.sh b/testcase/fate-filter-removegrain-mode-06.sh new file mode 100755 index 0000000000000000000000000000000000000000..dab0a8b000f241e8b9496c4f2373200de67db632 --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-06.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170312-138901476 +# @用例名称: fate-filter-removegrain-mode-06 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-06 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-06 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-06 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-07.sh b/testcase/fate-filter-removegrain-mode-07.sh new file mode 100755 index 0000000000000000000000000000000000000000..bb8cfaca14ee27f80f78495d0e0afb33ce2961bc --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-07.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170312-224681327 +# @用例名称: fate-filter-removegrain-mode-07 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-07 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-07 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-07 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-08.sh b/testcase/fate-filter-removegrain-mode-08.sh new file mode 100755 index 0000000000000000000000000000000000000000..76f0ab965f1e54591a97e393e074e5fa25f9e05f --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-08.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170312-310485048 +# @用例名称: fate-filter-removegrain-mode-08 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-08 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-08 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-08 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-09.sh b/testcase/fate-filter-removegrain-mode-09.sh new file mode 100755 index 0000000000000000000000000000000000000000..ccde93485468b465d1feecb39574e90fdc64a2b2 --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-09.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170312-393553951 +# @用例名称: fate-filter-removegrain-mode-09 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-09 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-09 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-09 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-10.sh b/testcase/fate-filter-removegrain-mode-10.sh new file mode 100755 index 0000000000000000000000000000000000000000..27ff87fea879a17012f50d187150550b9c75a7cb --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170312-477719814 +# @用例名称: fate-filter-removegrain-mode-10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-11.sh b/testcase/fate-filter-removegrain-mode-11.sh new file mode 100755 index 0000000000000000000000000000000000000000..adfbdeb9487f547ad80dd8fc46f383bb236fac46 --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-11.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170312-563469064 +# @用例名称: fate-filter-removegrain-mode-11 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-11 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-11 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-11 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-12.sh b/testcase/fate-filter-removegrain-mode-12.sh new file mode 100755 index 0000000000000000000000000000000000000000..9cc4cc93c2586f23ca79700607f6d7752bc5efae --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170312-649981851 +# @用例名称: fate-filter-removegrain-mode-12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-13.sh b/testcase/fate-filter-removegrain-mode-13.sh new file mode 100755 index 0000000000000000000000000000000000000000..4b88619c37d0d1a925e63cc238a7e0a9bb307d9a --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-13.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170312-735072536 +# @用例名称: fate-filter-removegrain-mode-13 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-13 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-13 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-13 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-14.sh b/testcase/fate-filter-removegrain-mode-14.sh new file mode 100755 index 0000000000000000000000000000000000000000..9a41bb2759f616e190aae6f214d7ed647c529511 --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-14.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170312-822342477 +# @用例名称: fate-filter-removegrain-mode-14 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-14 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-14 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-14 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-15.sh b/testcase/fate-filter-removegrain-mode-15.sh new file mode 100755 index 0000000000000000000000000000000000000000..6a55e52187cf7d055e20a89d59b17c3e4820b2b1 --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-15.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170312-906874373 +# @用例名称: fate-filter-removegrain-mode-15 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-15 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-15 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-15 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-16.sh b/testcase/fate-filter-removegrain-mode-16.sh new file mode 100755 index 0000000000000000000000000000000000000000..3dc2e573f9ec6b3e521ffe07cf7708d292bf0f3b --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170312-991782701 +# @用例名称: fate-filter-removegrain-mode-16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-17.sh b/testcase/fate-filter-removegrain-mode-17.sh new file mode 100755 index 0000000000000000000000000000000000000000..c1070735baaab8a40a111335ee25823b05de3767 --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-17.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170313-077444184 +# @用例名称: fate-filter-removegrain-mode-17 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-17 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-17 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-17 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-18.sh b/testcase/fate-filter-removegrain-mode-18.sh new file mode 100755 index 0000000000000000000000000000000000000000..17b3b58c8883f39e53fb9ffdaadf61670ab9adaa --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-18.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170313-161772183 +# @用例名称: fate-filter-removegrain-mode-18 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-18 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-18 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-18 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-19.sh b/testcase/fate-filter-removegrain-mode-19.sh new file mode 100755 index 0000000000000000000000000000000000000000..1f0bf6c38f9923d13feab392995fb0e53c21224d --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-19.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170313-246691300 +# @用例名称: fate-filter-removegrain-mode-19 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-19 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-19 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-19 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-20.sh b/testcase/fate-filter-removegrain-mode-20.sh new file mode 100755 index 0000000000000000000000000000000000000000..582805dd6e5895adf12a7e151fef21c1a6fc0453 --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-20.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170313-331777674 +# @用例名称: fate-filter-removegrain-mode-20 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-20 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-20 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-20 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-21.sh b/testcase/fate-filter-removegrain-mode-21.sh new file mode 100755 index 0000000000000000000000000000000000000000..f82ed87480489972613b2ef19476cd407ff15b53 --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-21.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170313-418977508 +# @用例名称: fate-filter-removegrain-mode-21 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-21 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-21 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-21 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-22.sh b/testcase/fate-filter-removegrain-mode-22.sh new file mode 100755 index 0000000000000000000000000000000000000000..ec8ee7c5b57e63533a0feb4f0f7373f8a00a1fff --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-22.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170313-510123664 +# @用例名称: fate-filter-removegrain-mode-22 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-22 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-22 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-22 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-23.sh b/testcase/fate-filter-removegrain-mode-23.sh new file mode 100755 index 0000000000000000000000000000000000000000..85d832c45ede81703af2b4e24b18695f94f552bb --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-23.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170313-601311078 +# @用例名称: fate-filter-removegrain-mode-23 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-23 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-23 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-23 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-removegrain-mode-24.sh b/testcase/fate-filter-removegrain-mode-24.sh new file mode 100755 index 0000000000000000000000000000000000000000..a06f96745aaf892f2db7ca4fb74243e0f4c5d495 --- /dev/null +++ b/testcase/fate-filter-removegrain-mode-24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170313-688112019 +# @用例名称: fate-filter-removegrain-mode-24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-removegrain-mode-24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-removegrain-mode-24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-rgbtestsrc-gbrap.sh b/testcase/fate-filter-rgbtestsrc-gbrap.sh new file mode 100755 index 0000000000000000000000000000000000000000..620cfa079ff12f3147a05d64c2ebd8801736a37c --- /dev/null +++ b/testcase/fate-filter-rgbtestsrc-gbrap.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170313-861642372 +# @用例名称: fate-filter-rgbtestsrc-gbrap +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-rgbtestsrc-gbrap +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-rgbtestsrc-gbrap + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-rgbtestsrc-gbrap + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-rgbtestsrc-gbrap12.sh b/testcase/fate-filter-rgbtestsrc-gbrap12.sh new file mode 100755 index 0000000000000000000000000000000000000000..2b384e54ec7c595f7660d65206a859836a3b3d92 --- /dev/null +++ b/testcase/fate-filter-rgbtestsrc-gbrap12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170313-947300745 +# @用例名称: fate-filter-rgbtestsrc-gbrap12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-rgbtestsrc-gbrap12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-rgbtestsrc-gbrap12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-rgbtestsrc-gbrap12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-rgbtestsrc-gbrp.sh b/testcase/fate-filter-rgbtestsrc-gbrp.sh new file mode 100755 index 0000000000000000000000000000000000000000..1d302cbdbb7082187b96ee458127a522f356755c --- /dev/null +++ b/testcase/fate-filter-rgbtestsrc-gbrp.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170314-032498708 +# @用例名称: fate-filter-rgbtestsrc-gbrp +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-rgbtestsrc-gbrp +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-rgbtestsrc-gbrp + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-rgbtestsrc-gbrp + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-rgbtestsrc-gbrp12.sh b/testcase/fate-filter-rgbtestsrc-gbrp12.sh new file mode 100755 index 0000000000000000000000000000000000000000..b09d0cf8915543a2b74a085b2fd1d366a8daf3db --- /dev/null +++ b/testcase/fate-filter-rgbtestsrc-gbrp12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170314-115831486 +# @用例名称: fate-filter-rgbtestsrc-gbrp12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-rgbtestsrc-gbrp12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-rgbtestsrc-gbrp12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-rgbtestsrc-gbrp12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-rgbtestsrc-rgba.sh b/testcase/fate-filter-rgbtestsrc-rgba.sh new file mode 100755 index 0000000000000000000000000000000000000000..259354a9e12d4436223e33bc0e2e8ee7e947d6d9 --- /dev/null +++ b/testcase/fate-filter-rgbtestsrc-rgba.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170314-199575807 +# @用例名称: fate-filter-rgbtestsrc-rgba +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-rgbtestsrc-rgba +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-rgbtestsrc-rgba + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-rgbtestsrc-rgba + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-rgbtestsrc-x2rgb10le.sh b/testcase/fate-filter-rgbtestsrc-x2rgb10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..1009d3d02707734fd9176a750abf2415fcf1d622 --- /dev/null +++ b/testcase/fate-filter-rgbtestsrc-x2rgb10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170314-284637032 +# @用例名称: fate-filter-rgbtestsrc-x2rgb10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-rgbtestsrc-x2rgb10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-rgbtestsrc-x2rgb10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-rgbtestsrc-x2rgb10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-rgbtestsrc.sh b/testcase/fate-filter-rgbtestsrc.sh new file mode 100755 index 0000000000000000000000000000000000000000..866efbf2fd5199d6c5bac6a37d61bc37c54ecbf0 --- /dev/null +++ b/testcase/fate-filter-rgbtestsrc.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170313-773611566 +# @用例名称: fate-filter-rgbtestsrc +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-rgbtestsrc +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-rgbtestsrc + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-rgbtestsrc + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-scale-premultiply.sh b/testcase/fate-filter-scale-premultiply.sh new file mode 100755 index 0000000000000000000000000000000000000000..f93db2a27bc90395439ff023ba15ce40b346ac59 --- /dev/null +++ b/testcase/fate-filter-scale-premultiply.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170314-369555029 +# @用例名称: fate-filter-scale-premultiply +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-scale-premultiply +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-scale-premultiply + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-scale-premultiply + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-scale200.sh b/testcase/fate-filter-scale200.sh new file mode 100755 index 0000000000000000000000000000000000000000..432ae5af60ece599e972314a959320c039319104 --- /dev/null +++ b/testcase/fate-filter-scale200.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170314-454829131 +# @用例名称: fate-filter-scale200 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-scale200 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-scale200 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-scale200 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-scale2ref_keep_aspect.sh b/testcase/fate-filter-scale2ref_keep_aspect.sh new file mode 100755 index 0000000000000000000000000000000000000000..ac8535a6c19af3705fa39a1aa900db83aa10da6c --- /dev/null +++ b/testcase/fate-filter-scale2ref_keep_aspect.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170314-539961074 +# @用例名称: fate-filter-scale2ref_keep_aspect +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-scale2ref_keep_aspect +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-scale2ref_keep_aspect + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-scale2ref_keep_aspect + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-scale500.sh b/testcase/fate-filter-scale500.sh new file mode 100755 index 0000000000000000000000000000000000000000..19cc5a126dfce5c67022fa84fdab47acc25eb657 --- /dev/null +++ b/testcase/fate-filter-scale500.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170314-625526779 +# @用例名称: fate-filter-scale500 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-scale500 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-scale500 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-scale500 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-scalechroma.sh b/testcase/fate-filter-scalechroma.sh new file mode 100755 index 0000000000000000000000000000000000000000..4b34478ae89c09e24d6d2ae0c207e06f24307b74 --- /dev/null +++ b/testcase/fate-filter-scalechroma.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170314-711650493 +# @用例名称: fate-filter-scalechroma +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-scalechroma +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-scalechroma + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-scalechroma + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-select-alternate.sh b/testcase/fate-filter-select-alternate.sh new file mode 100755 index 0000000000000000000000000000000000000000..23e51055e49f38bf60d25880f1e14d43513c4bda --- /dev/null +++ b/testcase/fate-filter-select-alternate.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170314-882613067 +# @用例名称: fate-filter-select-alternate +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-select-alternate +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-select-alternate + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-select-alternate + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-select-buffering.sh b/testcase/fate-filter-select-buffering.sh new file mode 100755 index 0000000000000000000000000000000000000000..adecdd9163f659a75f97cf3ac9ddaa53d66d96b5 --- /dev/null +++ b/testcase/fate-filter-select-buffering.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170314-967628512 +# @用例名称: fate-filter-select-buffering +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-select-buffering +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-select-buffering + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-select-buffering + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-select-ffprobe.sh b/testcase/fate-filter-select-ffprobe.sh new file mode 100755 index 0000000000000000000000000000000000000000..f4d63cf3d645190011d4dad194fb2ba7eef59b4f --- /dev/null +++ b/testcase/fate-filter-select-ffprobe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170315-051371003 +# @用例名称: fate-filter-select-ffprobe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-select-ffprobe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-select-ffprobe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-select-ffprobe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-select.sh b/testcase/fate-filter-select.sh new file mode 100755 index 0000000000000000000000000000000000000000..67d9a5d203500deb19f22c96d995969c73a5b66c --- /dev/null +++ b/testcase/fate-filter-select.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170314-795566400 +# @用例名称: fate-filter-select +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-select +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-select + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-select + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-separatefields.sh b/testcase/fate-filter-separatefields.sh new file mode 100755 index 0000000000000000000000000000000000000000..2cd4b2008ad6511be3398d633ba2b87ad0933f26 --- /dev/null +++ b/testcase/fate-filter-separatefields.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170315-135721132 +# @用例名称: fate-filter-separatefields +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-separatefields +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-separatefields + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-separatefields + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-setdar.sh b/testcase/fate-filter-setdar.sh new file mode 100755 index 0000000000000000000000000000000000000000..3ac3b74a9a856330419cb51ea9ada615c205c480 --- /dev/null +++ b/testcase/fate-filter-setdar.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170315-221075481 +# @用例名称: fate-filter-setdar +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-setdar +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-setdar + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-setdar + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-setpts.sh b/testcase/fate-filter-setpts.sh new file mode 100755 index 0000000000000000000000000000000000000000..e1f44f2ebb3cc417844ff5a2bf9e18c85363b197 --- /dev/null +++ b/testcase/fate-filter-setpts.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170315-306773452 +# @用例名称: fate-filter-setpts +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-setpts +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-setpts + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-setpts + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-setsar.sh b/testcase/fate-filter-setsar.sh new file mode 100755 index 0000000000000000000000000000000000000000..f963095541af12139f16dec6ad6ead691e7643c1 --- /dev/null +++ b/testcase/fate-filter-setsar.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170315-391784959 +# @用例名称: fate-filter-setsar +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-setsar +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-setsar + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-setsar + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-shuffleframes.sh b/testcase/fate-filter-shuffleframes.sh new file mode 100755 index 0000000000000000000000000000000000000000..adebf895ae39363201dfbe7878a1540524c727de --- /dev/null +++ b/testcase/fate-filter-shuffleframes.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170315-477210207 +# @用例名称: fate-filter-shuffleframes +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-shuffleframes +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-shuffleframes + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-shuffleframes + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-shuffleplanes-dup-luma.sh b/testcase/fate-filter-shuffleplanes-dup-luma.sh new file mode 100755 index 0000000000000000000000000000000000000000..9dc439f0700d5b7521d22aa0d0f3532a03ef7550 --- /dev/null +++ b/testcase/fate-filter-shuffleplanes-dup-luma.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170315-562456108 +# @用例名称: fate-filter-shuffleplanes-dup-luma +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-shuffleplanes-dup-luma +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-shuffleplanes-dup-luma + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-shuffleplanes-dup-luma + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-shuffleplanes-swapuv.sh b/testcase/fate-filter-shuffleplanes-swapuv.sh new file mode 100755 index 0000000000000000000000000000000000000000..4ea832aa7b3f608da72a496cae2ca4c25df0f885 --- /dev/null +++ b/testcase/fate-filter-shuffleplanes-swapuv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170315-648500534 +# @用例名称: fate-filter-shuffleplanes-swapuv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-shuffleplanes-swapuv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-shuffleplanes-swapuv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-shuffleplanes-swapuv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-silenceremove.sh b/testcase/fate-filter-silenceremove.sh new file mode 100755 index 0000000000000000000000000000000000000000..1b641f7e787ad744d2280782b9ff2f5b11d87efe --- /dev/null +++ b/testcase/fate-filter-silenceremove.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170315-734755455 +# @用例名称: fate-filter-silenceremove +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-silenceremove +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-silenceremove + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-silenceremove + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-smptebars.sh b/testcase/fate-filter-smptebars.sh new file mode 100755 index 0000000000000000000000000000000000000000..e2204bdb690cc42e83b5dc04eb9df7e8b4abc8b5 --- /dev/null +++ b/testcase/fate-filter-smptebars.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170315-821285022 +# @用例名称: fate-filter-smptebars +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-smptebars +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-smptebars + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-smptebars + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-smptehdbars.sh b/testcase/fate-filter-smptehdbars.sh new file mode 100755 index 0000000000000000000000000000000000000000..addd01e0d0999f6b939bf1460160c2a2970837e4 --- /dev/null +++ b/testcase/fate-filter-smptehdbars.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170315-903987512 +# @用例名称: fate-filter-smptehdbars +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-smptehdbars +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-smptehdbars + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-smptehdbars + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-swaprect.sh b/testcase/fate-filter-swaprect.sh new file mode 100755 index 0000000000000000000000000000000000000000..da0ed6f3882257c7a6d9c2c925a5195f2f285bcf --- /dev/null +++ b/testcase/fate-filter-swaprect.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170315-987569986 +# @用例名称: fate-filter-swaprect +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-swaprect +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-swaprect + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-swaprect + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-tblend.sh b/testcase/fate-filter-tblend.sh new file mode 100755 index 0000000000000000000000000000000000000000..5809a890551f8887b9c7e5d5dcffae3459de8c53 --- /dev/null +++ b/testcase/fate-filter-tblend.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170316-072950825 +# @用例名称: fate-filter-tblend +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-tblend +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-tblend + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-tblend + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-telecine.sh b/testcase/fate-filter-telecine.sh new file mode 100755 index 0000000000000000000000000000000000000000..3b4b760aa1b02a08cd104a7bb1f9ea369c0ce1ef --- /dev/null +++ b/testcase/fate-filter-telecine.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170316-161257086 +# @用例名称: fate-filter-telecine +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-telecine +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-telecine + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-telecine + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-testsrc2-rgb24.sh b/testcase/fate-filter-testsrc2-rgb24.sh new file mode 100755 index 0000000000000000000000000000000000000000..6f911d2f596a3e778ec58f13e86a46bf8a3b186c --- /dev/null +++ b/testcase/fate-filter-testsrc2-rgb24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170316-248074237 +# @用例名称: fate-filter-testsrc2-rgb24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-testsrc2-rgb24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-testsrc2-rgb24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-testsrc2-rgb24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-testsrc2-rgba.sh b/testcase/fate-filter-testsrc2-rgba.sh new file mode 100755 index 0000000000000000000000000000000000000000..7f51f0d2d38ac25a714ba68f73bc89d8e2604cba --- /dev/null +++ b/testcase/fate-filter-testsrc2-rgba.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170316-334693171 +# @用例名称: fate-filter-testsrc2-rgba +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-testsrc2-rgba +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-testsrc2-rgba + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-testsrc2-rgba + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-testsrc2-yuv420p.sh b/testcase/fate-filter-testsrc2-yuv420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..1d46fe17924887f6f9f67f1f44d76a600f9d642f --- /dev/null +++ b/testcase/fate-filter-testsrc2-yuv420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170316-419002860 +# @用例名称: fate-filter-testsrc2-yuv420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-testsrc2-yuv420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-testsrc2-yuv420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-testsrc2-yuv420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-testsrc2-yuv444p.sh b/testcase/fate-filter-testsrc2-yuv444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..80b5bf43bb7664596738be6431123474b85c4416 --- /dev/null +++ b/testcase/fate-filter-testsrc2-yuv444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170316-502806500 +# @用例名称: fate-filter-testsrc2-yuv444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-testsrc2-yuv444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-testsrc2-yuv444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-testsrc2-yuv444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-thumbnail.sh b/testcase/fate-filter-thumbnail.sh new file mode 100755 index 0000000000000000000000000000000000000000..7336d5a7b7536cc1b00db6711fe0049dfa7a8310 --- /dev/null +++ b/testcase/fate-filter-thumbnail.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170316-586509942 +# @用例名称: fate-filter-thumbnail +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-thumbnail +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-thumbnail + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-thumbnail + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-tile.sh b/testcase/fate-filter-tile.sh new file mode 100755 index 0000000000000000000000000000000000000000..b4130f109c1ebbcd6b637409d40d3b4868743145 --- /dev/null +++ b/testcase/fate-filter-tile.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170316-671378560 +# @用例名称: fate-filter-tile +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-tile +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-tile + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-tile + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-tiltandshift-410.sh b/testcase/fate-filter-tiltandshift-410.sh new file mode 100755 index 0000000000000000000000000000000000000000..f3f96cfa0ee5134866e8904a86a963e7d0f02533 --- /dev/null +++ b/testcase/fate-filter-tiltandshift-410.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170316-840756054 +# @用例名称: fate-filter-tiltandshift-410 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-tiltandshift-410 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-tiltandshift-410 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-tiltandshift-410 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-tiltandshift-422.sh b/testcase/fate-filter-tiltandshift-422.sh new file mode 100755 index 0000000000000000000000000000000000000000..d294ccdc6feef6974de585df2d09960981c9367a --- /dev/null +++ b/testcase/fate-filter-tiltandshift-422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170316-925013585 +# @用例名称: fate-filter-tiltandshift-422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-tiltandshift-422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-tiltandshift-422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-tiltandshift-422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-tiltandshift-444.sh b/testcase/fate-filter-tiltandshift-444.sh new file mode 100755 index 0000000000000000000000000000000000000000..e630384da26e10c9f6d4d9225a9b70b0efcac9a9 --- /dev/null +++ b/testcase/fate-filter-tiltandshift-444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170317-009202268 +# @用例名称: fate-filter-tiltandshift-444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-tiltandshift-444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-tiltandshift-444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-tiltandshift-444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-tiltandshift.sh b/testcase/fate-filter-tiltandshift.sh new file mode 100755 index 0000000000000000000000000000000000000000..7b3788eb841469a69fdc2e607ab5f8d6d5389033 --- /dev/null +++ b/testcase/fate-filter-tiltandshift.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170316-755600902 +# @用例名称: fate-filter-tiltandshift +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-tiltandshift +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-tiltandshift + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-tiltandshift + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-tpad-add-duration.sh b/testcase/fate-filter-tpad-add-duration.sh new file mode 100755 index 0000000000000000000000000000000000000000..294390074be043c0fd625ebc6548a6b4afb702ab --- /dev/null +++ b/testcase/fate-filter-tpad-add-duration.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170317-181069642 +# @用例名称: fate-filter-tpad-add-duration +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-tpad-add-duration +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-tpad-add-duration + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-tpad-add-duration + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-tpad-add.sh b/testcase/fate-filter-tpad-add.sh new file mode 100755 index 0000000000000000000000000000000000000000..3583965a696c3650204b896ab4d4afade1f05990 --- /dev/null +++ b/testcase/fate-filter-tpad-add.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170317-094245622 +# @用例名称: fate-filter-tpad-add +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-tpad-add +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-tpad-add + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-tpad-add + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-tpad-clone.sh b/testcase/fate-filter-tpad-clone.sh new file mode 100755 index 0000000000000000000000000000000000000000..0b6770e208766c86039910d2f95fee0e867ac68b --- /dev/null +++ b/testcase/fate-filter-tpad-clone.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170317-265890372 +# @用例名称: fate-filter-tpad-clone +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-tpad-clone +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-tpad-clone + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-tpad-clone + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-transpose.sh b/testcase/fate-filter-transpose.sh new file mode 100755 index 0000000000000000000000000000000000000000..4748687c20107e60b196f14c72584b716eccce66 --- /dev/null +++ b/testcase/fate-filter-transpose.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170317-351759811 +# @用例名称: fate-filter-transpose +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-transpose +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-transpose + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-transpose + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-trim-duration.sh b/testcase/fate-filter-trim-duration.sh new file mode 100755 index 0000000000000000000000000000000000000000..931ed6e3128e369c3b72f2ffd6e8c56e86ef46dd --- /dev/null +++ b/testcase/fate-filter-trim-duration.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170317-434796446 +# @用例名称: fate-filter-trim-duration +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-trim-duration +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-trim-duration + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-trim-duration + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-trim-frame.sh b/testcase/fate-filter-trim-frame.sh new file mode 100755 index 0000000000000000000000000000000000000000..728dc02358820643a7d0586886146b3040e81dc5 --- /dev/null +++ b/testcase/fate-filter-trim-frame.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170317-520613326 +# @用例名称: fate-filter-trim-frame +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-trim-frame +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-trim-frame + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-trim-frame + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-trim-mixed.sh b/testcase/fate-filter-trim-mixed.sh new file mode 100755 index 0000000000000000000000000000000000000000..4819e97927d150011ae4452e7e3b48d5f46be6f3 --- /dev/null +++ b/testcase/fate-filter-trim-mixed.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170317-602564941 +# @用例名称: fate-filter-trim-mixed +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-trim-mixed +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-trim-mixed + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-trim-mixed + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-trim-time.sh b/testcase/fate-filter-trim-time.sh new file mode 100755 index 0000000000000000000000000000000000000000..48d2282bc8863612b523a737102246ae400c576f --- /dev/null +++ b/testcase/fate-filter-trim-time.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170317-688424771 +# @用例名称: fate-filter-trim-time +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-trim-time +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-trim-time + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-trim-time + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-unsharp-yuv420p10.sh b/testcase/fate-filter-unsharp-yuv420p10.sh new file mode 100755 index 0000000000000000000000000000000000000000..a051be9edc2395bea959d30935885dea8d946347 --- /dev/null +++ b/testcase/fate-filter-unsharp-yuv420p10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170317-858608400 +# @用例名称: fate-filter-unsharp-yuv420p10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-unsharp-yuv420p10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-unsharp-yuv420p10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-unsharp-yuv420p10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-unsharp.sh b/testcase/fate-filter-unsharp.sh new file mode 100755 index 0000000000000000000000000000000000000000..5d69ef244d8f235254adc4995a327333dc27e21f --- /dev/null +++ b/testcase/fate-filter-unsharp.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170317-773700622 +# @用例名称: fate-filter-unsharp +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-unsharp +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-unsharp + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-unsharp + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-untile-yuv422p.sh b/testcase/fate-filter-untile-yuv422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..8d6743dd0eda867ef6b747d4e98cd1275aa56bf3 --- /dev/null +++ b/testcase/fate-filter-untile-yuv422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170318-028601382 +# @用例名称: fate-filter-untile-yuv422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-untile-yuv422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-untile-yuv422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-untile-yuv422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-untile.sh b/testcase/fate-filter-untile.sh new file mode 100755 index 0000000000000000000000000000000000000000..e285414abb2dcc264891308fecbac0d60fd91160 --- /dev/null +++ b/testcase/fate-filter-untile.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170317-942294571 +# @用例名称: fate-filter-untile +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-untile +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-untile + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-untile + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-vectorscope_color.sh b/testcase/fate-filter-vectorscope_color.sh new file mode 100755 index 0000000000000000000000000000000000000000..05bc223389785761823f44825912c991f8bf0cf4 --- /dev/null +++ b/testcase/fate-filter-vectorscope_color.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170318-112948331 +# @用例名称: fate-filter-vectorscope_color +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-vectorscope_color +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-vectorscope_color + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-vectorscope_color + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-vectorscope_color2.sh b/testcase/fate-filter-vectorscope_color2.sh new file mode 100755 index 0000000000000000000000000000000000000000..8e928faa73d10192c39b4c18de8a80534001e905 --- /dev/null +++ b/testcase/fate-filter-vectorscope_color2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170318-196296980 +# @用例名称: fate-filter-vectorscope_color2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-vectorscope_color2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-vectorscope_color2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-vectorscope_color2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-vectorscope_color3.sh b/testcase/fate-filter-vectorscope_color3.sh new file mode 100755 index 0000000000000000000000000000000000000000..6fcf207d11bd2d76fbe2713adc69082da06b6213 --- /dev/null +++ b/testcase/fate-filter-vectorscope_color3.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170318-281096909 +# @用例名称: fate-filter-vectorscope_color3 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-vectorscope_color3 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-vectorscope_color3 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-vectorscope_color3 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-vectorscope_color4.sh b/testcase/fate-filter-vectorscope_color4.sh new file mode 100755 index 0000000000000000000000000000000000000000..8213e73a1911571622ddb6fc3a54938757425aa3 --- /dev/null +++ b/testcase/fate-filter-vectorscope_color4.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170318-364652983 +# @用例名称: fate-filter-vectorscope_color4 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-vectorscope_color4 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-vectorscope_color4 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-vectorscope_color4 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-vectorscope_gray.sh b/testcase/fate-filter-vectorscope_gray.sh new file mode 100755 index 0000000000000000000000000000000000000000..d3b2bf725576428415f39b62daedde9468a0425a --- /dev/null +++ b/testcase/fate-filter-vectorscope_gray.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170318-448878824 +# @用例名称: fate-filter-vectorscope_gray +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-vectorscope_gray +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-vectorscope_gray + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-vectorscope_gray + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-vectorscope_xy.sh b/testcase/fate-filter-vectorscope_xy.sh new file mode 100755 index 0000000000000000000000000000000000000000..11daa7f8c4781b4928c6abc99c1c5570a4c4c3f0 --- /dev/null +++ b/testcase/fate-filter-vectorscope_xy.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170318-531566336 +# @用例名称: fate-filter-vectorscope_xy +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-vectorscope_xy +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-vectorscope_xy + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-vectorscope_xy + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-vflip.sh b/testcase/fate-filter-vflip.sh new file mode 100755 index 0000000000000000000000000000000000000000..f56cac8431e8f558d6ec5ea7cdd32f0056cbd3b9 --- /dev/null +++ b/testcase/fate-filter-vflip.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170318-615201189 +# @用例名称: fate-filter-vflip +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-vflip +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-vflip + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-vflip + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-vflip_crop.sh b/testcase/fate-filter-vflip_crop.sh new file mode 100755 index 0000000000000000000000000000000000000000..9d12460236e7d94001427f28e85548cb89350bca --- /dev/null +++ b/testcase/fate-filter-vflip_crop.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170318-698816211 +# @用例名称: fate-filter-vflip_crop +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-vflip_crop +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-vflip_crop + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-vflip_crop + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-vflip_vflip.sh b/testcase/fate-filter-vflip_vflip.sh new file mode 100755 index 0000000000000000000000000000000000000000..b8111519595bbd1fa44e2deef99bfeca23813d98 --- /dev/null +++ b/testcase/fate-filter-vflip_vflip.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170318-784097663 +# @用例名称: fate-filter-vflip_vflip +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-vflip_vflip +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-vflip_vflip + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-vflip_vflip + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-volume.sh b/testcase/fate-filter-volume.sh new file mode 100755 index 0000000000000000000000000000000000000000..1fef7733e837615ba0a75e6a57a2c437232ed1df --- /dev/null +++ b/testcase/fate-filter-volume.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170318-869932822 +# @用例名称: fate-filter-volume +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-volume +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-volume + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-volume + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-vstack.sh b/testcase/fate-filter-vstack.sh new file mode 100755 index 0000000000000000000000000000000000000000..eaa2e7e3c4cc5a63c1bb549ab3f892a5499f51ed --- /dev/null +++ b/testcase/fate-filter-vstack.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170318-955321881 +# @用例名称: fate-filter-vstack +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-vstack +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-vstack + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-vstack + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-waveform_column.sh b/testcase/fate-filter-waveform_column.sh new file mode 100755 index 0000000000000000000000000000000000000000..25c59e814c4cbd0332492b4ef0519eefb6244a87 --- /dev/null +++ b/testcase/fate-filter-waveform_column.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170319-041175110 +# @用例名称: fate-filter-waveform_column +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-waveform_column +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-waveform_column + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-waveform_column + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-waveform_envelope.sh b/testcase/fate-filter-waveform_envelope.sh new file mode 100755 index 0000000000000000000000000000000000000000..e6198e4365b49f1e70832352f6b78fa34a6395a2 --- /dev/null +++ b/testcase/fate-filter-waveform_envelope.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170319-127402222 +# @用例名称: fate-filter-waveform_envelope +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-waveform_envelope +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-waveform_envelope + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-waveform_envelope + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-waveform_row.sh b/testcase/fate-filter-waveform_row.sh new file mode 100755 index 0000000000000000000000000000000000000000..d2071ade9a61e2c8a26650f02a326b7e374e5283 --- /dev/null +++ b/testcase/fate-filter-waveform_row.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170319-211444717 +# @用例名称: fate-filter-waveform_row +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-waveform_row +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-waveform_row + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-waveform_row + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-waveform_uv.sh b/testcase/fate-filter-waveform_uv.sh new file mode 100755 index 0000000000000000000000000000000000000000..5b73551967c4470866171dfdba75f080ac30ea9a --- /dev/null +++ b/testcase/fate-filter-waveform_uv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170319-295368624 +# @用例名称: fate-filter-waveform_uv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-waveform_uv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-waveform_uv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-waveform_uv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-weave.sh b/testcase/fate-filter-weave.sh new file mode 100755 index 0000000000000000000000000000000000000000..4bbb300dd3442aeeb7f480cc5fa29a27c1b828e7 --- /dev/null +++ b/testcase/fate-filter-weave.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170319-379747312 +# @用例名称: fate-filter-weave +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-weave +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-weave + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-weave + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-yuvtestsrc-ayuv.sh b/testcase/fate-filter-yuvtestsrc-ayuv.sh new file mode 100755 index 0000000000000000000000000000000000000000..de34cd79ab1d8f469b01562207731fde20198f78 --- /dev/null +++ b/testcase/fate-filter-yuvtestsrc-ayuv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170319-464834867 +# @用例名称: fate-filter-yuvtestsrc-ayuv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-ayuv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-ayuv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-yuvtestsrc-ayuv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-yuvtestsrc-ayuv64.sh b/testcase/fate-filter-yuvtestsrc-ayuv64.sh new file mode 100755 index 0000000000000000000000000000000000000000..5bba19962419e29ef43fd2074763221b41a58f8c --- /dev/null +++ b/testcase/fate-filter-yuvtestsrc-ayuv64.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170319-552252556 +# @用例名称: fate-filter-yuvtestsrc-ayuv64 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-ayuv64 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-ayuv64 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-yuvtestsrc-ayuv64 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-yuvtestsrc-nv24.sh b/testcase/fate-filter-yuvtestsrc-nv24.sh new file mode 100755 index 0000000000000000000000000000000000000000..be0ed0bd5066c13412e3ac099afaeb2b8d8dfb59 --- /dev/null +++ b/testcase/fate-filter-yuvtestsrc-nv24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170319-637885800 +# @用例名称: fate-filter-yuvtestsrc-nv24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-nv24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-nv24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-yuvtestsrc-nv24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-yuvtestsrc-p410.sh b/testcase/fate-filter-yuvtestsrc-p410.sh new file mode 100755 index 0000000000000000000000000000000000000000..0407307fb057134cb0bad5eb06105eb90e206fd0 --- /dev/null +++ b/testcase/fate-filter-yuvtestsrc-p410.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170319-723693149 +# @用例名称: fate-filter-yuvtestsrc-p410 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-p410 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-p410 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-yuvtestsrc-p410 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-yuvtestsrc-v30xle.sh b/testcase/fate-filter-yuvtestsrc-v30xle.sh new file mode 100755 index 0000000000000000000000000000000000000000..8749abc7ac6fdfbdcb147d1775904f1939db091c --- /dev/null +++ b/testcase/fate-filter-yuvtestsrc-v30xle.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170319-808906171 +# @用例名称: fate-filter-yuvtestsrc-v30xle +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-v30xle +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-v30xle + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-yuvtestsrc-v30xle + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-yuvtestsrc-vuya.sh b/testcase/fate-filter-yuvtestsrc-vuya.sh new file mode 100755 index 0000000000000000000000000000000000000000..3c84622edcfe6ce5d98edb86a6a6631922c74821 --- /dev/null +++ b/testcase/fate-filter-yuvtestsrc-vuya.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170319-896830770 +# @用例名称: fate-filter-yuvtestsrc-vuya +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-vuya +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-vuya + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-yuvtestsrc-vuya + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-yuvtestsrc-vyu444.sh b/testcase/fate-filter-yuvtestsrc-vyu444.sh new file mode 100755 index 0000000000000000000000000000000000000000..93731dffed5daf217619bc12753a41548c5158ac --- /dev/null +++ b/testcase/fate-filter-yuvtestsrc-vyu444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170319-980688518 +# @用例名称: fate-filter-yuvtestsrc-vyu444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-vyu444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-vyu444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-yuvtestsrc-vyu444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-yuvtestsrc-xv30le.sh b/testcase/fate-filter-yuvtestsrc-xv30le.sh new file mode 100755 index 0000000000000000000000000000000000000000..1231e894c60347d964f308b9ad496733d6823e06 --- /dev/null +++ b/testcase/fate-filter-yuvtestsrc-xv30le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170320-067740195 +# @用例名称: fate-filter-yuvtestsrc-xv30le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-xv30le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-xv30le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-yuvtestsrc-xv30le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-yuvtestsrc-xv36.sh b/testcase/fate-filter-yuvtestsrc-xv36.sh new file mode 100755 index 0000000000000000000000000000000000000000..5f3fa9790683937d26123dd14615ae10d4b2aacc --- /dev/null +++ b/testcase/fate-filter-yuvtestsrc-xv36.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170320-153711912 +# @用例名称: fate-filter-yuvtestsrc-xv36 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-xv36 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-xv36 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-yuvtestsrc-xv36 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-yuvtestsrc-xv48.sh b/testcase/fate-filter-yuvtestsrc-xv48.sh new file mode 100755 index 0000000000000000000000000000000000000000..e0353ab9c63c263915ce1fd5944e973c6ce06652 --- /dev/null +++ b/testcase/fate-filter-yuvtestsrc-xv48.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170320-239310236 +# @用例名称: fate-filter-yuvtestsrc-xv48 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-xv48 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-xv48 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-yuvtestsrc-xv48 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-yuvtestsrc-yuv444p.sh b/testcase/fate-filter-yuvtestsrc-yuv444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..fd6f3f6c9df1d7f012436f26451e47d2061e1433 --- /dev/null +++ b/testcase/fate-filter-yuvtestsrc-yuv444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170320-326295923 +# @用例名称: fate-filter-yuvtestsrc-yuv444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-yuv444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-yuv444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-yuvtestsrc-yuv444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-yuvtestsrc-yuv444p12.sh b/testcase/fate-filter-yuvtestsrc-yuv444p12.sh new file mode 100755 index 0000000000000000000000000000000000000000..38602baafda22b75d72ee4f869f2654162a8353e --- /dev/null +++ b/testcase/fate-filter-yuvtestsrc-yuv444p12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170320-410680482 +# @用例名称: fate-filter-yuvtestsrc-yuv444p12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-yuv444p12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-yuv444p12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-yuvtestsrc-yuv444p12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-yuvtestsrc-yuva444p.sh b/testcase/fate-filter-yuvtestsrc-yuva444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..9f651e5c572f8185b50bff760171281c4462ac93 --- /dev/null +++ b/testcase/fate-filter-yuvtestsrc-yuva444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170320-497823555 +# @用例名称: fate-filter-yuvtestsrc-yuva444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-yuva444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-yuva444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-yuvtestsrc-yuva444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-filter-yuvtestsrc-yuva444p12.sh b/testcase/fate-filter-yuvtestsrc-yuva444p12.sh new file mode 100755 index 0000000000000000000000000000000000000000..9c3a3f8cb4e85ddc8a9ccb22759ce9836b76ad5a --- /dev/null +++ b/testcase/fate-filter-yuvtestsrc-yuva444p12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170320-585053668 +# @用例名称: fate-filter-yuvtestsrc-yuva444p12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-yuva444p12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-filter-yuvtestsrc-yuva444p12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-filter-yuvtestsrc-yuva444p12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-flv-add_keyframe_index.sh b/testcase/fate-flv-add_keyframe_index.sh new file mode 100755 index 0000000000000000000000000000000000000000..aff2ff5731e07a2c9cf61f73e7763fa91e76fb6b --- /dev/null +++ b/testcase/fate-flv-add_keyframe_index.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170320-670761580 +# @用例名称: fate-flv-add_keyframe_index +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-flv-add_keyframe_index +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-flv-add_keyframe_index + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-flv-add_keyframe_index + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-force_key_frames.sh b/testcase/fate-force_key_frames.sh new file mode 100755 index 0000000000000000000000000000000000000000..8f929187ca779e72b01b4368d3f9423478883d95 --- /dev/null +++ b/testcase/fate-force_key_frames.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170320-756624559 +# @用例名称: fate-force_key_frames +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-force_key_frames +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-force_key_frames + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-force_key_frames + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-hwdevice.sh b/testcase/fate-hwdevice.sh new file mode 100755 index 0000000000000000000000000000000000000000..9651c75be1746ef3c37248bf805c3530fbd66dcb --- /dev/null +++ b/testcase/fate-hwdevice.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170320-839451698 +# @用例名称: fate-hwdevice +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-hwdevice +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-hwdevice + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-hwdevice + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-iamf-5_1_4.sh b/testcase/fate-iamf-5_1_4.sh new file mode 100755 index 0000000000000000000000000000000000000000..0f63fdd6501253026a17c2d24b880fa33397dd3a --- /dev/null +++ b/testcase/fate-iamf-5_1_4.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170320-924905205 +# @用例名称: fate-iamf-5_1_4 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-iamf-5_1_4 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-iamf-5_1_4 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-iamf-5_1_4 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-iamf-7_1_4.sh b/testcase/fate-iamf-7_1_4.sh new file mode 100755 index 0000000000000000000000000000000000000000..1d95e138e294252e488421a597aeac41d277177d --- /dev/null +++ b/testcase/fate-iamf-7_1_4.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170321-010824423 +# @用例名称: fate-iamf-7_1_4 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-iamf-7_1_4 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-iamf-7_1_4 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-iamf-7_1_4 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-iamf-9_1_6.sh b/testcase/fate-iamf-9_1_6.sh new file mode 100755 index 0000000000000000000000000000000000000000..a778fbad431907e137fc5daaabc331882ec21f6d --- /dev/null +++ b/testcase/fate-iamf-9_1_6.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170321-096185212 +# @用例名称: fate-iamf-9_1_6 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-iamf-9_1_6 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-iamf-9_1_6 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-iamf-9_1_6 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-iamf-ambisonic_1-projection.sh b/testcase/fate-iamf-ambisonic_1-projection.sh new file mode 100755 index 0000000000000000000000000000000000000000..4b0e8e732555c9721af6b7c753fe465979fd19b3 --- /dev/null +++ b/testcase/fate-iamf-ambisonic_1-projection.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170321-267516527 +# @用例名称: fate-iamf-ambisonic_1-projection +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-iamf-ambisonic_1-projection +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-iamf-ambisonic_1-projection + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-iamf-ambisonic_1-projection + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-iamf-ambisonic_1.sh b/testcase/fate-iamf-ambisonic_1.sh new file mode 100755 index 0000000000000000000000000000000000000000..faa6ce1fb5defcac7c19f6d7d4153a2e01a2efea --- /dev/null +++ b/testcase/fate-iamf-ambisonic_1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170321-182714338 +# @用例名称: fate-iamf-ambisonic_1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-iamf-ambisonic_1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-iamf-ambisonic_1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-iamf-ambisonic_1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-iamf-stereo.sh b/testcase/fate-iamf-stereo.sh new file mode 100755 index 0000000000000000000000000000000000000000..cc7daf4687c261e944a7434906159aaa2d0a4a21 --- /dev/null +++ b/testcase/fate-iamf-stereo.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170321-352058983 +# @用例名称: fate-iamf-stereo +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-iamf-stereo +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-iamf-stereo + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-iamf-stereo + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-aiff.sh b/testcase/fate-lavf-aiff.sh new file mode 100755 index 0000000000000000000000000000000000000000..75a768c8347304097dbf663bff5c91298cb51460 --- /dev/null +++ b/testcase/fate-lavf-aiff.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170321-437954302 +# @用例名称: fate-lavf-aiff +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-aiff +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-aiff + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-aiff + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-al.sh b/testcase/fate-lavf-al.sh new file mode 100755 index 0000000000000000000000000000000000000000..0a85c4eb0bf7300e6f9b137c2ea5940ea8690168 --- /dev/null +++ b/testcase/fate-lavf-al.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170321-523536536 +# @用例名称: fate-lavf-al +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-al +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-al + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-al + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-apng.png.sh b/testcase/fate-lavf-apng.png.sh new file mode 100755 index 0000000000000000000000000000000000000000..f7a25d9fa00856441826bf090c8a4d2310924464 --- /dev/null +++ b/testcase/fate-lavf-apng.png.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170321-692472079 +# @用例名称: fate-lavf-apng.png +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-apng.png +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-apng.png + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-apng.png + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-apng.sh b/testcase/fate-lavf-apng.sh new file mode 100755 index 0000000000000000000000000000000000000000..7d1ae886d858c85e315a3967508fed9f271b330b --- /dev/null +++ b/testcase/fate-lavf-apng.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170321-608630671 +# @用例名称: fate-lavf-apng +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-apng +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-apng + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-apng + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-asf.sh b/testcase/fate-lavf-asf.sh new file mode 100755 index 0000000000000000000000000000000000000000..0a81c2fd36de665c887ba1c3a0b8686b253676fa --- /dev/null +++ b/testcase/fate-lavf-asf.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170321-776387006 +# @用例名称: fate-lavf-asf +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-asf +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-asf + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-asf + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-ast.sh b/testcase/fate-lavf-ast.sh new file mode 100755 index 0000000000000000000000000000000000000000..5431ebb2d0285332346dc7a78acab3f33b51a253 --- /dev/null +++ b/testcase/fate-lavf-ast.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170321-861867304 +# @用例名称: fate-lavf-ast +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-ast +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-ast + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-ast + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-au.sh b/testcase/fate-lavf-au.sh new file mode 100755 index 0000000000000000000000000000000000000000..d67b5db66a7ebdcb0f685f8768c227427e85cb15 --- /dev/null +++ b/testcase/fate-lavf-au.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170321-946026476 +# @用例名称: fate-lavf-au +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-au +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-au + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-au + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-avi.sh b/testcase/fate-lavf-avi.sh new file mode 100755 index 0000000000000000000000000000000000000000..1eea92c3a94185f7b3d56d31a1a78903ba6434f9 --- /dev/null +++ b/testcase/fate-lavf-avi.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170322-029040781 +# @用例名称: fate-lavf-avi +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-avi +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-avi + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-avi + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-bmp.sh b/testcase/fate-lavf-bmp.sh new file mode 100755 index 0000000000000000000000000000000000000000..1af8c44ce6e4694d3a1405138c3ec4f8d929e38d --- /dev/null +++ b/testcase/fate-lavf-bmp.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170322-113182264 +# @用例名称: fate-lavf-bmp +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-bmp +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-bmp + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-bmp + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-caf.sh b/testcase/fate-lavf-caf.sh new file mode 100755 index 0000000000000000000000000000000000000000..b659f739a8a085bdee214053e7577812e4808374 --- /dev/null +++ b/testcase/fate-lavf-caf.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170322-197886546 +# @用例名称: fate-lavf-caf +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-caf +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-caf + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-caf + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-dfpwm.sh b/testcase/fate-lavf-dfpwm.sh new file mode 100755 index 0000000000000000000000000000000000000000..7136e1c56aa4f51ff3fa20bcb81fbeeb0776cb97 --- /dev/null +++ b/testcase/fate-lavf-dfpwm.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170322-283595498 +# @用例名称: fate-lavf-dfpwm +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-dfpwm +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-dfpwm + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-dfpwm + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-dpx.sh b/testcase/fate-lavf-dpx.sh new file mode 100755 index 0000000000000000000000000000000000000000..0db16ae168eb4cfd4cd4c14aca4cacdc88008dc6 --- /dev/null +++ b/testcase/fate-lavf-dpx.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170322-368374097 +# @用例名称: fate-lavf-dpx +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-dpx +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-dpx + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-dpx + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-dv.sh b/testcase/fate-lavf-dv.sh new file mode 100755 index 0000000000000000000000000000000000000000..02c216c3e55480edad49b04acdecb1431cf3e39f --- /dev/null +++ b/testcase/fate-lavf-dv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170322-452177228 +# @用例名称: fate-lavf-dv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-dv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-dv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-dv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-dv_ntsc.sh b/testcase/fate-lavf-dv_ntsc.sh new file mode 100755 index 0000000000000000000000000000000000000000..6c0fa0ee0122ed910552d6f257c05a879c1c391d --- /dev/null +++ b/testcase/fate-lavf-dv_ntsc.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170322-535266091 +# @用例名称: fate-lavf-dv_ntsc +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-dv_ntsc +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-dv_ntsc + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-dv_ntsc + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-dv_pal.sh b/testcase/fate-lavf-dv_pal.sh new file mode 100755 index 0000000000000000000000000000000000000000..436fc6b4ee28036aed2f9e65d59c6d786e3e1ab9 --- /dev/null +++ b/testcase/fate-lavf-dv_pal.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170322-619555411 +# @用例名称: fate-lavf-dv_pal +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-dv_pal +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-dv_pal + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-dv_pal + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-flm.sh b/testcase/fate-lavf-flm.sh new file mode 100755 index 0000000000000000000000000000000000000000..9858a91892905d7ed94d133bc42bcffe2f3799d1 --- /dev/null +++ b/testcase/fate-lavf-flm.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170322-703195343 +# @用例名称: fate-lavf-flm +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-flm +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-flm + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-flm + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-flv.sh b/testcase/fate-lavf-flv.sh new file mode 100755 index 0000000000000000000000000000000000000000..fbf2d8cd86057516a524c56adc15d394b3c72b2d --- /dev/null +++ b/testcase/fate-lavf-flv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170322-788123182 +# @用例名称: fate-lavf-flv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-flv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-flv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-flv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-gbrap.fits.sh b/testcase/fate-lavf-gbrap.fits.sh new file mode 100755 index 0000000000000000000000000000000000000000..08f88baec9dcdf823bdb07dd201cd349b8174111 --- /dev/null +++ b/testcase/fate-lavf-gbrap.fits.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170322-874725306 +# @用例名称: fate-lavf-gbrap.fits +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-gbrap.fits +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-gbrap.fits + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-gbrap.fits + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-gbrap16be.fits.sh b/testcase/fate-lavf-gbrap16be.fits.sh new file mode 100755 index 0000000000000000000000000000000000000000..b01956d9e88bf69e3c69efe9a06df695b61ce30a --- /dev/null +++ b/testcase/fate-lavf-gbrap16be.fits.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170322-961028366 +# @用例名称: fate-lavf-gbrap16be.fits +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-gbrap16be.fits +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-gbrap16be.fits + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-gbrap16be.fits + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-gbrp.fits.sh b/testcase/fate-lavf-gbrp.fits.sh new file mode 100755 index 0000000000000000000000000000000000000000..2b97e023ee8413593afde8566bdeebd4a01eaf99 --- /dev/null +++ b/testcase/fate-lavf-gbrp.fits.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170323-046473054 +# @用例名称: fate-lavf-gbrp.fits +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-gbrp.fits +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-gbrp.fits + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-gbrp.fits + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-gbrp10le.dpx.sh b/testcase/fate-lavf-gbrp10le.dpx.sh new file mode 100755 index 0000000000000000000000000000000000000000..dff4d60fe091512e2d5f1952850137ac99f6f703 --- /dev/null +++ b/testcase/fate-lavf-gbrp10le.dpx.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170323-131549449 +# @用例名称: fate-lavf-gbrp10le.dpx +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-gbrp10le.dpx +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-gbrp10le.dpx + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-gbrp10le.dpx + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-gbrp12le.dpx.sh b/testcase/fate-lavf-gbrp12le.dpx.sh new file mode 100755 index 0000000000000000000000000000000000000000..eb1b8259156595da3335892ede96dbda39b5a829 --- /dev/null +++ b/testcase/fate-lavf-gbrp12le.dpx.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170323-215848568 +# @用例名称: fate-lavf-gbrp12le.dpx +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-gbrp12le.dpx +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-gbrp12le.dpx + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-gbrp12le.dpx + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-gbrp16be.fits.sh b/testcase/fate-lavf-gbrp16be.fits.sh new file mode 100755 index 0000000000000000000000000000000000000000..4a62cd8526b4347b5bcacbd5b3e8f81320d86179 --- /dev/null +++ b/testcase/fate-lavf-gbrp16be.fits.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170323-300904993 +# @用例名称: fate-lavf-gbrp16be.fits +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-gbrp16be.fits +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-gbrp16be.fits + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-gbrp16be.fits + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-gbrpf32be.pfm.sh b/testcase/fate-lavf-gbrpf32be.pfm.sh new file mode 100755 index 0000000000000000000000000000000000000000..5998a8d6204c8a276353de750401f2404b57ab50 --- /dev/null +++ b/testcase/fate-lavf-gbrpf32be.pfm.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170323-386534837 +# @用例名称: fate-lavf-gbrpf32be.pfm +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-gbrpf32be.pfm +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-gbrpf32be.pfm + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-gbrpf32be.pfm + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-gbrpf32le.pfm.sh b/testcase/fate-lavf-gbrpf32le.pfm.sh new file mode 100755 index 0000000000000000000000000000000000000000..9f03aeefb7381a9bb3677d724367fcd621267f6e --- /dev/null +++ b/testcase/fate-lavf-gbrpf32le.pfm.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170323-470874676 +# @用例名称: fate-lavf-gbrpf32le.pfm +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-gbrpf32le.pfm +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-gbrpf32le.pfm + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-gbrpf32le.pfm + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-gif.sh b/testcase/fate-lavf-gif.sh new file mode 100755 index 0000000000000000000000000000000000000000..f58862dfe0ed29689a51c59ae2a962cd95afae37 --- /dev/null +++ b/testcase/fate-lavf-gif.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170323-555533709 +# @用例名称: fate-lavf-gif +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-gif +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-gif + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-gif + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-gray.fits.sh b/testcase/fate-lavf-gray.fits.sh new file mode 100755 index 0000000000000000000000000000000000000000..3c186bba1dcbb0ddb0931bf3960192c3d492fa8d --- /dev/null +++ b/testcase/fate-lavf-gray.fits.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170323-639148162 +# @用例名称: fate-lavf-gray.fits +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-gray.fits +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-gray.fits + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-gray.fits + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-gray.pam.sh b/testcase/fate-lavf-gray.pam.sh new file mode 100755 index 0000000000000000000000000000000000000000..6ee5eb90b440e4e689ffbfe3d496820a729d80a0 --- /dev/null +++ b/testcase/fate-lavf-gray.pam.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170323-722954072 +# @用例名称: fate-lavf-gray.pam +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-gray.pam +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-gray.pam + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-gray.pam + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-gray.xwd.sh b/testcase/fate-lavf-gray.xwd.sh new file mode 100755 index 0000000000000000000000000000000000000000..59b4e28820adc3a2b181352853ceb13dfa81fb36 --- /dev/null +++ b/testcase/fate-lavf-gray.xwd.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170323-807333960 +# @用例名称: fate-lavf-gray.xwd +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-gray.xwd +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-gray.xwd + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-gray.xwd + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-gray16be.fits.sh b/testcase/fate-lavf-gray16be.fits.sh new file mode 100755 index 0000000000000000000000000000000000000000..c7134882f5d006fb835635b0e57ab1bd3cb98bd9 --- /dev/null +++ b/testcase/fate-lavf-gray16be.fits.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170323-890737137 +# @用例名称: fate-lavf-gray16be.fits +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-gray16be.fits +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-gray16be.fits + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-gray16be.fits + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-gray16be.pam.sh b/testcase/fate-lavf-gray16be.pam.sh new file mode 100755 index 0000000000000000000000000000000000000000..c0951406788d66a1a4720a66190dbf41ce5fb6dd --- /dev/null +++ b/testcase/fate-lavf-gray16be.pam.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170323-976033198 +# @用例名称: fate-lavf-gray16be.pam +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-gray16be.pam +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-gray16be.pam + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-gray16be.pam + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-gray16be.png.sh b/testcase/fate-lavf-gray16be.png.sh new file mode 100755 index 0000000000000000000000000000000000000000..8cc1b146c5519fef16460897380284341a7da340 --- /dev/null +++ b/testcase/fate-lavf-gray16be.png.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170324-059126701 +# @用例名称: fate-lavf-gray16be.png +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-gray16be.png +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-gray16be.png + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-gray16be.png + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-grayf32be.pfm.sh b/testcase/fate-lavf-grayf32be.pfm.sh new file mode 100755 index 0000000000000000000000000000000000000000..1a38d2eaec18a93cca44ce4aebd25d49da85c604 --- /dev/null +++ b/testcase/fate-lavf-grayf32be.pfm.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170324-144193226 +# @用例名称: fate-lavf-grayf32be.pfm +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-grayf32be.pfm +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-grayf32be.pfm + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-grayf32be.pfm + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-grayf32le.pfm.sh b/testcase/fate-lavf-grayf32le.pfm.sh new file mode 100755 index 0000000000000000000000000000000000000000..4ca006c1403fc20f198b0745fa5001ca118ce8fa --- /dev/null +++ b/testcase/fate-lavf-grayf32le.pfm.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170324-229876738 +# @用例名称: fate-lavf-grayf32le.pfm +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-grayf32le.pfm +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-grayf32le.pfm + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-grayf32le.pfm + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-gxf.sh b/testcase/fate-lavf-gxf.sh new file mode 100755 index 0000000000000000000000000000000000000000..de8dde613d866c6a7ce314dc5a4c38e7f76f2b54 --- /dev/null +++ b/testcase/fate-lavf-gxf.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170324-314337065 +# @用例名称: fate-lavf-gxf +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-gxf +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-gxf + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-gxf + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-gxf_ntsc.sh b/testcase/fate-lavf-gxf_ntsc.sh new file mode 100755 index 0000000000000000000000000000000000000000..c5eb57f783873b7841264ebc1e99b9a4db1a6ab1 --- /dev/null +++ b/testcase/fate-lavf-gxf_ntsc.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170324-402934880 +# @用例名称: fate-lavf-gxf_ntsc +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-gxf_ntsc +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-gxf_ntsc + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-gxf_ntsc + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-gxf_pal.sh b/testcase/fate-lavf-gxf_pal.sh new file mode 100755 index 0000000000000000000000000000000000000000..bff38e82dd1724b24f55adb075e26af9121e40bd --- /dev/null +++ b/testcase/fate-lavf-gxf_pal.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170324-489665592 +# @用例名称: fate-lavf-gxf_pal +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-gxf_pal +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-gxf_pal + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-gxf_pal + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-ircam.sh b/testcase/fate-lavf-ircam.sh new file mode 100755 index 0000000000000000000000000000000000000000..6ee5cc9e78ec4df987c239fbd56a03a6ce732fc6 --- /dev/null +++ b/testcase/fate-lavf-ircam.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170324-574827876 +# @用例名称: fate-lavf-ircam +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-ircam +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-ircam + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-ircam + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-ismv.sh b/testcase/fate-lavf-ismv.sh new file mode 100755 index 0000000000000000000000000000000000000000..8e02ada22253c11e9ad1e2adf7c7ffe7893ae82d --- /dev/null +++ b/testcase/fate-lavf-ismv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170324-658927529 +# @用例名称: fate-lavf-ismv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-ismv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-ismv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-ismv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-jpg.sh b/testcase/fate-lavf-jpg.sh new file mode 100755 index 0000000000000000000000000000000000000000..f1355da23cd52655b2dafbfc5daf506c366a2a8c --- /dev/null +++ b/testcase/fate-lavf-jpg.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170324-744702290 +# @用例名称: fate-lavf-jpg +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-jpg +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-jpg + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-jpg + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-mka.sh b/testcase/fate-lavf-mka.sh new file mode 100755 index 0000000000000000000000000000000000000000..deb8aa6aafea0d67b7eb0da891e36414c41f3ac5 --- /dev/null +++ b/testcase/fate-lavf-mka.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170324-829996401 +# @用例名称: fate-lavf-mka +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-mka +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-mka + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-mka + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-mkv.sh b/testcase/fate-lavf-mkv.sh new file mode 100755 index 0000000000000000000000000000000000000000..0fee37a08646dd07658b0dfd2d643da95efd3f51 --- /dev/null +++ b/testcase/fate-lavf-mkv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170324-917423279 +# @用例名称: fate-lavf-mkv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-mkv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-mkv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-mkv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-mkv_attachment.sh b/testcase/fate-lavf-mkv_attachment.sh new file mode 100755 index 0000000000000000000000000000000000000000..a8645d8b281713e673aef5309fd4a77f33c78aff --- /dev/null +++ b/testcase/fate-lavf-mkv_attachment.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170325-005499634 +# @用例名称: fate-lavf-mkv_attachment +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-mkv_attachment +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-mkv_attachment + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-mkv_attachment + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-mmf.sh b/testcase/fate-lavf-mmf.sh new file mode 100755 index 0000000000000000000000000000000000000000..1d1f7fea6b413d53fe1e53c10642f042df4e1c2d --- /dev/null +++ b/testcase/fate-lavf-mmf.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170325-095454445 +# @用例名称: fate-lavf-mmf +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-mmf +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-mmf + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-mmf + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-monob.pam.sh b/testcase/fate-lavf-monob.pam.sh new file mode 100755 index 0000000000000000000000000000000000000000..b0647f1c648c5337a3e1388998c069293291712c --- /dev/null +++ b/testcase/fate-lavf-monob.pam.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170325-181916682 +# @用例名称: fate-lavf-monob.pam +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-monob.pam +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-monob.pam + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-monob.pam + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-monow.xwd.sh b/testcase/fate-lavf-monow.xwd.sh new file mode 100755 index 0000000000000000000000000000000000000000..5684802280b79bdf695c78c962acfe08554985c2 --- /dev/null +++ b/testcase/fate-lavf-monow.xwd.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170325-270722602 +# @用例名称: fate-lavf-monow.xwd +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-monow.xwd +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-monow.xwd + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-monow.xwd + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-mov.sh b/testcase/fate-lavf-mov.sh new file mode 100755 index 0000000000000000000000000000000000000000..de421fdc235cbf52d86c7eb96b643d9f23973f69 --- /dev/null +++ b/testcase/fate-lavf-mov.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170325-357032814 +# @用例名称: fate-lavf-mov +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-mov +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-mov + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-mov + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-mov_hybrid_frag.sh b/testcase/fate-lavf-mov_hybrid_frag.sh new file mode 100755 index 0000000000000000000000000000000000000000..5eb435651b29972fe18344f3d9c15caf7e22c556 --- /dev/null +++ b/testcase/fate-lavf-mov_hybrid_frag.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170325-442783925 +# @用例名称: fate-lavf-mov_hybrid_frag +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-mov_hybrid_frag +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-mov_hybrid_frag + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-mov_hybrid_frag + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-mov_rtphint.sh b/testcase/fate-lavf-mov_rtphint.sh new file mode 100755 index 0000000000000000000000000000000000000000..300ff3a85358effa9dcf18227e6872d293b7bd92 --- /dev/null +++ b/testcase/fate-lavf-mov_rtphint.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170325-529112035 +# @用例名称: fate-lavf-mov_rtphint +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-mov_rtphint +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-mov_rtphint + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-mov_rtphint + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-mp4.sh b/testcase/fate-lavf-mp4.sh new file mode 100755 index 0000000000000000000000000000000000000000..bdad25218bcdb6c629c956f2e2de828d9141a361 --- /dev/null +++ b/testcase/fate-lavf-mp4.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170325-616598222 +# @用例名称: fate-lavf-mp4 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-mp4 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-mp4 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-mp4 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-mpg.sh b/testcase/fate-lavf-mpg.sh new file mode 100755 index 0000000000000000000000000000000000000000..b145ce32c2310b7b3a0e498f23ea66df3cbce174 --- /dev/null +++ b/testcase/fate-lavf-mpg.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170325-702705706 +# @用例名称: fate-lavf-mpg +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-mpg +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-mpg + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-mpg + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-mxf.sh b/testcase/fate-lavf-mxf.sh new file mode 100755 index 0000000000000000000000000000000000000000..46d7c4c2f483f71ce3d625652beae066309afc62 --- /dev/null +++ b/testcase/fate-lavf-mxf.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170325-789819882 +# @用例名称: fate-lavf-mxf +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-mxf +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-mxf + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-mxf + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-mxf_d10.sh b/testcase/fate-lavf-mxf_d10.sh new file mode 100755 index 0000000000000000000000000000000000000000..59eca96044f27aa4148ffbc42a58ee681a6f293b --- /dev/null +++ b/testcase/fate-lavf-mxf_d10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170325-878510676 +# @用例名称: fate-lavf-mxf_d10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-mxf_d10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-mxf_d10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-mxf_d10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-mxf_dv25.sh b/testcase/fate-lavf-mxf_dv25.sh new file mode 100755 index 0000000000000000000000000000000000000000..5f28d77eb212d923a57fb8d6f80b816d18800157 --- /dev/null +++ b/testcase/fate-lavf-mxf_dv25.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170325-965905125 +# @用例名称: fate-lavf-mxf_dv25 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-mxf_dv25 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-mxf_dv25 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-mxf_dv25 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-mxf_dvcpro100.sh b/testcase/fate-lavf-mxf_dvcpro100.sh new file mode 100755 index 0000000000000000000000000000000000000000..07e42b636d45824ef9b683bef85300648f49fa86 --- /dev/null +++ b/testcase/fate-lavf-mxf_dvcpro100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170326-049593127 +# @用例名称: fate-lavf-mxf_dvcpro100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-mxf_dvcpro100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-mxf_dvcpro100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-mxf_dvcpro100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-mxf_dvcpro50.sh b/testcase/fate-lavf-mxf_dvcpro50.sh new file mode 100755 index 0000000000000000000000000000000000000000..2880c9f59378cf1ffe91c4c5c289abe8aca2e7cf --- /dev/null +++ b/testcase/fate-lavf-mxf_dvcpro50.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170326-134528253 +# @用例名称: fate-lavf-mxf_dvcpro50 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-mxf_dvcpro50 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-mxf_dvcpro50 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-mxf_dvcpro50 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-mxf_ffv1.sh b/testcase/fate-lavf-mxf_ffv1.sh new file mode 100755 index 0000000000000000000000000000000000000000..5942abd0e4fb4c6d255028b2d234f27da969383c --- /dev/null +++ b/testcase/fate-lavf-mxf_ffv1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170326-218496520 +# @用例名称: fate-lavf-mxf_ffv1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-mxf_ffv1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-mxf_ffv1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-mxf_ffv1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-mxf_opatom.sh b/testcase/fate-lavf-mxf_opatom.sh new file mode 100755 index 0000000000000000000000000000000000000000..6e25b5f0ef1db50529f69ed0a3ec31bd6328ef72 --- /dev/null +++ b/testcase/fate-lavf-mxf_opatom.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170326-303659852 +# @用例名称: fate-lavf-mxf_opatom +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-mxf_opatom +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-mxf_opatom + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-mxf_opatom + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-mxf_opatom_audio.sh b/testcase/fate-lavf-mxf_opatom_audio.sh new file mode 100755 index 0000000000000000000000000000000000000000..f72e42d5d203289d0c63d2b9f0ae0cb71e7bcfad --- /dev/null +++ b/testcase/fate-lavf-mxf_opatom_audio.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170326-388625199 +# @用例名称: fate-lavf-mxf_opatom_audio +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-mxf_opatom_audio +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-mxf_opatom_audio + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-mxf_opatom_audio + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-none.gbrapf32le.exr.sh b/testcase/fate-lavf-none.gbrapf32le.exr.sh new file mode 100755 index 0000000000000000000000000000000000000000..bf325eda1a74d45172a324886803449b18584439 --- /dev/null +++ b/testcase/fate-lavf-none.gbrapf32le.exr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170326-474514378 +# @用例名称: fate-lavf-none.gbrapf32le.exr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-none.gbrapf32le.exr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-none.gbrapf32le.exr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-none.gbrapf32le.exr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-none.gbrpf32le.exr.sh b/testcase/fate-lavf-none.gbrpf32le.exr.sh new file mode 100755 index 0000000000000000000000000000000000000000..59c818be6b984835480bf3d6ae1e66d336a2e98e --- /dev/null +++ b/testcase/fate-lavf-none.gbrpf32le.exr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170326-561278690 +# @用例名称: fate-lavf-none.gbrpf32le.exr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-none.gbrpf32le.exr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-none.gbrpf32le.exr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-none.gbrpf32le.exr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-none.grayf32le.exr.sh b/testcase/fate-lavf-none.grayf32le.exr.sh new file mode 100755 index 0000000000000000000000000000000000000000..e3cb6bb2b1c57ff6e9762496e9b6397ffc4024ae --- /dev/null +++ b/testcase/fate-lavf-none.grayf32le.exr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170326-647273896 +# @用例名称: fate-lavf-none.grayf32le.exr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-none.grayf32le.exr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-none.grayf32le.exr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-none.grayf32le.exr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-nut.sh b/testcase/fate-lavf-nut.sh new file mode 100755 index 0000000000000000000000000000000000000000..c18a626f083e3955a1667e052d1133e439591fcd --- /dev/null +++ b/testcase/fate-lavf-nut.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170326-733016918 +# @用例名称: fate-lavf-nut +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-nut +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-nut + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-nut + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-ogg.sh b/testcase/fate-lavf-ogg.sh new file mode 100755 index 0000000000000000000000000000000000000000..2c77d5d761e86d5ddacf30a5cb43c6229caeac3b --- /dev/null +++ b/testcase/fate-lavf-ogg.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170326-819791170 +# @用例名称: fate-lavf-ogg +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-ogg +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-ogg + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-ogg + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-pam.sh b/testcase/fate-lavf-pam.sh new file mode 100755 index 0000000000000000000000000000000000000000..023039b691da272862b034af7e592ba5f6c5f1a3 --- /dev/null +++ b/testcase/fate-lavf-pam.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170326-904614179 +# @用例名称: fate-lavf-pam +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-pam +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-pam + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-pam + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-pbmpipe.sh b/testcase/fate-lavf-pbmpipe.sh new file mode 100755 index 0000000000000000000000000000000000000000..a22653c20fa4a5f6190b2a6ac2be651bc9315580 --- /dev/null +++ b/testcase/fate-lavf-pbmpipe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170326-991088536 +# @用例名称: fate-lavf-pbmpipe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-pbmpipe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-pbmpipe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-pbmpipe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-pcx.sh b/testcase/fate-lavf-pcx.sh new file mode 100755 index 0000000000000000000000000000000000000000..b42396ad6966b8da43f30193245a67cdc5888f2a --- /dev/null +++ b/testcase/fate-lavf-pcx.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170327-079381587 +# @用例名称: fate-lavf-pcx +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-pcx +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-pcx + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-pcx + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-peak.wav.sh b/testcase/fate-lavf-peak.wav.sh new file mode 100755 index 0000000000000000000000000000000000000000..06b8d0ab19f67c584da339b5c6ec16095cb7c1f5 --- /dev/null +++ b/testcase/fate-lavf-peak.wav.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170327-168964374 +# @用例名称: fate-lavf-peak.wav +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-peak.wav +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-peak.wav + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-peak.wav + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-peak_only.wav.sh b/testcase/fate-lavf-peak_only.wav.sh new file mode 100755 index 0000000000000000000000000000000000000000..e610007703b2a2a1680328c20d9fd1efc8686c01 --- /dev/null +++ b/testcase/fate-lavf-peak_only.wav.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170327-253407961 +# @用例名称: fate-lavf-peak_only.wav +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-peak_only.wav +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-peak_only.wav + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-peak_only.wav + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-pgm.sh b/testcase/fate-lavf-pgm.sh new file mode 100755 index 0000000000000000000000000000000000000000..cef9ce2cf2b14be227c904520a259693ec969e07 --- /dev/null +++ b/testcase/fate-lavf-pgm.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170327-338041954 +# @用例名称: fate-lavf-pgm +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-pgm +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-pgm + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-pgm + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-pgmpipe.sh b/testcase/fate-lavf-pgmpipe.sh new file mode 100755 index 0000000000000000000000000000000000000000..81d5ccc063105a9d79e8ca9bd81be338177a8e0c --- /dev/null +++ b/testcase/fate-lavf-pgmpipe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170327-422460032 +# @用例名称: fate-lavf-pgmpipe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-pgmpipe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-pgmpipe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-pgmpipe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-png.sh b/testcase/fate-lavf-png.sh new file mode 100755 index 0000000000000000000000000000000000000000..fac43382f50a8c88f18f634cbb8908cc3b45b155 --- /dev/null +++ b/testcase/fate-lavf-png.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170327-506302500 +# @用例名称: fate-lavf-png +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-png +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-png + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-png + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-ppm.sh b/testcase/fate-lavf-ppm.sh new file mode 100755 index 0000000000000000000000000000000000000000..2cab6c6e5db2a9ac285414ab6e79f3185f67457f --- /dev/null +++ b/testcase/fate-lavf-ppm.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170327-591817297 +# @用例名称: fate-lavf-ppm +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-ppm +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-ppm + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-ppm + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-ppmpipe.sh b/testcase/fate-lavf-ppmpipe.sh new file mode 100755 index 0000000000000000000000000000000000000000..82cd24a273ff3c9c4d6cbd86a550605382833ee9 --- /dev/null +++ b/testcase/fate-lavf-ppmpipe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170327-678319673 +# @用例名称: fate-lavf-ppmpipe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-ppmpipe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-ppmpipe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-ppmpipe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-qoi.sh b/testcase/fate-lavf-qoi.sh new file mode 100755 index 0000000000000000000000000000000000000000..11b92f6f34abf7d169417c9bed23018adc54094e --- /dev/null +++ b/testcase/fate-lavf-qoi.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170327-764199342 +# @用例名称: fate-lavf-qoi +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-qoi +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-qoi + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-qoi + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-qoipipe.sh b/testcase/fate-lavf-qoipipe.sh new file mode 100755 index 0000000000000000000000000000000000000000..b3d722fffa3e0c6f0a207da5e387fc71a7f504ae --- /dev/null +++ b/testcase/fate-lavf-qoipipe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170327-849072470 +# @用例名称: fate-lavf-qoipipe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-qoipipe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-qoipipe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-qoipipe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-rgb48be.pam.sh b/testcase/fate-lavf-rgb48be.pam.sh new file mode 100755 index 0000000000000000000000000000000000000000..ebf7a2e96e2728c78e5663f6cc2ba6e5d2a719c1 --- /dev/null +++ b/testcase/fate-lavf-rgb48be.pam.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170327-935083047 +# @用例名称: fate-lavf-rgb48be.pam +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-rgb48be.pam +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-rgb48be.pam + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-rgb48be.pam + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-rgb48be.png.sh b/testcase/fate-lavf-rgb48be.png.sh new file mode 100755 index 0000000000000000000000000000000000000000..06bae46fb8d315d3c58b115508e9f8c1074e21bb --- /dev/null +++ b/testcase/fate-lavf-rgb48be.png.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170328-020478605 +# @用例名称: fate-lavf-rgb48be.png +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-rgb48be.png +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-rgb48be.png + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-rgb48be.png + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-rgb48le.dpx.sh b/testcase/fate-lavf-rgb48le.dpx.sh new file mode 100755 index 0000000000000000000000000000000000000000..7afa636f486486af688cf32cd45fb5a95babd00e --- /dev/null +++ b/testcase/fate-lavf-rgb48le.dpx.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170328-106213147 +# @用例名称: fate-lavf-rgb48le.dpx +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-rgb48le.dpx +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-rgb48le.dpx + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-rgb48le.dpx + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-rgb48le_10.dpx.sh b/testcase/fate-lavf-rgb48le_10.dpx.sh new file mode 100755 index 0000000000000000000000000000000000000000..098dfcee8cfbc7355d1c4371383f597a3058e05d --- /dev/null +++ b/testcase/fate-lavf-rgb48le_10.dpx.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170328-193587746 +# @用例名称: fate-lavf-rgb48le_10.dpx +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-rgb48le_10.dpx +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-rgb48le_10.dpx + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-rgb48le_10.dpx + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-rgb4_byte.xwd.sh b/testcase/fate-lavf-rgb4_byte.xwd.sh new file mode 100755 index 0000000000000000000000000000000000000000..ac95265f1a8f5671c925e96d98c196841a1eeb08 --- /dev/null +++ b/testcase/fate-lavf-rgb4_byte.xwd.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170328-278900296 +# @用例名称: fate-lavf-rgb4_byte.xwd +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-rgb4_byte.xwd +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-rgb4_byte.xwd + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-rgb4_byte.xwd + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-rgb555be.xwd.sh b/testcase/fate-lavf-rgb555be.xwd.sh new file mode 100755 index 0000000000000000000000000000000000000000..e14b7ef639f5c71d6e330c6ca26c0892368ded8f --- /dev/null +++ b/testcase/fate-lavf-rgb555be.xwd.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170328-364721626 +# @用例名称: fate-lavf-rgb555be.xwd +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-rgb555be.xwd +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-rgb555be.xwd + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-rgb555be.xwd + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-rgb565be.xwd.sh b/testcase/fate-lavf-rgb565be.xwd.sh new file mode 100755 index 0000000000000000000000000000000000000000..7f97aef3848e381f422b563d92180071b68316c5 --- /dev/null +++ b/testcase/fate-lavf-rgb565be.xwd.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170328-449553306 +# @用例名称: fate-lavf-rgb565be.xwd +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-rgb565be.xwd +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-rgb565be.xwd + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-rgb565be.xwd + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-rgb8.xwd.sh b/testcase/fate-lavf-rgb8.xwd.sh new file mode 100755 index 0000000000000000000000000000000000000000..76d3f226b30245a8399929439efff0510afb0ae7 --- /dev/null +++ b/testcase/fate-lavf-rgb8.xwd.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170328-534537072 +# @用例名称: fate-lavf-rgb8.xwd +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-rgb8.xwd +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-rgb8.xwd + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-rgb8.xwd + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-rgba.pam.sh b/testcase/fate-lavf-rgba.pam.sh new file mode 100755 index 0000000000000000000000000000000000000000..c58fa6904287af86b2ded2316e9b162462dfafb6 --- /dev/null +++ b/testcase/fate-lavf-rgba.pam.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170328-620676637 +# @用例名称: fate-lavf-rgba.pam +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-rgba.pam +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-rgba.pam + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-rgba.pam + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-rgba.xwd.sh b/testcase/fate-lavf-rgba.xwd.sh new file mode 100755 index 0000000000000000000000000000000000000000..3ae8969992472d46708284b7a0d53612216e1fab --- /dev/null +++ b/testcase/fate-lavf-rgba.xwd.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170328-708920869 +# @用例名称: fate-lavf-rgba.xwd +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-rgba.xwd +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-rgba.xwd + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-rgba.xwd + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-rgba64le.dpx.sh b/testcase/fate-lavf-rgba64le.dpx.sh new file mode 100755 index 0000000000000000000000000000000000000000..54472b22d72ac505233709759c1e860732d8b79a --- /dev/null +++ b/testcase/fate-lavf-rgba64le.dpx.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170328-794639040 +# @用例名称: fate-lavf-rgba64le.dpx +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-rgba64le.dpx +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-rgba64le.dpx + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-rgba64le.dpx + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-rle.gbrapf32le.exr.sh b/testcase/fate-lavf-rle.gbrapf32le.exr.sh new file mode 100755 index 0000000000000000000000000000000000000000..832dd676e08f373c7c58a08aeece6f67b54913b1 --- /dev/null +++ b/testcase/fate-lavf-rle.gbrapf32le.exr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170328-878597046 +# @用例名称: fate-lavf-rle.gbrapf32le.exr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-rle.gbrapf32le.exr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-rle.gbrapf32le.exr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-rle.gbrapf32le.exr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-rle.gbrpf32le.exr.sh b/testcase/fate-lavf-rle.gbrpf32le.exr.sh new file mode 100755 index 0000000000000000000000000000000000000000..ca8858f1a736742c365c56a5db5fb56e01b45d06 --- /dev/null +++ b/testcase/fate-lavf-rle.gbrpf32le.exr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170328-962513024 +# @用例名称: fate-lavf-rle.gbrpf32le.exr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-rle.gbrpf32le.exr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-rle.gbrpf32le.exr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-rle.gbrpf32le.exr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-rle.grayf32le.exr.sh b/testcase/fate-lavf-rle.grayf32le.exr.sh new file mode 100755 index 0000000000000000000000000000000000000000..a96a80b45982f6456d2a61442ea762a19796a29a --- /dev/null +++ b/testcase/fate-lavf-rle.grayf32le.exr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170329-048674708 +# @用例名称: fate-lavf-rle.grayf32le.exr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-rle.grayf32le.exr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-rle.grayf32le.exr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-rle.grayf32le.exr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-rm.sh b/testcase/fate-lavf-rm.sh new file mode 100755 index 0000000000000000000000000000000000000000..b6d6d1461dcb6239eeb4d5719675b2676e8e35ac --- /dev/null +++ b/testcase/fate-lavf-rm.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170329-134373309 +# @用例名称: fate-lavf-rm +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-rm +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-rm + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-rm + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-rso.sh b/testcase/fate-lavf-rso.sh new file mode 100755 index 0000000000000000000000000000000000000000..55ac92c11b1ad9e4f74d367df4b452673ffb5b22 --- /dev/null +++ b/testcase/fate-lavf-rso.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170329-217523393 +# @用例名称: fate-lavf-rso +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-rso +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-rso + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-rso + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-s16.voc.sh b/testcase/fate-lavf-s16.voc.sh new file mode 100755 index 0000000000000000000000000000000000000000..34adf090e8eccd9c1f8102b7f304fd8967a40a6e --- /dev/null +++ b/testcase/fate-lavf-s16.voc.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170329-301658925 +# @用例名称: fate-lavf-s16.voc +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-s16.voc +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-s16.voc + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-s16.voc + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-sgi.sh b/testcase/fate-lavf-sgi.sh new file mode 100755 index 0000000000000000000000000000000000000000..952b4a722ecccc48746ac4e7c81b99eb754a854a --- /dev/null +++ b/testcase/fate-lavf-sgi.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170329-385850317 +# @用例名称: fate-lavf-sgi +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-sgi +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-sgi + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-sgi + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-smjpeg.sh b/testcase/fate-lavf-smjpeg.sh new file mode 100755 index 0000000000000000000000000000000000000000..f46316b3ad2991b5b63eca306250e180126cb965 --- /dev/null +++ b/testcase/fate-lavf-smjpeg.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170329-470919212 +# @用例名称: fate-lavf-smjpeg +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-smjpeg +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-smjpeg + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-smjpeg + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-sox.sh b/testcase/fate-lavf-sox.sh new file mode 100755 index 0000000000000000000000000000000000000000..5d3dcb1ad2f9cf4741277c5b0f773518cfc4240e --- /dev/null +++ b/testcase/fate-lavf-sox.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170329-556004967 +# @用例名称: fate-lavf-sox +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-sox +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-sox + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-sox + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-sun.sh b/testcase/fate-lavf-sun.sh new file mode 100755 index 0000000000000000000000000000000000000000..0952b98ba9560e382b48827b4a02fcf90030047c --- /dev/null +++ b/testcase/fate-lavf-sun.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170329-642597472 +# @用例名称: fate-lavf-sun +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-sun +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-sun + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-sun + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-swf.sh b/testcase/fate-lavf-swf.sh new file mode 100755 index 0000000000000000000000000000000000000000..f1fe80c02fa78c3e4cffd049e8bbdbf22acf170e --- /dev/null +++ b/testcase/fate-lavf-swf.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170329-726474039 +# @用例名称: fate-lavf-swf +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-swf +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-swf + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-swf + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-tga.sh b/testcase/fate-lavf-tga.sh new file mode 100755 index 0000000000000000000000000000000000000000..e71d13984973c2d86af273e206daa1fb7f86399f --- /dev/null +++ b/testcase/fate-lavf-tga.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170329-814101234 +# @用例名称: fate-lavf-tga +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-tga +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-tga + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-tga + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-tiff.sh b/testcase/fate-lavf-tiff.sh new file mode 100755 index 0000000000000000000000000000000000000000..d9903899450b8a0bfd34a25eb53292386bb7f3ca --- /dev/null +++ b/testcase/fate-lavf-tiff.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170329-900746878 +# @用例名称: fate-lavf-tiff +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-tiff +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-tiff + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-tiff + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-ts.sh b/testcase/fate-lavf-ts.sh new file mode 100755 index 0000000000000000000000000000000000000000..507ae42bc116e9f16d113b7ef7779d488d77ce12 --- /dev/null +++ b/testcase/fate-lavf-ts.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170329-987151346 +# @用例名称: fate-lavf-ts +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-ts +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-ts + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-ts + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-tta.sh b/testcase/fate-lavf-tta.sh new file mode 100755 index 0000000000000000000000000000000000000000..353cc4b2e6af31184d5341eb7a7cff7dc6037f8c --- /dev/null +++ b/testcase/fate-lavf-tta.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170330-075065815 +# @用例名称: fate-lavf-tta +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-tta +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-tta + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-tta + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-ul.sh b/testcase/fate-lavf-ul.sh new file mode 100755 index 0000000000000000000000000000000000000000..ad935ca7208cece570dc04140a0070f7fbc55e08 --- /dev/null +++ b/testcase/fate-lavf-ul.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170330-162641691 +# @用例名称: fate-lavf-ul +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-ul +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-ul + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-ul + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-voc.sh b/testcase/fate-lavf-voc.sh new file mode 100755 index 0000000000000000000000000000000000000000..62fd9dff9f453cc8646abaeef4feed9d6a25f009 --- /dev/null +++ b/testcase/fate-lavf-voc.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170330-249997721 +# @用例名称: fate-lavf-voc +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-voc +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-voc + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-voc + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-w64.sh b/testcase/fate-lavf-w64.sh new file mode 100755 index 0000000000000000000000000000000000000000..e07402dff7a810a509f5717f480326c11159c9bf --- /dev/null +++ b/testcase/fate-lavf-w64.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170330-335467398 +# @用例名称: fate-lavf-w64 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-w64 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-w64 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-w64 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-wav.sh b/testcase/fate-lavf-wav.sh new file mode 100755 index 0000000000000000000000000000000000000000..8ce8c0da65a98fea51f0bd90f129d805d3ef146f --- /dev/null +++ b/testcase/fate-lavf-wav.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170330-422387875 +# @用例名称: fate-lavf-wav +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-wav +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-wav + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-wav + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-wbmp.sh b/testcase/fate-lavf-wbmp.sh new file mode 100755 index 0000000000000000000000000000000000000000..d10cf43d0d32425b0daa08b9c832b6e95dd2b2de --- /dev/null +++ b/testcase/fate-lavf-wbmp.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170330-508198316 +# @用例名称: fate-lavf-wbmp +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-wbmp +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-wbmp + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-wbmp + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-wtv.sh b/testcase/fate-lavf-wtv.sh new file mode 100755 index 0000000000000000000000000000000000000000..b65d725c67b10546ea7f4ad5659d6dee17b127e4 --- /dev/null +++ b/testcase/fate-lavf-wtv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170330-592661013 +# @用例名称: fate-lavf-wtv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-wtv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-wtv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-wtv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-wv.sh b/testcase/fate-lavf-wv.sh new file mode 100755 index 0000000000000000000000000000000000000000..16f62212797bfd0f40abe172684cfe8fd9631816 --- /dev/null +++ b/testcase/fate-lavf-wv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170330-676690738 +# @用例名称: fate-lavf-wv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-wv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-wv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-wv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-xbm.sh b/testcase/fate-lavf-xbm.sh new file mode 100755 index 0000000000000000000000000000000000000000..495aacb22b5020bbb1e018d8112655a1c21224d1 --- /dev/null +++ b/testcase/fate-lavf-xbm.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170330-761609225 +# @用例名称: fate-lavf-xbm +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-xbm +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-xbm + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-xbm + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-xbmpipe.sh b/testcase/fate-lavf-xbmpipe.sh new file mode 100755 index 0000000000000000000000000000000000000000..0a23b8b855749625c844b0ce61c28def632073c2 --- /dev/null +++ b/testcase/fate-lavf-xbmpipe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170330-847630102 +# @用例名称: fate-lavf-xbmpipe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-xbmpipe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-xbmpipe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-xbmpipe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-xwd.sh b/testcase/fate-lavf-xwd.sh new file mode 100755 index 0000000000000000000000000000000000000000..a2d83bf5f104a6f818ca342d65d82d5ebc38f52e --- /dev/null +++ b/testcase/fate-lavf-xwd.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170330-931743975 +# @用例名称: fate-lavf-xwd +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-xwd +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-xwd + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-xwd + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-xwdpipe.sh b/testcase/fate-lavf-xwdpipe.sh new file mode 100755 index 0000000000000000000000000000000000000000..0f1421d8d8585edef2a386c0f25d0c8c643f641a --- /dev/null +++ b/testcase/fate-lavf-xwdpipe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170331-017897679 +# @用例名称: fate-lavf-xwdpipe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-xwdpipe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-xwdpipe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-xwdpipe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-y4m.sh b/testcase/fate-lavf-y4m.sh new file mode 100755 index 0000000000000000000000000000000000000000..4d8b07796ae13e196753f6b8980ef4ddae489199 --- /dev/null +++ b/testcase/fate-lavf-y4m.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170331-105183420 +# @用例名称: fate-lavf-y4m +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-y4m +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-y4m + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-y4m + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-zip1.gbrapf32le.exr.sh b/testcase/fate-lavf-zip1.gbrapf32le.exr.sh new file mode 100755 index 0000000000000000000000000000000000000000..34f447dfbf5f50528b5ae908e58c1d61e5640de7 --- /dev/null +++ b/testcase/fate-lavf-zip1.gbrapf32le.exr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170331-191031649 +# @用例名称: fate-lavf-zip1.gbrapf32le.exr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-zip1.gbrapf32le.exr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-zip1.gbrapf32le.exr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-zip1.gbrapf32le.exr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-zip1.gbrpf32le.exr.sh b/testcase/fate-lavf-zip1.gbrpf32le.exr.sh new file mode 100755 index 0000000000000000000000000000000000000000..afdd5bb6742153edfe7ea113ecdfc03426a11c8f --- /dev/null +++ b/testcase/fate-lavf-zip1.gbrpf32le.exr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170331-277645724 +# @用例名称: fate-lavf-zip1.gbrpf32le.exr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-zip1.gbrpf32le.exr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-zip1.gbrpf32le.exr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-zip1.gbrpf32le.exr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-zip1.grayf32le.exr.sh b/testcase/fate-lavf-zip1.grayf32le.exr.sh new file mode 100755 index 0000000000000000000000000000000000000000..dc3c4b8b70c057b1eecb39b9a436307a69b305ad --- /dev/null +++ b/testcase/fate-lavf-zip1.grayf32le.exr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170331-363775447 +# @用例名称: fate-lavf-zip1.grayf32le.exr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-zip1.grayf32le.exr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-zip1.grayf32le.exr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-zip1.grayf32le.exr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-zip16.gbrapf32le.exr.sh b/testcase/fate-lavf-zip16.gbrapf32le.exr.sh new file mode 100755 index 0000000000000000000000000000000000000000..a5450b5fe0da2a09f409569071431a7709fdb070 --- /dev/null +++ b/testcase/fate-lavf-zip16.gbrapf32le.exr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170331-449851894 +# @用例名称: fate-lavf-zip16.gbrapf32le.exr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-zip16.gbrapf32le.exr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-zip16.gbrapf32le.exr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-zip16.gbrapf32le.exr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-zip16.gbrpf32le.exr.sh b/testcase/fate-lavf-zip16.gbrpf32le.exr.sh new file mode 100755 index 0000000000000000000000000000000000000000..4d37c65aab52cafc84d95d58c043ecdd49434607 --- /dev/null +++ b/testcase/fate-lavf-zip16.gbrpf32le.exr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170331-536618504 +# @用例名称: fate-lavf-zip16.gbrpf32le.exr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-zip16.gbrpf32le.exr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-zip16.gbrpf32le.exr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-zip16.gbrpf32le.exr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-lavf-zip16.grayf32le.exr.sh b/testcase/fate-lavf-zip16.grayf32le.exr.sh new file mode 100755 index 0000000000000000000000000000000000000000..58f6f6c9fc470eeec91f5f4e979b6d07f100e038 --- /dev/null +++ b/testcase/fate-lavf-zip16.grayf32le.exr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170331-622720039 +# @用例名称: fate-lavf-zip16.grayf32le.exr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-lavf-zip16.grayf32le.exr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-lavf-zip16.grayf32le.exr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-lavf-zip16.grayf32le.exr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-mov-channel-description.sh b/testcase/fate-mov-channel-description.sh new file mode 100755 index 0000000000000000000000000000000000000000..15fb530847b045278527048429b11654e07d9f06 --- /dev/null +++ b/testcase/fate-mov-channel-description.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170331-708921841 +# @用例名称: fate-mov-channel-description +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-mov-channel-description +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-mov-channel-description + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-mov-channel-description + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-mov-mp4-frag-flush.sh b/testcase/fate-mov-mp4-frag-flush.sh new file mode 100755 index 0000000000000000000000000000000000000000..1b41070baae2d78b53cda8f9061faa96e9bfd198 --- /dev/null +++ b/testcase/fate-mov-mp4-frag-flush.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170331-797608715 +# @用例名称: fate-mov-mp4-frag-flush +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-mov-mp4-frag-flush +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-mov-mp4-frag-flush + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-mov-mp4-frag-flush + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-mov-mp4-iamf-5_1_4.sh b/testcase/fate-mov-mp4-iamf-5_1_4.sh new file mode 100755 index 0000000000000000000000000000000000000000..2ce62ea7d4c669aae1b544f71ddfed5b9972ba7e --- /dev/null +++ b/testcase/fate-mov-mp4-iamf-5_1_4.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170331-883639082 +# @用例名称: fate-mov-mp4-iamf-5_1_4 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-mov-mp4-iamf-5_1_4 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-mov-mp4-iamf-5_1_4 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-mov-mp4-iamf-5_1_4 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-mov-mp4-iamf-7_1_4-video-first-2.sh b/testcase/fate-mov-mp4-iamf-7_1_4-video-first-2.sh new file mode 100755 index 0000000000000000000000000000000000000000..6d1c153bfc4d00276f64f641ce3d98ab9b4cafae --- /dev/null +++ b/testcase/fate-mov-mp4-iamf-7_1_4-video-first-2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170332-059197775 +# @用例名称: fate-mov-mp4-iamf-7_1_4-video-first-2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-mov-mp4-iamf-7_1_4-video-first-2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-mov-mp4-iamf-7_1_4-video-first-2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-mov-mp4-iamf-7_1_4-video-first-2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-mov-mp4-iamf-7_1_4-video-first-3.sh b/testcase/fate-mov-mp4-iamf-7_1_4-video-first-3.sh new file mode 100755 index 0000000000000000000000000000000000000000..c907793f400be82ce4b4dfb621256892b5f8c1fb --- /dev/null +++ b/testcase/fate-mov-mp4-iamf-7_1_4-video-first-3.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170332-146596483 +# @用例名称: fate-mov-mp4-iamf-7_1_4-video-first-3 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-mov-mp4-iamf-7_1_4-video-first-3 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-mov-mp4-iamf-7_1_4-video-first-3 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-mov-mp4-iamf-7_1_4-video-first-3 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-mov-mp4-iamf-7_1_4-video-first.sh b/testcase/fate-mov-mp4-iamf-7_1_4-video-first.sh new file mode 100755 index 0000000000000000000000000000000000000000..01f736fb5ee547bbe612376a2e444cfcb1dd7539 --- /dev/null +++ b/testcase/fate-mov-mp4-iamf-7_1_4-video-first.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170331-970604909 +# @用例名称: fate-mov-mp4-iamf-7_1_4-video-first +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-mov-mp4-iamf-7_1_4-video-first +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-mov-mp4-iamf-7_1_4-video-first + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-mov-mp4-iamf-7_1_4-video-first + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-mov-mp4-iamf-7_1_4-video-last.sh b/testcase/fate-mov-mp4-iamf-7_1_4-video-last.sh new file mode 100755 index 0000000000000000000000000000000000000000..8bea7822236e71ad0d11d261d1fafd516f4c0dee --- /dev/null +++ b/testcase/fate-mov-mp4-iamf-7_1_4-video-last.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170332-235831907 +# @用例名称: fate-mov-mp4-iamf-7_1_4-video-last +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-mov-mp4-iamf-7_1_4-video-last +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-mov-mp4-iamf-7_1_4-video-last + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-mov-mp4-iamf-7_1_4-video-last + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-mov-mp4-iamf-ambisonic_1.sh b/testcase/fate-mov-mp4-iamf-ambisonic_1.sh new file mode 100755 index 0000000000000000000000000000000000000000..b9a55328e7b67ac0a59de3b28f4186c70163477d --- /dev/null +++ b/testcase/fate-mov-mp4-iamf-ambisonic_1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170332-321377882 +# @用例名称: fate-mov-mp4-iamf-ambisonic_1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-mov-mp4-iamf-ambisonic_1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-mov-mp4-iamf-ambisonic_1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-mov-mp4-iamf-ambisonic_1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-mov-mp4-iamf-stereo.sh b/testcase/fate-mov-mp4-iamf-stereo.sh new file mode 100755 index 0000000000000000000000000000000000000000..8e7cb75c1a732f24bf23a2a5c20c479b7f603139 --- /dev/null +++ b/testcase/fate-mov-mp4-iamf-stereo.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170332-408461498 +# @用例名称: fate-mov-mp4-iamf-stereo +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-mov-mp4-iamf-stereo +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-mov-mp4-iamf-stereo + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-mov-mp4-iamf-stereo + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-mov-mp4-pcm-float.sh b/testcase/fate-mov-mp4-pcm-float.sh new file mode 100755 index 0000000000000000000000000000000000000000..e1b5390f6362c712dab61ba951ce27b6701880d0 --- /dev/null +++ b/testcase/fate-mov-mp4-pcm-float.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170332-579559278 +# @用例名称: fate-mov-mp4-pcm-float +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-mov-mp4-pcm-float +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-mov-mp4-pcm-float + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-mov-mp4-pcm-float + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-mov-mp4-pcm.sh b/testcase/fate-mov-mp4-pcm.sh new file mode 100755 index 0000000000000000000000000000000000000000..07ec003cfe46aaa776983fe47925aac747f365df --- /dev/null +++ b/testcase/fate-mov-mp4-pcm.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170332-493761348 +# @用例名称: fate-mov-mp4-pcm +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-mov-mp4-pcm +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-mov-mp4-pcm + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-mov-mp4-pcm + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-mov-vfr.sh b/testcase/fate-mov-vfr.sh new file mode 100755 index 0000000000000000000000000000000000000000..831e6b331b4fd24db9652e75e93a673bfd56adfd --- /dev/null +++ b/testcase/fate-mov-vfr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170332-666659113 +# @用例名称: fate-mov-vfr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-mov-vfr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-mov-vfr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-mov-vfr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pcm_dvd-16-1-96000.sh b/testcase/fate-pcm_dvd-16-1-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..a2d32b060906348357cfdeacdc5330283fb488b4 --- /dev/null +++ b/testcase/fate-pcm_dvd-16-1-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170332-752086550 +# @用例名称: fate-pcm_dvd-16-1-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pcm_dvd-16-1-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pcm_dvd-16-1-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pcm_dvd-16-1-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-bgr24.sh b/testcase/fate-pixfmt-bgr24.sh new file mode 100755 index 0000000000000000000000000000000000000000..053e233e9b09ec35928505bfe496a80c4794a656 --- /dev/null +++ b/testcase/fate-pixfmt-bgr24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170332-835269373 +# @用例名称: fate-pixfmt-bgr24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-bgr24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-bgr24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-bgr24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-bgr24.sh b/testcase/fate-pixfmt-gbrp-bgr24.sh new file mode 100755 index 0000000000000000000000000000000000000000..525b91f645fcd0b0bbae1cbcc4d08803cf431762 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-bgr24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170332-921780699 +# @用例名称: fate-pixfmt-gbrp-bgr24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-bgr24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-bgr24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-bgr24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-gbrp10be.sh b/testcase/fate-pixfmt-gbrp-gbrp10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..fd7dde52291376f188d5e9a66f8938f06a91f452 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-gbrp10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170333-007137339 +# @用例名称: fate-pixfmt-gbrp-gbrp10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gbrp10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gbrp10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-gbrp10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-gbrp10le.sh b/testcase/fate-pixfmt-gbrp-gbrp10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..d1ff306ec4e12f95a3272f9c9b40b1e7345ac53d --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-gbrp10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170333-092354260 +# @用例名称: fate-pixfmt-gbrp-gbrp10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gbrp10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gbrp10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-gbrp10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-gbrp12be.sh b/testcase/fate-pixfmt-gbrp-gbrp12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..2d355ecebc3122fe6c2f206c79390d87260445b2 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-gbrp12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170333-178529214 +# @用例名称: fate-pixfmt-gbrp-gbrp12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gbrp12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gbrp12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-gbrp12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-gbrp12le.sh b/testcase/fate-pixfmt-gbrp-gbrp12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..6bfd93a35bdcdfd023f31f76877c3722050b7567 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-gbrp12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170333-265537400 +# @用例名称: fate-pixfmt-gbrp-gbrp12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gbrp12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gbrp12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-gbrp12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-gbrp16be.sh b/testcase/fate-pixfmt-gbrp-gbrp16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..57d2c0d7b182edf4bcd883975d79f663184177e8 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-gbrp16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170333-351998578 +# @用例名称: fate-pixfmt-gbrp-gbrp16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gbrp16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gbrp16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-gbrp16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-gbrp16le.sh b/testcase/fate-pixfmt-gbrp-gbrp16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..7f355d5e3d853cc1dc98c2372175ec1515096bda --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-gbrp16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170333-438137901 +# @用例名称: fate-pixfmt-gbrp-gbrp16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gbrp16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gbrp16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-gbrp16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-gray.sh b/testcase/fate-pixfmt-gbrp-gray.sh new file mode 100755 index 0000000000000000000000000000000000000000..490a214984c640083fa31aa848a4d07ca6e3711b --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-gray.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170333-524392403 +# @用例名称: fate-pixfmt-gbrp-gray +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gray +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gray + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-gray + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-gray10be.sh b/testcase/fate-pixfmt-gbrp-gray10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..54a9cc093e7de1b45deff0d6293b66f77e5cc13e --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-gray10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170333-610960629 +# @用例名称: fate-pixfmt-gbrp-gray10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gray10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gray10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-gray10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-gray10le.sh b/testcase/fate-pixfmt-gbrp-gray10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..bc4cd1c0a0fb815d72271d954140a03f0faa9ff4 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-gray10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170333-696779588 +# @用例名称: fate-pixfmt-gbrp-gray10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gray10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gray10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-gray10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-gray12be.sh b/testcase/fate-pixfmt-gbrp-gray12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..235f3f754a8d9b7fde5530daf77f1096fe3d2573 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-gray12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170333-782620708 +# @用例名称: fate-pixfmt-gbrp-gray12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gray12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gray12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-gray12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-gray12le.sh b/testcase/fate-pixfmt-gbrp-gray12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..8869ed39afc183d36d642c313bb36926e95e1790 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-gray12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170333-869306171 +# @用例名称: fate-pixfmt-gbrp-gray12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gray12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gray12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-gray12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-gray16be.sh b/testcase/fate-pixfmt-gbrp-gray16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..33fa2a47424bfc184ff8f387f8e65863f4ac2aff --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-gray16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170333-957104962 +# @用例名称: fate-pixfmt-gbrp-gray16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gray16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gray16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-gray16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-gray16le.sh b/testcase/fate-pixfmt-gbrp-gray16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..9c0e448bced6e0f9d55d8d1329df05cf851734fa --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-gray16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170334-042428942 +# @用例名称: fate-pixfmt-gbrp-gray16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gray16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-gray16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-gray16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-monob.sh b/testcase/fate-pixfmt-gbrp-monob.sh new file mode 100755 index 0000000000000000000000000000000000000000..2cf11cfa6ade69b015dbc1f317c25912f568efea --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-monob.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170334-131102316 +# @用例名称: fate-pixfmt-gbrp-monob +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-monob +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-monob + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-monob + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-monow.sh b/testcase/fate-pixfmt-gbrp-monow.sh new file mode 100755 index 0000000000000000000000000000000000000000..8e3f8de5f11ab69a22c61f4c60c454a43f2e5ca8 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-monow.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170334-217453956 +# @用例名称: fate-pixfmt-gbrp-monow +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-monow +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-monow + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-monow + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-nv12.sh b/testcase/fate-pixfmt-gbrp-nv12.sh new file mode 100755 index 0000000000000000000000000000000000000000..49b9577f216eb3ac23bc2309754d89bda543db21 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-nv12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170334-303588649 +# @用例名称: fate-pixfmt-gbrp-nv12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-nv12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-nv12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-nv12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-nv16.sh b/testcase/fate-pixfmt-gbrp-nv16.sh new file mode 100755 index 0000000000000000000000000000000000000000..b378fe6d9fa3accf1e3124a99506c4ebf9c6d5c2 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-nv16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170334-389089556 +# @用例名称: fate-pixfmt-gbrp-nv16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-nv16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-nv16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-nv16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-nv24.sh b/testcase/fate-pixfmt-gbrp-nv24.sh new file mode 100755 index 0000000000000000000000000000000000000000..69568d235e4f4f8dda1c85d9dca5dfa1d4eb7367 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-nv24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170334-474976584 +# @用例名称: fate-pixfmt-gbrp-nv24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-nv24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-nv24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-nv24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-p010be.sh b/testcase/fate-pixfmt-gbrp-p010be.sh new file mode 100755 index 0000000000000000000000000000000000000000..14a45e2c2a249769f50964b70f8f8149e62a2c34 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-p010be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170334-563042690 +# @用例名称: fate-pixfmt-gbrp-p010be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p010be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p010be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-p010be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-p010le.sh b/testcase/fate-pixfmt-gbrp-p010le.sh new file mode 100755 index 0000000000000000000000000000000000000000..27a5104237c7f84686781543cf02e5371719b907 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-p010le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170334-649898990 +# @用例名称: fate-pixfmt-gbrp-p010le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p010le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p010le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-p010le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-p012be.sh b/testcase/fate-pixfmt-gbrp-p012be.sh new file mode 100755 index 0000000000000000000000000000000000000000..8639cd20e3a57d2bb665826fbbe209bcd9e05e03 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-p012be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170334-735562344 +# @用例名称: fate-pixfmt-gbrp-p012be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p012be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p012be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-p012be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-p012le.sh b/testcase/fate-pixfmt-gbrp-p012le.sh new file mode 100755 index 0000000000000000000000000000000000000000..adb34f79be07ed199637cb05d3e1a55a68e1d4c5 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-p012le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170334-824239847 +# @用例名称: fate-pixfmt-gbrp-p012le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p012le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p012le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-p012le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-p016be.sh b/testcase/fate-pixfmt-gbrp-p016be.sh new file mode 100755 index 0000000000000000000000000000000000000000..74a7e8ecdbac28850f7c4987b630b125586da170 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-p016be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170334-909583067 +# @用例名称: fate-pixfmt-gbrp-p016be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p016be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p016be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-p016be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-p016le.sh b/testcase/fate-pixfmt-gbrp-p016le.sh new file mode 100755 index 0000000000000000000000000000000000000000..80f90c4c385b0297c643ddc27912ce406a210549 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-p016le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170334-995648951 +# @用例名称: fate-pixfmt-gbrp-p016le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p016le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p016le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-p016le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-p210be.sh b/testcase/fate-pixfmt-gbrp-p210be.sh new file mode 100755 index 0000000000000000000000000000000000000000..e6d9bf810f5a76e068f2387aff09385a040ef922 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-p210be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170335-083391794 +# @用例名称: fate-pixfmt-gbrp-p210be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p210be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p210be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-p210be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-p210le.sh b/testcase/fate-pixfmt-gbrp-p210le.sh new file mode 100755 index 0000000000000000000000000000000000000000..4fcbbe65f23a6db966c7206edb33efaee2b20bc8 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-p210le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170335-169755584 +# @用例名称: fate-pixfmt-gbrp-p210le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p210le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p210le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-p210le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-p212be.sh b/testcase/fate-pixfmt-gbrp-p212be.sh new file mode 100755 index 0000000000000000000000000000000000000000..df69f7f4343b7e579894bdcc0c0531e11fb9e55d --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-p212be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170335-257664693 +# @用例名称: fate-pixfmt-gbrp-p212be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p212be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p212be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-p212be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-p212le.sh b/testcase/fate-pixfmt-gbrp-p212le.sh new file mode 100755 index 0000000000000000000000000000000000000000..ebb440e2e0a8486fe94e411bcccaf3f4d37ced7a --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-p212le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170335-342600901 +# @用例名称: fate-pixfmt-gbrp-p212le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p212le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p212le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-p212le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-p216be.sh b/testcase/fate-pixfmt-gbrp-p216be.sh new file mode 100755 index 0000000000000000000000000000000000000000..98ef316112c70bb0d46490dccb8687faa6f50331 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-p216be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170335-430167005 +# @用例名称: fate-pixfmt-gbrp-p216be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p216be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p216be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-p216be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-p216le.sh b/testcase/fate-pixfmt-gbrp-p216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..de0b498741f2841bb303d93100f9a52ad4e85fc2 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-p216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170335-519724242 +# @用例名称: fate-pixfmt-gbrp-p216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-p216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-p410be.sh b/testcase/fate-pixfmt-gbrp-p410be.sh new file mode 100755 index 0000000000000000000000000000000000000000..1a17029b80b24553cada9cd604edbd4499b45358 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-p410be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170335-603607770 +# @用例名称: fate-pixfmt-gbrp-p410be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p410be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p410be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-p410be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-p410le.sh b/testcase/fate-pixfmt-gbrp-p410le.sh new file mode 100755 index 0000000000000000000000000000000000000000..4ba367d4c4c3d13c2038ab11b8023b207ea853f5 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-p410le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170335-690935671 +# @用例名称: fate-pixfmt-gbrp-p410le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p410le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p410le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-p410le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-p412be.sh b/testcase/fate-pixfmt-gbrp-p412be.sh new file mode 100755 index 0000000000000000000000000000000000000000..6825166b579606395bdda2a9ad09099bfd927adf --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-p412be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170335-777138554 +# @用例名称: fate-pixfmt-gbrp-p412be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p412be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p412be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-p412be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-p412le.sh b/testcase/fate-pixfmt-gbrp-p412le.sh new file mode 100755 index 0000000000000000000000000000000000000000..9793128067191549bba19f2ea8c051328b2b2764 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-p412le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170335-863672719 +# @用例名称: fate-pixfmt-gbrp-p412le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p412le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p412le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-p412le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-p416be.sh b/testcase/fate-pixfmt-gbrp-p416be.sh new file mode 100755 index 0000000000000000000000000000000000000000..0e9757d12a932015a89c8a19806a43f9a1e7193f --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-p416be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170335-948871182 +# @用例名称: fate-pixfmt-gbrp-p416be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p416be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p416be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-p416be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-p416le.sh b/testcase/fate-pixfmt-gbrp-p416le.sh new file mode 100755 index 0000000000000000000000000000000000000000..632fd661c3f8436b3ee3f8b04fc37cdf300de911 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-p416le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170336-033676591 +# @用例名称: fate-pixfmt-gbrp-p416le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p416le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-p416le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-p416le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-rgb24.sh b/testcase/fate-pixfmt-gbrp-rgb24.sh new file mode 100755 index 0000000000000000000000000000000000000000..7d13e99ff32ee84b4c5bdcb84325c4b486d45f88 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-rgb24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170336-118064570 +# @用例名称: fate-pixfmt-gbrp-rgb24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-rgb24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-rgb24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-rgb24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-rgb32.sh b/testcase/fate-pixfmt-gbrp-rgb32.sh new file mode 100755 index 0000000000000000000000000000000000000000..8d6b38ff90b0bfd005c2d96686b5336196906b01 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-rgb32.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170336-204282092 +# @用例名称: fate-pixfmt-gbrp-rgb32 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-rgb32 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-rgb32 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-rgb32 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-rgb48.sh b/testcase/fate-pixfmt-gbrp-rgb48.sh new file mode 100755 index 0000000000000000000000000000000000000000..8fc69ab51142f5693b960527047609f284150647 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-rgb48.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170336-288933166 +# @用例名称: fate-pixfmt-gbrp-rgb48 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-rgb48 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-rgb48 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-rgb48 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-rgb555.sh b/testcase/fate-pixfmt-gbrp-rgb555.sh new file mode 100755 index 0000000000000000000000000000000000000000..0f6fd22f67a2f2dbecdaeefbaad2a73a2a78d871 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-rgb555.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170336-372974989 +# @用例名称: fate-pixfmt-gbrp-rgb555 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-rgb555 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-rgb555 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-rgb555 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-rgb565.sh b/testcase/fate-pixfmt-gbrp-rgb565.sh new file mode 100755 index 0000000000000000000000000000000000000000..f0f9946c7e0203122acedfbb373bd4e60332a8bd --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-rgb565.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170336-457965636 +# @用例名称: fate-pixfmt-gbrp-rgb565 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-rgb565 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-rgb565 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-rgb565 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-uyvy422.sh b/testcase/fate-pixfmt-gbrp-uyvy422.sh new file mode 100755 index 0000000000000000000000000000000000000000..2d1aebc7bf099df6c25144ae6cdd28def12fc3cd --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-uyvy422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170336-541537041 +# @用例名称: fate-pixfmt-gbrp-uyvy422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-uyvy422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-uyvy422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-uyvy422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-v30xle.sh b/testcase/fate-pixfmt-gbrp-v30xle.sh new file mode 100755 index 0000000000000000000000000000000000000000..6d6c7b9ef7587fae8493d7c6022bee5dd11df77d --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-v30xle.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170336-625740732 +# @用例名称: fate-pixfmt-gbrp-v30xle +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-v30xle +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-v30xle + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-v30xle + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-vuyx.sh b/testcase/fate-pixfmt-gbrp-vuyx.sh new file mode 100755 index 0000000000000000000000000000000000000000..f2f1e9b8c146e90469e7f1d0521e72a32d1811d9 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-vuyx.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170336-711816727 +# @用例名称: fate-pixfmt-gbrp-vuyx +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-vuyx +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-vuyx + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-vuyx + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-vyu444.sh b/testcase/fate-pixfmt-gbrp-vyu444.sh new file mode 100755 index 0000000000000000000000000000000000000000..59eae98b0cab4396f4c87710b16dcfc65c8d79dd --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-vyu444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170336-796424130 +# @用例名称: fate-pixfmt-gbrp-vyu444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-vyu444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-vyu444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-vyu444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-x2bgr10le.sh b/testcase/fate-pixfmt-gbrp-x2bgr10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..db4f563a62c614ec297d8718fc9a6e424f2b3fde --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-x2bgr10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170336-881894827 +# @用例名称: fate-pixfmt-gbrp-x2bgr10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-x2bgr10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-x2bgr10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-x2bgr10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-x2rgb10le.sh b/testcase/fate-pixfmt-gbrp-x2rgb10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..7ceb70c5b1bc1ba384469079783a5a4db74dfa4d --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-x2rgb10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170336-967674788 +# @用例名称: fate-pixfmt-gbrp-x2rgb10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-x2rgb10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-x2rgb10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-x2rgb10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-xv30le.sh b/testcase/fate-pixfmt-gbrp-xv30le.sh new file mode 100755 index 0000000000000000000000000000000000000000..ee92c7de9ff27f5c881e40c4ddd2630b263c7f07 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-xv30le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170337-053065197 +# @用例名称: fate-pixfmt-gbrp-xv30le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-xv30le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-xv30le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-xv30le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-xv36be.sh b/testcase/fate-pixfmt-gbrp-xv36be.sh new file mode 100755 index 0000000000000000000000000000000000000000..7c79ae481848fafd5b400583dc17fea5432871e7 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-xv36be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170337-138617032 +# @用例名称: fate-pixfmt-gbrp-xv36be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-xv36be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-xv36be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-xv36be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-xv36le.sh b/testcase/fate-pixfmt-gbrp-xv36le.sh new file mode 100755 index 0000000000000000000000000000000000000000..2eaef89508b89d953369a372f7b143f80bcd1d1a --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-xv36le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170337-222064248 +# @用例名称: fate-pixfmt-gbrp-xv36le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-xv36le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-xv36le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-xv36le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-xv48be.sh b/testcase/fate-pixfmt-gbrp-xv48be.sh new file mode 100755 index 0000000000000000000000000000000000000000..9709df5d6764d30b7299c004c817e375b489a254 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-xv48be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170337-307917718 +# @用例名称: fate-pixfmt-gbrp-xv48be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-xv48be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-xv48be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-xv48be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-xv48le.sh b/testcase/fate-pixfmt-gbrp-xv48le.sh new file mode 100755 index 0000000000000000000000000000000000000000..032283e953f910ee4f790e55aabfcfa0db0444ea --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-xv48le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170337-392360165 +# @用例名称: fate-pixfmt-gbrp-xv48le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-xv48le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-xv48le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-xv48le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-xyz12le.sh b/testcase/fate-pixfmt-gbrp-xyz12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..a21958baa5a2ac569347ae852517db7ca2385163 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-xyz12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170337-475693104 +# @用例名称: fate-pixfmt-gbrp-xyz12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-xyz12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-xyz12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-xyz12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-y210le.sh b/testcase/fate-pixfmt-gbrp-y210le.sh new file mode 100755 index 0000000000000000000000000000000000000000..8cd88571b0640d28532c49f1adb53e626a7f39b4 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-y210le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170337-560173940 +# @用例名称: fate-pixfmt-gbrp-y210le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-y210le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-y210le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-y210le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-y212le.sh b/testcase/fate-pixfmt-gbrp-y212le.sh new file mode 100755 index 0000000000000000000000000000000000000000..1091bea812f2a6ee0cbca03c7dccf71a4de2afb5 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-y212le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170337-643889451 +# @用例名称: fate-pixfmt-gbrp-y212le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-y212le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-y212le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-y212le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-y216le.sh b/testcase/fate-pixfmt-gbrp-y216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..84c105d9146aeebc8871a251bde72070e9966916 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-y216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170337-727278828 +# @用例名称: fate-pixfmt-gbrp-y216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-y216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-y216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-y216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv410p.sh b/testcase/fate-pixfmt-gbrp-yuv410p.sh new file mode 100755 index 0000000000000000000000000000000000000000..5bf3e721e8ae1766309e92c99ad11b2f4b3b3cb2 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv410p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170337-812909092 +# @用例名称: fate-pixfmt-gbrp-yuv410p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv410p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv410p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv410p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv411p.sh b/testcase/fate-pixfmt-gbrp-yuv411p.sh new file mode 100755 index 0000000000000000000000000000000000000000..6ec0d07eaa5d1f621e53320130f1e318e3c0f3ce --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv411p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170337-898805360 +# @用例名称: fate-pixfmt-gbrp-yuv411p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv411p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv411p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv411p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv420p.sh b/testcase/fate-pixfmt-gbrp-yuv420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..94b960701537d710c86217c551040c327e374cae --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170337-985136562 +# @用例名称: fate-pixfmt-gbrp-yuv420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv420p10be.sh b/testcase/fate-pixfmt-gbrp-yuv420p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..5325b5e0aca9858e978074ec563d5aa9b555ae5a --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv420p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170338-070419372 +# @用例名称: fate-pixfmt-gbrp-yuv420p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv420p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv420p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv420p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv420p10le.sh b/testcase/fate-pixfmt-gbrp-yuv420p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..461551b4cc630418328b2fd1ef1b0ccf4a91669c --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv420p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170338-158284141 +# @用例名称: fate-pixfmt-gbrp-yuv420p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv420p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv420p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv420p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv420p12be.sh b/testcase/fate-pixfmt-gbrp-yuv420p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..dc55b82287c096d57c94fee185872dc04a55f4ba --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv420p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170338-242732368 +# @用例名称: fate-pixfmt-gbrp-yuv420p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv420p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv420p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv420p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv420p12le.sh b/testcase/fate-pixfmt-gbrp-yuv420p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..daaa4c3cf86ff33b40b22b6a0c91a88228a23077 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv420p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170338-328403811 +# @用例名称: fate-pixfmt-gbrp-yuv420p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv420p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv420p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv420p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv420p16be.sh b/testcase/fate-pixfmt-gbrp-yuv420p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..04e2289b25e98d2628cc00f96a6d5c7219601fe6 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv420p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170338-412860857 +# @用例名称: fate-pixfmt-gbrp-yuv420p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv420p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv420p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv420p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv420p16le.sh b/testcase/fate-pixfmt-gbrp-yuv420p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..3ba3ae46f0a1dda940f62777c8fffd1c3dbe9c8d --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv420p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170338-498235807 +# @用例名称: fate-pixfmt-gbrp-yuv420p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv420p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv420p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv420p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv422p.sh b/testcase/fate-pixfmt-gbrp-yuv422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..e69b45db70f1eedc8c211d03bfa2bacc8e09f938 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170338-584689665 +# @用例名称: fate-pixfmt-gbrp-yuv422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv422p10be.sh b/testcase/fate-pixfmt-gbrp-yuv422p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..0e3decd36434f5099e64cd9860c26fb020f84c2c --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv422p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170338-668935605 +# @用例名称: fate-pixfmt-gbrp-yuv422p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv422p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv422p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv422p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv422p10le.sh b/testcase/fate-pixfmt-gbrp-yuv422p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..618f81319c80b146fddba6227bef24fee1549202 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv422p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170338-754670947 +# @用例名称: fate-pixfmt-gbrp-yuv422p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv422p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv422p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv422p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv422p12be.sh b/testcase/fate-pixfmt-gbrp-yuv422p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..aa5bbeca23f9f287c6e7ada047b857f4d7c1cf95 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv422p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170338-841475687 +# @用例名称: fate-pixfmt-gbrp-yuv422p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv422p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv422p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv422p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv422p12le.sh b/testcase/fate-pixfmt-gbrp-yuv422p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..1a12cc90cd19840ef3589e340f5162ff1124e674 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv422p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170338-929181110 +# @用例名称: fate-pixfmt-gbrp-yuv422p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv422p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv422p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv422p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv422p16be.sh b/testcase/fate-pixfmt-gbrp-yuv422p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..d7dca28614a71d6a46bd61a4620dca40e4b24757 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv422p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170339-015184847 +# @用例名称: fate-pixfmt-gbrp-yuv422p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv422p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv422p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv422p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv422p16le.sh b/testcase/fate-pixfmt-gbrp-yuv422p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..36e0e171d45fdc749069bcb20ad940ca3b263739 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv422p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170339-099049535 +# @用例名称: fate-pixfmt-gbrp-yuv422p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv422p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv422p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv422p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv440p.sh b/testcase/fate-pixfmt-gbrp-yuv440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..b434171959beac261e2b2b50a7183c91165f0099 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170339-182967902 +# @用例名称: fate-pixfmt-gbrp-yuv440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv440p10be.sh b/testcase/fate-pixfmt-gbrp-yuv440p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..eed990101935bc6b4400d69d7f0ccfa08c171131 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv440p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170339-266845260 +# @用例名称: fate-pixfmt-gbrp-yuv440p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv440p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv440p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv440p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv440p10le.sh b/testcase/fate-pixfmt-gbrp-yuv440p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..0025443b7e2adbe6bd3f8051907b16e100ffcfbe --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv440p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170339-350036843 +# @用例名称: fate-pixfmt-gbrp-yuv440p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv440p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv440p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv440p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv440p12be.sh b/testcase/fate-pixfmt-gbrp-yuv440p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..fc1f993157701bf057b23f5c9256c8072cd50e68 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv440p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170339-433811272 +# @用例名称: fate-pixfmt-gbrp-yuv440p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv440p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv440p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv440p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv440p12le.sh b/testcase/fate-pixfmt-gbrp-yuv440p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..8c1c014955db8a24bb6ac57c2da3df73d57ed9f9 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv440p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170339-519244131 +# @用例名称: fate-pixfmt-gbrp-yuv440p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv440p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv440p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv440p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv444p.sh b/testcase/fate-pixfmt-gbrp-yuv444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..ef23e5e42e431f384bf6e2aabca36855734043ca --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170339-604087359 +# @用例名称: fate-pixfmt-gbrp-yuv444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv444p10be.sh b/testcase/fate-pixfmt-gbrp-yuv444p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..c18ac683d5290b9b6089dbf9c79fe2725f7af264 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv444p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170339-692092047 +# @用例名称: fate-pixfmt-gbrp-yuv444p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv444p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv444p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv444p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv444p10le.sh b/testcase/fate-pixfmt-gbrp-yuv444p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..4077159df0ca17c6a0bbd26d7d6f1ab12ab34f67 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv444p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170339-779341408 +# @用例名称: fate-pixfmt-gbrp-yuv444p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv444p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv444p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv444p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv444p10msbbe.sh b/testcase/fate-pixfmt-gbrp-yuv444p10msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..68b64930742381d3f05a0f51b0b000a40b86ddcc --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv444p10msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170339-865787495 +# @用例名称: fate-pixfmt-gbrp-yuv444p10msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv444p10msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv444p10msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv444p10msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv444p10msble.sh b/testcase/fate-pixfmt-gbrp-yuv444p10msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..70f1ea6461511399b0758bda5b32e77ba626cc23 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv444p10msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170339-954138436 +# @用例名称: fate-pixfmt-gbrp-yuv444p10msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv444p10msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv444p10msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv444p10msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv444p12be.sh b/testcase/fate-pixfmt-gbrp-yuv444p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..33443cb43f9fac86adba3d645d89733177bf4f48 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv444p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170340-042469088 +# @用例名称: fate-pixfmt-gbrp-yuv444p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv444p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv444p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv444p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv444p12le.sh b/testcase/fate-pixfmt-gbrp-yuv444p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..ad31e78e0264bc77a8f40eb92daf8ea58c1b58ac --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv444p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170340-128853877 +# @用例名称: fate-pixfmt-gbrp-yuv444p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv444p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv444p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv444p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv444p12msbbe.sh b/testcase/fate-pixfmt-gbrp-yuv444p12msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..bb5d5772197bd9374031f093d12aafc352852ca5 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv444p12msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170340-215496810 +# @用例名称: fate-pixfmt-gbrp-yuv444p12msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv444p12msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv444p12msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv444p12msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv444p12msble.sh b/testcase/fate-pixfmt-gbrp-yuv444p12msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..6b0ee132ce263fee8777811316e465dcf7b6f5a1 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv444p12msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170340-303996248 +# @用例名称: fate-pixfmt-gbrp-yuv444p12msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv444p12msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv444p12msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv444p12msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv444p16be.sh b/testcase/fate-pixfmt-gbrp-yuv444p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..0bcbdf4a0b0ec56621591123504b0acec94b1f59 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv444p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170340-392794000 +# @用例名称: fate-pixfmt-gbrp-yuv444p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv444p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv444p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv444p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuv444p16le.sh b/testcase/fate-pixfmt-gbrp-yuv444p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..a9089df71b4718572c4cfe533397f5f4c3bfc5f4 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuv444p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170340-481078511 +# @用例名称: fate-pixfmt-gbrp-yuv444p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv444p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuv444p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuv444p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuvj420p.sh b/testcase/fate-pixfmt-gbrp-yuvj420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..7bacb0ce5ba43ee38d656dba185ff0607697cd49 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuvj420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170340-567776575 +# @用例名称: fate-pixfmt-gbrp-yuvj420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuvj420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuvj420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuvj420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuvj422p.sh b/testcase/fate-pixfmt-gbrp-yuvj422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..0b00af2d9ce513acea89cca4854002ad0c143887 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuvj422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170340-655589255 +# @用例名称: fate-pixfmt-gbrp-yuvj422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuvj422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuvj422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuvj422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuvj440p.sh b/testcase/fate-pixfmt-gbrp-yuvj440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..cdafc9763b203ddfcf3dc368085f91a2800f0dda --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuvj440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170340-742832487 +# @用例名称: fate-pixfmt-gbrp-yuvj440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuvj440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuvj440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuvj440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuvj444p.sh b/testcase/fate-pixfmt-gbrp-yuvj444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..16d4500556d2b0f2740058916c5f124900d167b2 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuvj444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170340-828476031 +# @用例名称: fate-pixfmt-gbrp-yuvj444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuvj444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuvj444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuvj444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yuyv422.sh b/testcase/fate-pixfmt-gbrp-yuyv422.sh new file mode 100755 index 0000000000000000000000000000000000000000..7dfaa7ff73eead7ef364ad8b7d936c78897ce22b --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yuyv422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170340-913276590 +# @用例名称: fate-pixfmt-gbrp-yuyv422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuyv422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yuyv422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yuyv422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp-yvyu422.sh b/testcase/fate-pixfmt-gbrp-yvyu422.sh new file mode 100755 index 0000000000000000000000000000000000000000..860add118d39a9c5f903043e128b01e9bdfd389b --- /dev/null +++ b/testcase/fate-pixfmt-gbrp-yvyu422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170340-997189279 +# @用例名称: fate-pixfmt-gbrp-yvyu422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yvyu422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp-yvyu422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp-yvyu422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-bgr24.sh b/testcase/fate-pixfmt-gbrp10-bgr24.sh new file mode 100755 index 0000000000000000000000000000000000000000..9545810fd086f9a94cbc8f22fbca7f931d32d77b --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-bgr24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170341-080822261 +# @用例名称: fate-pixfmt-gbrp10-bgr24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-bgr24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-bgr24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-bgr24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-gbrp10be.sh b/testcase/fate-pixfmt-gbrp10-gbrp10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..4d8fcdfbfae05817fc341aac0bd2d37ac82887fc --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-gbrp10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170341-168405547 +# @用例名称: fate-pixfmt-gbrp10-gbrp10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gbrp10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gbrp10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-gbrp10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-gbrp10le.sh b/testcase/fate-pixfmt-gbrp10-gbrp10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..c8d2f5a7b7f68f113ce79e180216c09518fa0a98 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-gbrp10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170341-250562388 +# @用例名称: fate-pixfmt-gbrp10-gbrp10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gbrp10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gbrp10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-gbrp10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-gbrp12be.sh b/testcase/fate-pixfmt-gbrp10-gbrp12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..0bde61ed8944f2d57b1aadb2b995f6253a9f6544 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-gbrp12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170341-334359728 +# @用例名称: fate-pixfmt-gbrp10-gbrp12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gbrp12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gbrp12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-gbrp12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-gbrp12le.sh b/testcase/fate-pixfmt-gbrp10-gbrp12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..bf91a01555bd4de6ab5d7cf5a59f79d61795f426 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-gbrp12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170341-422744497 +# @用例名称: fate-pixfmt-gbrp10-gbrp12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gbrp12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gbrp12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-gbrp12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-gbrp16be.sh b/testcase/fate-pixfmt-gbrp10-gbrp16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..2b69457579b14cc18610b434164ba8baf6f5a3ca --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-gbrp16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170341-512026229 +# @用例名称: fate-pixfmt-gbrp10-gbrp16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gbrp16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gbrp16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-gbrp16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-gbrp16le.sh b/testcase/fate-pixfmt-gbrp10-gbrp16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..f451262f29c628168a87c143f5c4ca46ce25fbbc --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-gbrp16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170341-599837891 +# @用例名称: fate-pixfmt-gbrp10-gbrp16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gbrp16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gbrp16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-gbrp16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-gray.sh b/testcase/fate-pixfmt-gbrp10-gray.sh new file mode 100755 index 0000000000000000000000000000000000000000..03cd56e8f5f715a5d49052a792c6728cb4c11c74 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-gray.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170341-687599193 +# @用例名称: fate-pixfmt-gbrp10-gray +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gray +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gray + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-gray + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-gray10be.sh b/testcase/fate-pixfmt-gbrp10-gray10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..32f1c5d8562fb6d63e811a2a153dab3765f01993 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-gray10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170341-775248177 +# @用例名称: fate-pixfmt-gbrp10-gray10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gray10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gray10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-gray10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-gray10le.sh b/testcase/fate-pixfmt-gbrp10-gray10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..2d7ee1a67d7afea439e778055f8cf4ff259bbb6f --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-gray10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170341-860468319 +# @用例名称: fate-pixfmt-gbrp10-gray10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gray10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gray10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-gray10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-gray12be.sh b/testcase/fate-pixfmt-gbrp10-gray12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..6ffa2ead5466c8deb2f4f8061a07f9a5ac7f8ca4 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-gray12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170341-943457934 +# @用例名称: fate-pixfmt-gbrp10-gray12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gray12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gray12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-gray12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-gray12le.sh b/testcase/fate-pixfmt-gbrp10-gray12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..07305a2487cdace5c5e8594d03422764cea51adc --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-gray12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170342-029664147 +# @用例名称: fate-pixfmt-gbrp10-gray12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gray12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gray12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-gray12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-gray16be.sh b/testcase/fate-pixfmt-gbrp10-gray16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..0e2bccee0ec5e5157fe76d8a1d5212163da0007f --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-gray16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170342-114881978 +# @用例名称: fate-pixfmt-gbrp10-gray16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gray16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gray16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-gray16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-gray16le.sh b/testcase/fate-pixfmt-gbrp10-gray16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..29ad861720360597ccce40f2ff6daf6d9af6083f --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-gray16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170342-199123579 +# @用例名称: fate-pixfmt-gbrp10-gray16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gray16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-gray16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-gray16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-monob.sh b/testcase/fate-pixfmt-gbrp10-monob.sh new file mode 100755 index 0000000000000000000000000000000000000000..732d9003af0dd51cf0be8c052239192dcf3702f1 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-monob.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170342-284735444 +# @用例名称: fate-pixfmt-gbrp10-monob +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-monob +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-monob + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-monob + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-monow.sh b/testcase/fate-pixfmt-gbrp10-monow.sh new file mode 100755 index 0000000000000000000000000000000000000000..b16b0f376ac9ea42af01826be90c7537c38626e2 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-monow.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170342-369337078 +# @用例名称: fate-pixfmt-gbrp10-monow +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-monow +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-monow + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-monow + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-nv12.sh b/testcase/fate-pixfmt-gbrp10-nv12.sh new file mode 100755 index 0000000000000000000000000000000000000000..25a82b389e1085e5108d1ac8a53bfa343f20476a --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-nv12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170342-454035810 +# @用例名称: fate-pixfmt-gbrp10-nv12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-nv12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-nv12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-nv12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-nv16.sh b/testcase/fate-pixfmt-gbrp10-nv16.sh new file mode 100755 index 0000000000000000000000000000000000000000..f91f6ac81447f559abd8a7b2ea3dac34cced56d6 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-nv16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170342-541873909 +# @用例名称: fate-pixfmt-gbrp10-nv16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-nv16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-nv16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-nv16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-nv24.sh b/testcase/fate-pixfmt-gbrp10-nv24.sh new file mode 100755 index 0000000000000000000000000000000000000000..a17816a7c3b32e6ce1506dbaa84f90168edff050 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-nv24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170342-627749319 +# @用例名称: fate-pixfmt-gbrp10-nv24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-nv24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-nv24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-nv24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-p010be.sh b/testcase/fate-pixfmt-gbrp10-p010be.sh new file mode 100755 index 0000000000000000000000000000000000000000..1d54f6ef461b6263581337e1f8c120037a80c6f7 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-p010be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170342-715628529 +# @用例名称: fate-pixfmt-gbrp10-p010be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p010be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p010be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-p010be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-p010le.sh b/testcase/fate-pixfmt-gbrp10-p010le.sh new file mode 100755 index 0000000000000000000000000000000000000000..3b157dc6ef6537e530cf6672d64f870213534f4e --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-p010le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170342-803960689 +# @用例名称: fate-pixfmt-gbrp10-p010le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p010le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p010le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-p010le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-p012be.sh b/testcase/fate-pixfmt-gbrp10-p012be.sh new file mode 100755 index 0000000000000000000000000000000000000000..54d8920ec14835ff5f5abe6373dce5ca59ee9c33 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-p012be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170342-892586635 +# @用例名称: fate-pixfmt-gbrp10-p012be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p012be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p012be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-p012be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-p012le.sh b/testcase/fate-pixfmt-gbrp10-p012le.sh new file mode 100755 index 0000000000000000000000000000000000000000..eb81b117b709e8c921560e3d0cca8c19574daa5a --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-p012le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170342-977552032 +# @用例名称: fate-pixfmt-gbrp10-p012le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p012le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p012le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-p012le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-p016be.sh b/testcase/fate-pixfmt-gbrp10-p016be.sh new file mode 100755 index 0000000000000000000000000000000000000000..f4856c0a92080a42900424c6418e39fea5b314e6 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-p016be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170343-065120647 +# @用例名称: fate-pixfmt-gbrp10-p016be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p016be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p016be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-p016be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-p016le.sh b/testcase/fate-pixfmt-gbrp10-p016le.sh new file mode 100755 index 0000000000000000000000000000000000000000..66a4838bcd2fce7a318770749d0ab55f4b6c39a3 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-p016le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170343-155219004 +# @用例名称: fate-pixfmt-gbrp10-p016le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p016le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p016le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-p016le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-p210be.sh b/testcase/fate-pixfmt-gbrp10-p210be.sh new file mode 100755 index 0000000000000000000000000000000000000000..f9288db216d3d5ebca6f75eff3e34d6e70cea5c5 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-p210be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170343-242011455 +# @用例名称: fate-pixfmt-gbrp10-p210be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p210be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p210be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-p210be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-p210le.sh b/testcase/fate-pixfmt-gbrp10-p210le.sh new file mode 100755 index 0000000000000000000000000000000000000000..c40198d823c64db3b1b136330d26ba06dfe2f1f6 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-p210le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170343-329601110 +# @用例名称: fate-pixfmt-gbrp10-p210le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p210le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p210le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-p210le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-p212be.sh b/testcase/fate-pixfmt-gbrp10-p212be.sh new file mode 100755 index 0000000000000000000000000000000000000000..6fbaa31679b21534954bbe2f4fc61973ee9daa3b --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-p212be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170343-412400319 +# @用例名称: fate-pixfmt-gbrp10-p212be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p212be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p212be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-p212be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-p212le.sh b/testcase/fate-pixfmt-gbrp10-p212le.sh new file mode 100755 index 0000000000000000000000000000000000000000..97b179eea8132565d4f6889af609e3aee13d893a --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-p212le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170343-497363296 +# @用例名称: fate-pixfmt-gbrp10-p212le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p212le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p212le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-p212le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-p216be.sh b/testcase/fate-pixfmt-gbrp10-p216be.sh new file mode 100755 index 0000000000000000000000000000000000000000..3c793f8e7831ed14b45662ccf3ad1a6256e84ad6 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-p216be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170343-584694736 +# @用例名称: fate-pixfmt-gbrp10-p216be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p216be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p216be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-p216be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-p216le.sh b/testcase/fate-pixfmt-gbrp10-p216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..c00512eb389b2659c3c47c9d4c15c422ad965774 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-p216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170343-672788062 +# @用例名称: fate-pixfmt-gbrp10-p216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-p216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-p410be.sh b/testcase/fate-pixfmt-gbrp10-p410be.sh new file mode 100755 index 0000000000000000000000000000000000000000..c7957a76482b724b1735ad04a9858652310fa8d2 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-p410be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170343-760899067 +# @用例名称: fate-pixfmt-gbrp10-p410be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p410be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p410be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-p410be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-p410le.sh b/testcase/fate-pixfmt-gbrp10-p410le.sh new file mode 100755 index 0000000000000000000000000000000000000000..ce8aa626a1fc58ae22ddeed1a900474e4eba0b23 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-p410le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170343-843371512 +# @用例名称: fate-pixfmt-gbrp10-p410le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p410le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p410le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-p410le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-p412be.sh b/testcase/fate-pixfmt-gbrp10-p412be.sh new file mode 100755 index 0000000000000000000000000000000000000000..310d901aadd1864a2b55dd592446f15649f569f7 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-p412be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170343-929098673 +# @用例名称: fate-pixfmt-gbrp10-p412be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p412be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p412be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-p412be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-p412le.sh b/testcase/fate-pixfmt-gbrp10-p412le.sh new file mode 100755 index 0000000000000000000000000000000000000000..57811b2057ead777f636621eae5570c5818d242e --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-p412le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170344-022359739 +# @用例名称: fate-pixfmt-gbrp10-p412le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p412le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p412le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-p412le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-p416be.sh b/testcase/fate-pixfmt-gbrp10-p416be.sh new file mode 100755 index 0000000000000000000000000000000000000000..8d28ccd63a07b935b8df870a6d56cde1a6e42313 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-p416be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170344-115757171 +# @用例名称: fate-pixfmt-gbrp10-p416be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p416be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p416be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-p416be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-p416le.sh b/testcase/fate-pixfmt-gbrp10-p416le.sh new file mode 100755 index 0000000000000000000000000000000000000000..7fea56a7a39dacf129927638b34e07a5d9becaae --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-p416le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170344-205681681 +# @用例名称: fate-pixfmt-gbrp10-p416le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p416le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-p416le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-p416le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-rgb24.sh b/testcase/fate-pixfmt-gbrp10-rgb24.sh new file mode 100755 index 0000000000000000000000000000000000000000..92dcb2c1d11ba69ca8b6867b689c6df7d1e99209 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-rgb24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170344-296106100 +# @用例名称: fate-pixfmt-gbrp10-rgb24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-rgb24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-rgb24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-rgb24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-rgb32.sh b/testcase/fate-pixfmt-gbrp10-rgb32.sh new file mode 100755 index 0000000000000000000000000000000000000000..494c21ef3b14be20efe49d563486df5944572046 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-rgb32.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170344-387487512 +# @用例名称: fate-pixfmt-gbrp10-rgb32 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-rgb32 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-rgb32 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-rgb32 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-rgb48.sh b/testcase/fate-pixfmt-gbrp10-rgb48.sh new file mode 100755 index 0000000000000000000000000000000000000000..b83ed468d88e4baa25aa3b1bbcba61838ebbc5b9 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-rgb48.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170344-477519399 +# @用例名称: fate-pixfmt-gbrp10-rgb48 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-rgb48 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-rgb48 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-rgb48 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-rgb555.sh b/testcase/fate-pixfmt-gbrp10-rgb555.sh new file mode 100755 index 0000000000000000000000000000000000000000..d84f1831e9dd6a21f126c5c09990f576d5b10f95 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-rgb555.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170344-570436140 +# @用例名称: fate-pixfmt-gbrp10-rgb555 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-rgb555 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-rgb555 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-rgb555 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-rgb565.sh b/testcase/fate-pixfmt-gbrp10-rgb565.sh new file mode 100755 index 0000000000000000000000000000000000000000..554f28917c969dbba759667a52c111aee7aafa9f --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-rgb565.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170344-658718422 +# @用例名称: fate-pixfmt-gbrp10-rgb565 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-rgb565 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-rgb565 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-rgb565 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-uyvy422.sh b/testcase/fate-pixfmt-gbrp10-uyvy422.sh new file mode 100755 index 0000000000000000000000000000000000000000..a6688769aaee0ce0d4308cf19343d476089e687d --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-uyvy422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170344-749146511 +# @用例名称: fate-pixfmt-gbrp10-uyvy422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-uyvy422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-uyvy422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-uyvy422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-v30xle.sh b/testcase/fate-pixfmt-gbrp10-v30xle.sh new file mode 100755 index 0000000000000000000000000000000000000000..49100f178ebf4d9cfd995edba8ecd06f73087733 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-v30xle.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170344-839644479 +# @用例名称: fate-pixfmt-gbrp10-v30xle +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-v30xle +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-v30xle + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-v30xle + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-vuyx.sh b/testcase/fate-pixfmt-gbrp10-vuyx.sh new file mode 100755 index 0000000000000000000000000000000000000000..b5d00a2c231153ede94dde412d72b2cb1aa0f58f --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-vuyx.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170344-926313543 +# @用例名称: fate-pixfmt-gbrp10-vuyx +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-vuyx +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-vuyx + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-vuyx + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-vyu444.sh b/testcase/fate-pixfmt-gbrp10-vyu444.sh new file mode 100755 index 0000000000000000000000000000000000000000..5cf216b4305fc6f40dc2624b5528fdd9d2cddf04 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-vyu444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170345-012319789 +# @用例名称: fate-pixfmt-gbrp10-vyu444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-vyu444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-vyu444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-vyu444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-x2bgr10le.sh b/testcase/fate-pixfmt-gbrp10-x2bgr10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..808be250ab6644fa54872fd0d8c2aa23daf6962a --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-x2bgr10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170345-095402033 +# @用例名称: fate-pixfmt-gbrp10-x2bgr10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-x2bgr10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-x2bgr10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-x2bgr10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-x2rgb10le.sh b/testcase/fate-pixfmt-gbrp10-x2rgb10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..8d8a8d8102c85924948e38652647c2a7d0a35c03 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-x2rgb10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170345-185131747 +# @用例名称: fate-pixfmt-gbrp10-x2rgb10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-x2rgb10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-x2rgb10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-x2rgb10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-xv30le.sh b/testcase/fate-pixfmt-gbrp10-xv30le.sh new file mode 100755 index 0000000000000000000000000000000000000000..59ef7d0f1ee8ad9469bf57fdc0b0da85b56cd879 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-xv30le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170345-271782910 +# @用例名称: fate-pixfmt-gbrp10-xv30le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-xv30le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-xv30le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-xv30le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-xv36be.sh b/testcase/fate-pixfmt-gbrp10-xv36be.sh new file mode 100755 index 0000000000000000000000000000000000000000..b777b27a411868feff7eed283b6055b5b4f2a07f --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-xv36be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170345-354569070 +# @用例名称: fate-pixfmt-gbrp10-xv36be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-xv36be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-xv36be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-xv36be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-xv36le.sh b/testcase/fate-pixfmt-gbrp10-xv36le.sh new file mode 100755 index 0000000000000000000000000000000000000000..3b32f11066f5d85e52d6e3cb8e386bf440dd6b10 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-xv36le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170345-433908668 +# @用例名称: fate-pixfmt-gbrp10-xv36le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-xv36le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-xv36le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-xv36le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-xv48be.sh b/testcase/fate-pixfmt-gbrp10-xv48be.sh new file mode 100755 index 0000000000000000000000000000000000000000..4fb4f8ad3e4a59147273468c6d08c77d3dbf80e5 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-xv48be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170345-520593740 +# @用例名称: fate-pixfmt-gbrp10-xv48be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-xv48be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-xv48be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-xv48be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-xv48le.sh b/testcase/fate-pixfmt-gbrp10-xv48le.sh new file mode 100755 index 0000000000000000000000000000000000000000..64e08d34ad98d10e4cf8b425ff3a4dd5fd500775 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-xv48le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170345-607370021 +# @用例名称: fate-pixfmt-gbrp10-xv48le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-xv48le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-xv48le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-xv48le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-xyz12le.sh b/testcase/fate-pixfmt-gbrp10-xyz12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..7cb96b4c185120413014b881f17669afa544cb95 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-xyz12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170345-696977958 +# @用例名称: fate-pixfmt-gbrp10-xyz12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-xyz12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-xyz12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-xyz12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-y210le.sh b/testcase/fate-pixfmt-gbrp10-y210le.sh new file mode 100755 index 0000000000000000000000000000000000000000..233f8d68a201db13869716f389df4876a1c53303 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-y210le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170345-785024204 +# @用例名称: fate-pixfmt-gbrp10-y210le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-y210le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-y210le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-y210le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-y212le.sh b/testcase/fate-pixfmt-gbrp10-y212le.sh new file mode 100755 index 0000000000000000000000000000000000000000..81b4b0b77c3e2202be19637a7ae27e7bb8fc71ce --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-y212le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170345-872113018 +# @用例名称: fate-pixfmt-gbrp10-y212le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-y212le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-y212le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-y212le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-y216le.sh b/testcase/fate-pixfmt-gbrp10-y216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..bbca1552c3bb6bce94f8d5317940378e68520f25 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-y216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170345-956807201 +# @用例名称: fate-pixfmt-gbrp10-y216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-y216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-y216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-y216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv410p.sh b/testcase/fate-pixfmt-gbrp10-yuv410p.sh new file mode 100755 index 0000000000000000000000000000000000000000..16c937b14ca8c5411f44e5d666ddd35b672d909e --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv410p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170346-036642218 +# @用例名称: fate-pixfmt-gbrp10-yuv410p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv410p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv410p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv410p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv411p.sh b/testcase/fate-pixfmt-gbrp10-yuv411p.sh new file mode 100755 index 0000000000000000000000000000000000000000..fd8ad9f9eb6a5b4b7c3af9798f3946da7ab3d8fe --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv411p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170346-125111596 +# @用例名称: fate-pixfmt-gbrp10-yuv411p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv411p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv411p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv411p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv420p.sh b/testcase/fate-pixfmt-gbrp10-yuv420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..97a205c1a92704b0ec28dbeb7d085c5f320a599d --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170346-209468695 +# @用例名称: fate-pixfmt-gbrp10-yuv420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv420p10be.sh b/testcase/fate-pixfmt-gbrp10-yuv420p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..9fafd517764d4aa1367ab1bd97f10400ef4543c0 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv420p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170346-301442664 +# @用例名称: fate-pixfmt-gbrp10-yuv420p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv420p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv420p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv420p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv420p10le.sh b/testcase/fate-pixfmt-gbrp10-yuv420p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..faa07a224793c87bdfed3f4efde86483e46d71f7 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv420p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170346-392004731 +# @用例名称: fate-pixfmt-gbrp10-yuv420p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv420p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv420p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv420p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv420p12be.sh b/testcase/fate-pixfmt-gbrp10-yuv420p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..a33b97b86a913ba152b368066dbc417061597f7f --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv420p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170346-479071247 +# @用例名称: fate-pixfmt-gbrp10-yuv420p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv420p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv420p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv420p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv420p12le.sh b/testcase/fate-pixfmt-gbrp10-yuv420p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..2fb9af4cf589915d41d3caceb5112d83ed165483 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv420p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170346-566761051 +# @用例名称: fate-pixfmt-gbrp10-yuv420p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv420p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv420p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv420p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv420p16be.sh b/testcase/fate-pixfmt-gbrp10-yuv420p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..fa6d98e02a37305015a0a7977055fcdaca4e39ee --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv420p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170346-657794229 +# @用例名称: fate-pixfmt-gbrp10-yuv420p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv420p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv420p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv420p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv420p16le.sh b/testcase/fate-pixfmt-gbrp10-yuv420p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..c7299b3728118954ba40ff9c4604f52246d708a0 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv420p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170346-748464504 +# @用例名称: fate-pixfmt-gbrp10-yuv420p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv420p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv420p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv420p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv422p.sh b/testcase/fate-pixfmt-gbrp10-yuv422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..74c6b92359037cb78f25935e62092da84b139028 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170346-839423223 +# @用例名称: fate-pixfmt-gbrp10-yuv422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv422p10be.sh b/testcase/fate-pixfmt-gbrp10-yuv422p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..8d6bdc5a7707f31b4de36868d6513e466ed1edae --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv422p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170346-923937239 +# @用例名称: fate-pixfmt-gbrp10-yuv422p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv422p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv422p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv422p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv422p10le.sh b/testcase/fate-pixfmt-gbrp10-yuv422p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..e146cce65975a73c3dd8ec9fc8f3f225b78147d8 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv422p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170347-008800247 +# @用例名称: fate-pixfmt-gbrp10-yuv422p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv422p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv422p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv422p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv422p12be.sh b/testcase/fate-pixfmt-gbrp10-yuv422p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..05074412a548d8419448b53fc726a02e18146640 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv422p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170347-091978129 +# @用例名称: fate-pixfmt-gbrp10-yuv422p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv422p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv422p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv422p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv422p12le.sh b/testcase/fate-pixfmt-gbrp10-yuv422p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..2433da558539cf709ee6b4c1794ab3e752e55e01 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv422p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170347-183407049 +# @用例名称: fate-pixfmt-gbrp10-yuv422p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv422p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv422p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv422p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv422p16be.sh b/testcase/fate-pixfmt-gbrp10-yuv422p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..dd486a75466a6059ca1271668479ba3ae146a20d --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv422p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170347-276558516 +# @用例名称: fate-pixfmt-gbrp10-yuv422p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv422p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv422p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv422p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv422p16le.sh b/testcase/fate-pixfmt-gbrp10-yuv422p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..fa25b6abad637be12d99e33255edee92dfa03c48 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv422p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170347-367954816 +# @用例名称: fate-pixfmt-gbrp10-yuv422p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv422p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv422p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv422p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv440p.sh b/testcase/fate-pixfmt-gbrp10-yuv440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..68d6f05ee135707ebfbaa689f33ff21a4b6a1815 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170347-459911847 +# @用例名称: fate-pixfmt-gbrp10-yuv440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv440p10be.sh b/testcase/fate-pixfmt-gbrp10-yuv440p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..1c19087b83ea1f7dbbeab0607fc36bd646b471cf --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv440p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170347-550631321 +# @用例名称: fate-pixfmt-gbrp10-yuv440p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv440p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv440p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv440p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv440p10le.sh b/testcase/fate-pixfmt-gbrp10-yuv440p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..af3893bff55042bc14901260816f9d00adb0cdc8 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv440p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170347-642334745 +# @用例名称: fate-pixfmt-gbrp10-yuv440p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv440p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv440p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv440p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv440p12be.sh b/testcase/fate-pixfmt-gbrp10-yuv440p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..c5c40696232cf051c532bb15aea282128ad86788 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv440p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170347-734447442 +# @用例名称: fate-pixfmt-gbrp10-yuv440p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv440p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv440p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv440p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv440p12le.sh b/testcase/fate-pixfmt-gbrp10-yuv440p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..6e143341c273f79e3906b5dd4e91acedad2a7836 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv440p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170347-827755006 +# @用例名称: fate-pixfmt-gbrp10-yuv440p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv440p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv440p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv440p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv444p.sh b/testcase/fate-pixfmt-gbrp10-yuv444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..a6bdf4746bfdba2d4f89781cd220bc31841bdf8e --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170347-919149697 +# @用例名称: fate-pixfmt-gbrp10-yuv444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv444p10be.sh b/testcase/fate-pixfmt-gbrp10-yuv444p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..acb3e8935557d07e3db0f668bc9eb911f6c22cb7 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv444p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170348-013800144 +# @用例名称: fate-pixfmt-gbrp10-yuv444p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv444p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv444p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv444p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv444p10le.sh b/testcase/fate-pixfmt-gbrp10-yuv444p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..538b9398cd2ee8443275da9a0890ce6a78d4f5dc --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv444p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170348-105726015 +# @用例名称: fate-pixfmt-gbrp10-yuv444p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv444p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv444p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv444p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv444p10msbbe.sh b/testcase/fate-pixfmt-gbrp10-yuv444p10msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..850dedadde8cc29b097d7b1304d6a65f785a672c --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv444p10msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170348-195726263 +# @用例名称: fate-pixfmt-gbrp10-yuv444p10msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv444p10msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv444p10msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv444p10msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv444p10msble.sh b/testcase/fate-pixfmt-gbrp10-yuv444p10msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..ad8273ffc46894f5795c32532417393561f9de5b --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv444p10msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170348-281377416 +# @用例名称: fate-pixfmt-gbrp10-yuv444p10msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv444p10msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv444p10msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv444p10msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv444p12be.sh b/testcase/fate-pixfmt-gbrp10-yuv444p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..24a28393dfdaebe6b87c68f2f7bf19a7c766a84f --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv444p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170348-361320781 +# @用例名称: fate-pixfmt-gbrp10-yuv444p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv444p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv444p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv444p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv444p12le.sh b/testcase/fate-pixfmt-gbrp10-yuv444p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..791bfd46ec0445891dade5125e9c230cefa5b44d --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv444p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170348-443699418 +# @用例名称: fate-pixfmt-gbrp10-yuv444p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv444p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv444p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv444p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv444p12msbbe.sh b/testcase/fate-pixfmt-gbrp10-yuv444p12msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..15e9095b8a97cfe5fa07f9a52679db286fcb5f5c --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv444p12msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170348-534561940 +# @用例名称: fate-pixfmt-gbrp10-yuv444p12msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv444p12msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv444p12msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv444p12msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv444p12msble.sh b/testcase/fate-pixfmt-gbrp10-yuv444p12msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..cd65371423ea6e4e6f3464565625a23cf4cf2d23 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv444p12msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170348-622918560 +# @用例名称: fate-pixfmt-gbrp10-yuv444p12msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv444p12msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv444p12msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv444p12msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv444p16be.sh b/testcase/fate-pixfmt-gbrp10-yuv444p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..d642ab817bc9a77dc54880436855d0b718848231 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv444p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170348-709199891 +# @用例名称: fate-pixfmt-gbrp10-yuv444p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv444p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv444p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv444p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuv444p16le.sh b/testcase/fate-pixfmt-gbrp10-yuv444p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..4cac056be54bc1dac2a71e60f5546a21211c9d1d --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuv444p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170348-799633031 +# @用例名称: fate-pixfmt-gbrp10-yuv444p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv444p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuv444p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuv444p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuvj420p.sh b/testcase/fate-pixfmt-gbrp10-yuvj420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..b4794490d841f5c8e7de931130572910e9b5798c --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuvj420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170348-891767797 +# @用例名称: fate-pixfmt-gbrp10-yuvj420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuvj420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuvj420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuvj420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuvj422p.sh b/testcase/fate-pixfmt-gbrp10-yuvj422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..55d4366f10784b1ff7883470dcbb52ae1c129bb6 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuvj422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170348-979246195 +# @用例名称: fate-pixfmt-gbrp10-yuvj422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuvj422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuvj422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuvj422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuvj440p.sh b/testcase/fate-pixfmt-gbrp10-yuvj440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..9104b9c46b13938fa26fd734c306c56b6807ea1e --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuvj440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170349-067126145 +# @用例名称: fate-pixfmt-gbrp10-yuvj440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuvj440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuvj440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuvj440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuvj444p.sh b/testcase/fate-pixfmt-gbrp10-yuvj444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..0053fc2d90c65bdf25c591adf37abf407c187473 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuvj444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170349-153724549 +# @用例名称: fate-pixfmt-gbrp10-yuvj444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuvj444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuvj444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuvj444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yuyv422.sh b/testcase/fate-pixfmt-gbrp10-yuyv422.sh new file mode 100755 index 0000000000000000000000000000000000000000..0153ee6f833a3197aff0029631a3d962a604177a --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yuyv422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170349-241841734 +# @用例名称: fate-pixfmt-gbrp10-yuyv422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuyv422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yuyv422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yuyv422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp10-yvyu422.sh b/testcase/fate-pixfmt-gbrp10-yvyu422.sh new file mode 100755 index 0000000000000000000000000000000000000000..e95052964e522e19a53e291d8a86822b97c65e64 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp10-yvyu422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170349-334666727 +# @用例名称: fate-pixfmt-gbrp10-yvyu422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yvyu422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp10-yvyu422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp10-yvyu422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-bgr24.sh b/testcase/fate-pixfmt-gbrp12-bgr24.sh new file mode 100755 index 0000000000000000000000000000000000000000..a047d8fe191f9dddbbe25d7e9445578cdc92b80d --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-bgr24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170349-425395092 +# @用例名称: fate-pixfmt-gbrp12-bgr24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-bgr24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-bgr24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-bgr24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-gbrp10be.sh b/testcase/fate-pixfmt-gbrp12-gbrp10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..6e050db67b60b183e5268898fe3574f2ec5c4da1 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-gbrp10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170349-518319402 +# @用例名称: fate-pixfmt-gbrp12-gbrp10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gbrp10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gbrp10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-gbrp10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-gbrp10le.sh b/testcase/fate-pixfmt-gbrp12-gbrp10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..7ee3fa778c11139982912d420e7a759b24a5ae39 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-gbrp10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170349-610362840 +# @用例名称: fate-pixfmt-gbrp12-gbrp10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gbrp10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gbrp10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-gbrp10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-gbrp12be.sh b/testcase/fate-pixfmt-gbrp12-gbrp12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..faafceb62b760d89c4be64c0d9ead7256d624dc4 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-gbrp12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170349-698127722 +# @用例名称: fate-pixfmt-gbrp12-gbrp12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gbrp12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gbrp12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-gbrp12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-gbrp12le.sh b/testcase/fate-pixfmt-gbrp12-gbrp12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..6a67c7d94178520a2daae32b05cb796d7224ea89 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-gbrp12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170349-781082018 +# @用例名称: fate-pixfmt-gbrp12-gbrp12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gbrp12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gbrp12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-gbrp12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-gbrp16be.sh b/testcase/fate-pixfmt-gbrp12-gbrp16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..9f4a5749822e6ef40bc5985212a9b0ab502608d5 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-gbrp16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170349-873476760 +# @用例名称: fate-pixfmt-gbrp12-gbrp16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gbrp16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gbrp16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-gbrp16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-gbrp16le.sh b/testcase/fate-pixfmt-gbrp12-gbrp16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..577c945ac956a80ccf097189f447ba5b37d86c20 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-gbrp16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170349-963028527 +# @用例名称: fate-pixfmt-gbrp12-gbrp16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gbrp16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gbrp16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-gbrp16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-gray.sh b/testcase/fate-pixfmt-gbrp12-gray.sh new file mode 100755 index 0000000000000000000000000000000000000000..3d531e9d095f4c020b5b3b041c777cc392f02f5d --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-gray.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170350-049448044 +# @用例名称: fate-pixfmt-gbrp12-gray +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gray +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gray + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-gray + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-gray10be.sh b/testcase/fate-pixfmt-gbrp12-gray10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..8734609d8799ef5a3ed18a11ed8b65a2c7a9fe6b --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-gray10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170350-135215376 +# @用例名称: fate-pixfmt-gbrp12-gray10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gray10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gray10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-gray10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-gray10le.sh b/testcase/fate-pixfmt-gbrp12-gray10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..09108d84288ca9b4ce7be2fed97f0d1351b610aa --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-gray10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170350-223297752 +# @用例名称: fate-pixfmt-gbrp12-gray10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gray10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gray10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-gray10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-gray12be.sh b/testcase/fate-pixfmt-gbrp12-gray12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..c8dff4d6526451cfaa30c8430b7c6bfdac8b9f10 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-gray12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170350-309817238 +# @用例名称: fate-pixfmt-gbrp12-gray12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gray12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gray12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-gray12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-gray12le.sh b/testcase/fate-pixfmt-gbrp12-gray12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..c69e24da80765b6db84f9f583ac80d524adcfaa9 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-gray12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170350-400036932 +# @用例名称: fate-pixfmt-gbrp12-gray12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gray12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gray12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-gray12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-gray16be.sh b/testcase/fate-pixfmt-gbrp12-gray16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..c6174dcf558219f9c727e560c1c1248132b5ee6d --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-gray16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170350-488277794 +# @用例名称: fate-pixfmt-gbrp12-gray16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gray16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gray16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-gray16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-gray16le.sh b/testcase/fate-pixfmt-gbrp12-gray16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..92aee869be03f6e23457725084b64d10af49268b --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-gray16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170350-581096468 +# @用例名称: fate-pixfmt-gbrp12-gray16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gray16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-gray16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-gray16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-monob.sh b/testcase/fate-pixfmt-gbrp12-monob.sh new file mode 100755 index 0000000000000000000000000000000000000000..a0330d3e44ae91b0ef8bad22757ce3fa6f1a4888 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-monob.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170350-674918521 +# @用例名称: fate-pixfmt-gbrp12-monob +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-monob +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-monob + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-monob + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-monow.sh b/testcase/fate-pixfmt-gbrp12-monow.sh new file mode 100755 index 0000000000000000000000000000000000000000..aa319f00623eb4d553e5747d156113310deea7e3 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-monow.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170350-765425719 +# @用例名称: fate-pixfmt-gbrp12-monow +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-monow +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-monow + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-monow + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-nv12.sh b/testcase/fate-pixfmt-gbrp12-nv12.sh new file mode 100755 index 0000000000000000000000000000000000000000..94d16af7908ad71e6decffee5fab18437bf2c7af --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-nv12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170350-858656314 +# @用例名称: fate-pixfmt-gbrp12-nv12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-nv12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-nv12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-nv12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-nv16.sh b/testcase/fate-pixfmt-gbrp12-nv16.sh new file mode 100755 index 0000000000000000000000000000000000000000..a63b2c4870526b62565203a8ac291e6b7e9a1baf --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-nv16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170350-949429658 +# @用例名称: fate-pixfmt-gbrp12-nv16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-nv16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-nv16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-nv16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-nv24.sh b/testcase/fate-pixfmt-gbrp12-nv24.sh new file mode 100755 index 0000000000000000000000000000000000000000..d3ec0116dc7babe08a97dbb794aa8feb9aa27132 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-nv24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170351-038317408 +# @用例名称: fate-pixfmt-gbrp12-nv24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-nv24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-nv24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-nv24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-p010be.sh b/testcase/fate-pixfmt-gbrp12-p010be.sh new file mode 100755 index 0000000000000000000000000000000000000000..f3af4daaed4399648cd59ef7d2ed816653ba8f2f --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-p010be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170351-128780037 +# @用例名称: fate-pixfmt-gbrp12-p010be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p010be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p010be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-p010be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-p010le.sh b/testcase/fate-pixfmt-gbrp12-p010le.sh new file mode 100755 index 0000000000000000000000000000000000000000..0fd075bbb78fbb83b020351a25e127817db14d57 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-p010le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170351-218692056 +# @用例名称: fate-pixfmt-gbrp12-p010le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p010le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p010le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-p010le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-p012be.sh b/testcase/fate-pixfmt-gbrp12-p012be.sh new file mode 100755 index 0000000000000000000000000000000000000000..73643aee8580e0f64046aa6bd596848943f3f86b --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-p012be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170351-312508850 +# @用例名称: fate-pixfmt-gbrp12-p012be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p012be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p012be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-p012be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-p012le.sh b/testcase/fate-pixfmt-gbrp12-p012le.sh new file mode 100755 index 0000000000000000000000000000000000000000..00de8b507e7096df5717a7aad9ee38deec1d529f --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-p012le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170351-405638256 +# @用例名称: fate-pixfmt-gbrp12-p012le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p012le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p012le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-p012le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-p016be.sh b/testcase/fate-pixfmt-gbrp12-p016be.sh new file mode 100755 index 0000000000000000000000000000000000000000..59a22001b55546f15e17fa0f7f037d9a2259b152 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-p016be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170351-498191455 +# @用例名称: fate-pixfmt-gbrp12-p016be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p016be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p016be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-p016be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-p016le.sh b/testcase/fate-pixfmt-gbrp12-p016le.sh new file mode 100755 index 0000000000000000000000000000000000000000..ce52d761a69574e5b519c7cdeda93cf2e415524a --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-p016le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170351-592561037 +# @用例名称: fate-pixfmt-gbrp12-p016le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p016le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p016le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-p016le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-p210be.sh b/testcase/fate-pixfmt-gbrp12-p210be.sh new file mode 100755 index 0000000000000000000000000000000000000000..9332fa98bf60cf53069b3d4f98e747ade56ee5c2 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-p210be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170351-686377751 +# @用例名称: fate-pixfmt-gbrp12-p210be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p210be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p210be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-p210be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-p210le.sh b/testcase/fate-pixfmt-gbrp12-p210le.sh new file mode 100755 index 0000000000000000000000000000000000000000..d0c2cd43651fa6a92cb3be18ddc39441c4d548a5 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-p210le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170351-778147814 +# @用例名称: fate-pixfmt-gbrp12-p210le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p210le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p210le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-p210le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-p212be.sh b/testcase/fate-pixfmt-gbrp12-p212be.sh new file mode 100755 index 0000000000000000000000000000000000000000..a7809eacfa560c0ca57b8447f75abba1b2b36a12 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-p212be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170351-865532234 +# @用例名称: fate-pixfmt-gbrp12-p212be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p212be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p212be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-p212be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-p212le.sh b/testcase/fate-pixfmt-gbrp12-p212le.sh new file mode 100755 index 0000000000000000000000000000000000000000..fc87145f21daa1a4484d7adbc9ba90e99063fc52 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-p212le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170351-958339967 +# @用例名称: fate-pixfmt-gbrp12-p212le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p212le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p212le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-p212le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-p216be.sh b/testcase/fate-pixfmt-gbrp12-p216be.sh new file mode 100755 index 0000000000000000000000000000000000000000..c0be78e8ece1b8c46ff9717fdc5090b77039f116 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-p216be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170352-050574291 +# @用例名称: fate-pixfmt-gbrp12-p216be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p216be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p216be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-p216be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-p216le.sh b/testcase/fate-pixfmt-gbrp12-p216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..3fc6dbb6e6e6c04863966fb8cc7530c47f5bead8 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-p216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170352-142164999 +# @用例名称: fate-pixfmt-gbrp12-p216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-p216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-p410be.sh b/testcase/fate-pixfmt-gbrp12-p410be.sh new file mode 100755 index 0000000000000000000000000000000000000000..276e2025fd6b016bc10aef5dbcd049c7612cad82 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-p410be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170352-234465702 +# @用例名称: fate-pixfmt-gbrp12-p410be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p410be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p410be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-p410be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-p410le.sh b/testcase/fate-pixfmt-gbrp12-p410le.sh new file mode 100755 index 0000000000000000000000000000000000000000..e79ad74dbdc50523ad400d24c03bb4d141c3e1ed --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-p410le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170352-322568577 +# @用例名称: fate-pixfmt-gbrp12-p410le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p410le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p410le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-p410le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-p412be.sh b/testcase/fate-pixfmt-gbrp12-p412be.sh new file mode 100755 index 0000000000000000000000000000000000000000..97b969e6dbde29352537c859644dac52c22ae3bc --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-p412be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170352-418188815 +# @用例名称: fate-pixfmt-gbrp12-p412be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p412be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p412be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-p412be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-p412le.sh b/testcase/fate-pixfmt-gbrp12-p412le.sh new file mode 100755 index 0000000000000000000000000000000000000000..91f86a43c7319ec930ffc62eeeea23f143af7a1e --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-p412le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170352-513202475 +# @用例名称: fate-pixfmt-gbrp12-p412le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p412le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p412le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-p412le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-p416be.sh b/testcase/fate-pixfmt-gbrp12-p416be.sh new file mode 100755 index 0000000000000000000000000000000000000000..856d0e5809559f099c3f28d18a725e63441105ae --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-p416be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170352-606359832 +# @用例名称: fate-pixfmt-gbrp12-p416be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p416be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p416be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-p416be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-p416le.sh b/testcase/fate-pixfmt-gbrp12-p416le.sh new file mode 100755 index 0000000000000000000000000000000000000000..a1b2100d6c9d8180f481edf031d3db8f10cbaaff --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-p416le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170352-697099335 +# @用例名称: fate-pixfmt-gbrp12-p416le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p416le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-p416le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-p416le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-rgb24.sh b/testcase/fate-pixfmt-gbrp12-rgb24.sh new file mode 100755 index 0000000000000000000000000000000000000000..5f3ae680fdbbb194c3e1d9589e141dcd5a698953 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-rgb24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170352-792126655 +# @用例名称: fate-pixfmt-gbrp12-rgb24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-rgb24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-rgb24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-rgb24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-rgb32.sh b/testcase/fate-pixfmt-gbrp12-rgb32.sh new file mode 100755 index 0000000000000000000000000000000000000000..c1c220d187e104c523d425f21b32bfecd8462cf2 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-rgb32.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170352-881282930 +# @用例名称: fate-pixfmt-gbrp12-rgb32 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-rgb32 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-rgb32 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-rgb32 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-rgb48.sh b/testcase/fate-pixfmt-gbrp12-rgb48.sh new file mode 100755 index 0000000000000000000000000000000000000000..3969ee8dee06b1dcfb406576cd6908480d2a5130 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-rgb48.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170352-963138947 +# @用例名称: fate-pixfmt-gbrp12-rgb48 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-rgb48 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-rgb48 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-rgb48 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-rgb555.sh b/testcase/fate-pixfmt-gbrp12-rgb555.sh new file mode 100755 index 0000000000000000000000000000000000000000..2c43112f7a1191eef24f94ddeed831cf848e1688 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-rgb555.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170353-051253363 +# @用例名称: fate-pixfmt-gbrp12-rgb555 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-rgb555 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-rgb555 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-rgb555 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-rgb565.sh b/testcase/fate-pixfmt-gbrp12-rgb565.sh new file mode 100755 index 0000000000000000000000000000000000000000..0644660ffe6c62438b4dcc03ca5f0c5369e9baa5 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-rgb565.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170353-141401878 +# @用例名称: fate-pixfmt-gbrp12-rgb565 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-rgb565 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-rgb565 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-rgb565 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-uyvy422.sh b/testcase/fate-pixfmt-gbrp12-uyvy422.sh new file mode 100755 index 0000000000000000000000000000000000000000..4b0c29e5a3b9038e2701b9f625cad24762ccb2c5 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-uyvy422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170353-227418333 +# @用例名称: fate-pixfmt-gbrp12-uyvy422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-uyvy422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-uyvy422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-uyvy422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-v30xle.sh b/testcase/fate-pixfmt-gbrp12-v30xle.sh new file mode 100755 index 0000000000000000000000000000000000000000..71496e26e6a539cf45ca1387f64102e805bcf060 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-v30xle.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170353-314572519 +# @用例名称: fate-pixfmt-gbrp12-v30xle +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-v30xle +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-v30xle + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-v30xle + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-vuyx.sh b/testcase/fate-pixfmt-gbrp12-vuyx.sh new file mode 100755 index 0000000000000000000000000000000000000000..ad066bf2c09445ed6ffa4b4866348723cb99a1da --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-vuyx.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170353-407170495 +# @用例名称: fate-pixfmt-gbrp12-vuyx +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-vuyx +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-vuyx + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-vuyx + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-vyu444.sh b/testcase/fate-pixfmt-gbrp12-vyu444.sh new file mode 100755 index 0000000000000000000000000000000000000000..9910d88c21de127b1a147961c61d30a8287b19bc --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-vyu444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170353-496773621 +# @用例名称: fate-pixfmt-gbrp12-vyu444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-vyu444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-vyu444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-vyu444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-x2bgr10le.sh b/testcase/fate-pixfmt-gbrp12-x2bgr10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..509a9866ee04b5d6b29032c3c0a7e9434af1ec97 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-x2bgr10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170353-585088943 +# @用例名称: fate-pixfmt-gbrp12-x2bgr10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-x2bgr10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-x2bgr10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-x2bgr10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-x2rgb10le.sh b/testcase/fate-pixfmt-gbrp12-x2rgb10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..912a242cba33903522ffbf016a24c0b815770968 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-x2rgb10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170353-667988040 +# @用例名称: fate-pixfmt-gbrp12-x2rgb10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-x2rgb10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-x2rgb10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-x2rgb10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-xv30le.sh b/testcase/fate-pixfmt-gbrp12-xv30le.sh new file mode 100755 index 0000000000000000000000000000000000000000..b16ce32e14ecc629d89c0cc3cf711e67fcb89cd8 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-xv30le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170353-758360431 +# @用例名称: fate-pixfmt-gbrp12-xv30le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-xv30le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-xv30le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-xv30le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-xv36be.sh b/testcase/fate-pixfmt-gbrp12-xv36be.sh new file mode 100755 index 0000000000000000000000000000000000000000..fde0797dd41a863d8aaabfa469a515b714f7cbc2 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-xv36be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170353-850250362 +# @用例名称: fate-pixfmt-gbrp12-xv36be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-xv36be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-xv36be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-xv36be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-xv36le.sh b/testcase/fate-pixfmt-gbrp12-xv36le.sh new file mode 100755 index 0000000000000000000000000000000000000000..6222908bc3353224b8181181edfff5f4ff07ec48 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-xv36le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170353-942006916 +# @用例名称: fate-pixfmt-gbrp12-xv36le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-xv36le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-xv36le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-xv36le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-xv48be.sh b/testcase/fate-pixfmt-gbrp12-xv48be.sh new file mode 100755 index 0000000000000000000000000000000000000000..90cc457b0974be48f4c32b0516264989825e976a --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-xv48be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170354-034984336 +# @用例名称: fate-pixfmt-gbrp12-xv48be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-xv48be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-xv48be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-xv48be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-xv48le.sh b/testcase/fate-pixfmt-gbrp12-xv48le.sh new file mode 100755 index 0000000000000000000000000000000000000000..5ee16de58b3574bb7bce9512aad10bcc1042fe02 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-xv48le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170354-130500996 +# @用例名称: fate-pixfmt-gbrp12-xv48le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-xv48le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-xv48le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-xv48le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-xyz12le.sh b/testcase/fate-pixfmt-gbrp12-xyz12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..fcdb5b2d8b40c68cf8b35155d3c45aed606f4280 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-xyz12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170354-222388847 +# @用例名称: fate-pixfmt-gbrp12-xyz12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-xyz12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-xyz12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-xyz12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-y210le.sh b/testcase/fate-pixfmt-gbrp12-y210le.sh new file mode 100755 index 0000000000000000000000000000000000000000..f4199e1bfb4ecfa32012338f8c029841e189f40b --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-y210le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170354-312072082 +# @用例名称: fate-pixfmt-gbrp12-y210le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-y210le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-y210le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-y210le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-y212le.sh b/testcase/fate-pixfmt-gbrp12-y212le.sh new file mode 100755 index 0000000000000000000000000000000000000000..be837dde586d9bc90c37218749468cacdb1df4b6 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-y212le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170354-398765065 +# @用例名称: fate-pixfmt-gbrp12-y212le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-y212le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-y212le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-y212le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-y216le.sh b/testcase/fate-pixfmt-gbrp12-y216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..cfdb37dd7a83bb189f85da7b98e147ce8ddce1e6 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-y216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170354-487809961 +# @用例名称: fate-pixfmt-gbrp12-y216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-y216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-y216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-y216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv410p.sh b/testcase/fate-pixfmt-gbrp12-yuv410p.sh new file mode 100755 index 0000000000000000000000000000000000000000..ab70c0746927f056701246db24c6f2d2525a32bf --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv410p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170354-572946785 +# @用例名称: fate-pixfmt-gbrp12-yuv410p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv410p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv410p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv410p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv411p.sh b/testcase/fate-pixfmt-gbrp12-yuv411p.sh new file mode 100755 index 0000000000000000000000000000000000000000..2f09ff2064ee27c0bd24de4b6e67af56f80943a9 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv411p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170354-665613071 +# @用例名称: fate-pixfmt-gbrp12-yuv411p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv411p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv411p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv411p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv420p.sh b/testcase/fate-pixfmt-gbrp12-yuv420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..2f8b2bf411c6741e4999009bc9eb930407c07c96 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170354-753997440 +# @用例名称: fate-pixfmt-gbrp12-yuv420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv420p10be.sh b/testcase/fate-pixfmt-gbrp12-yuv420p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..229e3747022939ab60c67604f62f78b56f2256e9 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv420p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170354-837469567 +# @用例名称: fate-pixfmt-gbrp12-yuv420p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv420p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv420p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv420p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv420p10le.sh b/testcase/fate-pixfmt-gbrp12-yuv420p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..384dfd373fbac169752858f56722d682a70dc432 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv420p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170354-926481824 +# @用例名称: fate-pixfmt-gbrp12-yuv420p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv420p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv420p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv420p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv420p12be.sh b/testcase/fate-pixfmt-gbrp12-yuv420p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..88806e2a3232d88e0384ec9974464cdc0fb9c680 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv420p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170355-017736248 +# @用例名称: fate-pixfmt-gbrp12-yuv420p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv420p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv420p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv420p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv420p12le.sh b/testcase/fate-pixfmt-gbrp12-yuv420p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..32c502d7379c992761d7f430a370da090d45aa98 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv420p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170355-109213917 +# @用例名称: fate-pixfmt-gbrp12-yuv420p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv420p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv420p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv420p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv420p16be.sh b/testcase/fate-pixfmt-gbrp12-yuv420p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..8105e6b5dfec5dd71466961d6ab33e7467566fd1 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv420p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170355-202161028 +# @用例名称: fate-pixfmt-gbrp12-yuv420p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv420p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv420p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv420p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv420p16le.sh b/testcase/fate-pixfmt-gbrp12-yuv420p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..760f369651699303bc493b292ee674fdc317e71f --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv420p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170355-290051697 +# @用例名称: fate-pixfmt-gbrp12-yuv420p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv420p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv420p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv420p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv422p.sh b/testcase/fate-pixfmt-gbrp12-yuv422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..230e0c306c07f664fdd0389eeef6efb461cdef9a --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170355-378720311 +# @用例名称: fate-pixfmt-gbrp12-yuv422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv422p10be.sh b/testcase/fate-pixfmt-gbrp12-yuv422p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..0dbfa76f2db634dcd750e1f81763173f1f6a0d51 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv422p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170355-468140730 +# @用例名称: fate-pixfmt-gbrp12-yuv422p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv422p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv422p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv422p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv422p10le.sh b/testcase/fate-pixfmt-gbrp12-yuv422p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..a054eee1f7dbb035a20c3129f6947b1835cbbe3a --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv422p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170355-560554192 +# @用例名称: fate-pixfmt-gbrp12-yuv422p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv422p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv422p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv422p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv422p12be.sh b/testcase/fate-pixfmt-gbrp12-yuv422p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..07b62fa429594cfd9e05266ad6a8cacc05720bee --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv422p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170355-653288306 +# @用例名称: fate-pixfmt-gbrp12-yuv422p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv422p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv422p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv422p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv422p12le.sh b/testcase/fate-pixfmt-gbrp12-yuv422p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..31a313ff046952746a5649b68f30ad52ae5b7d5e --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv422p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170355-742511670 +# @用例名称: fate-pixfmt-gbrp12-yuv422p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv422p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv422p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv422p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv422p16be.sh b/testcase/fate-pixfmt-gbrp12-yuv422p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..96a9b57749678b6e4096caef98bc8e420d6374cf --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv422p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170355-829503087 +# @用例名称: fate-pixfmt-gbrp12-yuv422p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv422p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv422p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv422p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv422p16le.sh b/testcase/fate-pixfmt-gbrp12-yuv422p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..1ee4975b51918be3c589de8de1bf2c84cf909c7c --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv422p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170355-916267018 +# @用例名称: fate-pixfmt-gbrp12-yuv422p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv422p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv422p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv422p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv440p.sh b/testcase/fate-pixfmt-gbrp12-yuv440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..55c575f153a17c7c36c2a0ab7a21c4be60d352a0 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170356-008961064 +# @用例名称: fate-pixfmt-gbrp12-yuv440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv440p10be.sh b/testcase/fate-pixfmt-gbrp12-yuv440p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..f182cbea0b29ea4dea090d90c6aabf83c52f1daa --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv440p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170356-103123821 +# @用例名称: fate-pixfmt-gbrp12-yuv440p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv440p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv440p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv440p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv440p10le.sh b/testcase/fate-pixfmt-gbrp12-yuv440p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..fb44fb3d741792207339304d7e5625c77fcf192d --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv440p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170356-194236757 +# @用例名称: fate-pixfmt-gbrp12-yuv440p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv440p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv440p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv440p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv440p12be.sh b/testcase/fate-pixfmt-gbrp12-yuv440p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..07a7d82833c1e8805ce487e21a58da1f8a6b9dd4 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv440p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170356-284725816 +# @用例名称: fate-pixfmt-gbrp12-yuv440p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv440p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv440p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv440p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv440p12le.sh b/testcase/fate-pixfmt-gbrp12-yuv440p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..b28d0acee2e4883a39e89c756e0c7e10a006842f --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv440p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170356-372889130 +# @用例名称: fate-pixfmt-gbrp12-yuv440p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv440p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv440p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv440p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv444p.sh b/testcase/fate-pixfmt-gbrp12-yuv444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..6d0d8e4b75deadc5a61d013cfd720049042d8c67 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170356-466906079 +# @用例名称: fate-pixfmt-gbrp12-yuv444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv444p10be.sh b/testcase/fate-pixfmt-gbrp12-yuv444p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..b67cb74eeb9526848b40a47ecc9d0adb7ab89ce1 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv444p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170356-560849160 +# @用例名称: fate-pixfmt-gbrp12-yuv444p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv444p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv444p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv444p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv444p10le.sh b/testcase/fate-pixfmt-gbrp12-yuv444p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..96dd90f732c5f1fe2f5f684af3d120b8f8b7563e --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv444p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170356-657998309 +# @用例名称: fate-pixfmt-gbrp12-yuv444p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv444p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv444p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv444p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv444p10msbbe.sh b/testcase/fate-pixfmt-gbrp12-yuv444p10msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..a543516f964abd7bf30b1dde0a34c14499a1e3a5 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv444p10msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170356-745684422 +# @用例名称: fate-pixfmt-gbrp12-yuv444p10msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv444p10msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv444p10msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv444p10msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv444p10msble.sh b/testcase/fate-pixfmt-gbrp12-yuv444p10msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..e5037c320958e96a21a61943e5c6f405b87c7c0f --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv444p10msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170356-836211230 +# @用例名称: fate-pixfmt-gbrp12-yuv444p10msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv444p10msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv444p10msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv444p10msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv444p12be.sh b/testcase/fate-pixfmt-gbrp12-yuv444p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..ce7da420608e50d69999542e72c5dcb685c33d6b --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv444p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170356-923820105 +# @用例名称: fate-pixfmt-gbrp12-yuv444p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv444p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv444p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv444p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv444p12le.sh b/testcase/fate-pixfmt-gbrp12-yuv444p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..408ed8139a98aedb8821dc238dbc2cae45d9a09c --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv444p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170357-015350903 +# @用例名称: fate-pixfmt-gbrp12-yuv444p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv444p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv444p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv444p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv444p12msbbe.sh b/testcase/fate-pixfmt-gbrp12-yuv444p12msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..6f348600583a6bb782e5b6b3ae8e056b080da1b3 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv444p12msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170357-104921659 +# @用例名称: fate-pixfmt-gbrp12-yuv444p12msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv444p12msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv444p12msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv444p12msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv444p12msble.sh b/testcase/fate-pixfmt-gbrp12-yuv444p12msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..c695f37b9cd0803a0b6e8b6256e35bad577617b8 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv444p12msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170357-196266911 +# @用例名称: fate-pixfmt-gbrp12-yuv444p12msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv444p12msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv444p12msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv444p12msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv444p16be.sh b/testcase/fate-pixfmt-gbrp12-yuv444p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..e3dd829701485b30e8e70ee8b5708d85f3024d24 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv444p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170357-291142075 +# @用例名称: fate-pixfmt-gbrp12-yuv444p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv444p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv444p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv444p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuv444p16le.sh b/testcase/fate-pixfmt-gbrp12-yuv444p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..2689974ecc891d562c9db9a0329dee714e56aa44 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuv444p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170357-380629443 +# @用例名称: fate-pixfmt-gbrp12-yuv444p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv444p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuv444p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuv444p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuvj420p.sh b/testcase/fate-pixfmt-gbrp12-yuvj420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..84ccdfcf19571f13d46fd252965707b4b7ed0c33 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuvj420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170357-469930284 +# @用例名称: fate-pixfmt-gbrp12-yuvj420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuvj420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuvj420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuvj420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuvj422p.sh b/testcase/fate-pixfmt-gbrp12-yuvj422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..d2e9dd6a37f007d1033c7760d649f52158b85746 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuvj422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170357-557940281 +# @用例名称: fate-pixfmt-gbrp12-yuvj422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuvj422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuvj422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuvj422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuvj440p.sh b/testcase/fate-pixfmt-gbrp12-yuvj440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..266fa30c9fff27c42af911a6b8cfb42543ac5442 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuvj440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170357-647650786 +# @用例名称: fate-pixfmt-gbrp12-yuvj440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuvj440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuvj440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuvj440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuvj444p.sh b/testcase/fate-pixfmt-gbrp12-yuvj444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..f65f06b7818d6fbd2dc46e593e5a27dbcbe4af24 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuvj444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170357-740515998 +# @用例名称: fate-pixfmt-gbrp12-yuvj444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuvj444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuvj444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuvj444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yuyv422.sh b/testcase/fate-pixfmt-gbrp12-yuyv422.sh new file mode 100755 index 0000000000000000000000000000000000000000..b5eb9f2ee5d0b1acc7355e5bffae54ac339cb82d --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yuyv422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170357-831051255 +# @用例名称: fate-pixfmt-gbrp12-yuyv422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuyv422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yuyv422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yuyv422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp12-yvyu422.sh b/testcase/fate-pixfmt-gbrp12-yvyu422.sh new file mode 100755 index 0000000000000000000000000000000000000000..3f07b7a16a7682659a9805fa7899104912d05547 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp12-yvyu422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170357-921521084 +# @用例名称: fate-pixfmt-gbrp12-yvyu422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yvyu422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp12-yvyu422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp12-yvyu422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp16-gbrp16be.sh b/testcase/fate-pixfmt-gbrp16-gbrp16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..806d9d40fd055c5924774216648faa5a4859f3f2 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp16-gbrp16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170358-015539284 +# @用例名称: fate-pixfmt-gbrp16-gbrp16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-gbrp16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-gbrp16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp16-gbrp16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp16-gbrp16le.sh b/testcase/fate-pixfmt-gbrp16-gbrp16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..6b00c6b4a81762afa424fc064c833b45a8bec719 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp16-gbrp16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170358-104014972 +# @用例名称: fate-pixfmt-gbrp16-gbrp16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-gbrp16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-gbrp16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp16-gbrp16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp16-gray16be.sh b/testcase/fate-pixfmt-gbrp16-gray16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..98d6d9b98299710cce8cdad44259039d20043e6f --- /dev/null +++ b/testcase/fate-pixfmt-gbrp16-gray16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170358-191109407 +# @用例名称: fate-pixfmt-gbrp16-gray16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-gray16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-gray16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp16-gray16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp16-gray16le.sh b/testcase/fate-pixfmt-gbrp16-gray16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..46c7d453b85b7589573bec988c65d78a3237d35d --- /dev/null +++ b/testcase/fate-pixfmt-gbrp16-gray16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170358-282148285 +# @用例名称: fate-pixfmt-gbrp16-gray16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-gray16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-gray16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp16-gray16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp16-p016be.sh b/testcase/fate-pixfmt-gbrp16-p016be.sh new file mode 100755 index 0000000000000000000000000000000000000000..817c2a7716ef34eeaf82cdecc391fb5b6028b09f --- /dev/null +++ b/testcase/fate-pixfmt-gbrp16-p016be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170358-370308449 +# @用例名称: fate-pixfmt-gbrp16-p016be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-p016be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-p016be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp16-p016be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp16-p016le.sh b/testcase/fate-pixfmt-gbrp16-p016le.sh new file mode 100755 index 0000000000000000000000000000000000000000..b1911358cad5dcd8ffaba4adbb0d219786e08ab2 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp16-p016le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170358-462022075 +# @用例名称: fate-pixfmt-gbrp16-p016le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-p016le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-p016le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp16-p016le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp16-p216be.sh b/testcase/fate-pixfmt-gbrp16-p216be.sh new file mode 100755 index 0000000000000000000000000000000000000000..1daa3edc8618092786e93cb8f4b2126146c46416 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp16-p216be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170358-559433107 +# @用例名称: fate-pixfmt-gbrp16-p216be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-p216be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-p216be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp16-p216be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp16-p216le.sh b/testcase/fate-pixfmt-gbrp16-p216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..dc42816a6a846139b056fa99778e3bca8c34209c --- /dev/null +++ b/testcase/fate-pixfmt-gbrp16-p216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170358-654138163 +# @用例名称: fate-pixfmt-gbrp16-p216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-p216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-p216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp16-p216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp16-p416be.sh b/testcase/fate-pixfmt-gbrp16-p416be.sh new file mode 100755 index 0000000000000000000000000000000000000000..3ec11b1b66febc309ff7388fb58ca00f464a6d4f --- /dev/null +++ b/testcase/fate-pixfmt-gbrp16-p416be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170358-745852027 +# @用例名称: fate-pixfmt-gbrp16-p416be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-p416be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-p416be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp16-p416be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp16-p416le.sh b/testcase/fate-pixfmt-gbrp16-p416le.sh new file mode 100755 index 0000000000000000000000000000000000000000..2f0a1c37710877dbacc6385d8cf11c48b57061ea --- /dev/null +++ b/testcase/fate-pixfmt-gbrp16-p416le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170358-841743780 +# @用例名称: fate-pixfmt-gbrp16-p416le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-p416le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-p416le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp16-p416le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp16-rgb48.sh b/testcase/fate-pixfmt-gbrp16-rgb48.sh new file mode 100755 index 0000000000000000000000000000000000000000..adebee2052b2f0b8679810dbd4ac7056a87752c5 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp16-rgb48.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170358-936319189 +# @用例名称: fate-pixfmt-gbrp16-rgb48 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-rgb48 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-rgb48 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp16-rgb48 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp16-xv48be.sh b/testcase/fate-pixfmt-gbrp16-xv48be.sh new file mode 100755 index 0000000000000000000000000000000000000000..fe2c4c7142f62f080c0c97a25972b67f591a1b3b --- /dev/null +++ b/testcase/fate-pixfmt-gbrp16-xv48be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170359-027343008 +# @用例名称: fate-pixfmt-gbrp16-xv48be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-xv48be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-xv48be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp16-xv48be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp16-xv48le.sh b/testcase/fate-pixfmt-gbrp16-xv48le.sh new file mode 100755 index 0000000000000000000000000000000000000000..8b49afbc9becb46832fc0727fb064d2ce47ebd1a --- /dev/null +++ b/testcase/fate-pixfmt-gbrp16-xv48le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170359-115983141 +# @用例名称: fate-pixfmt-gbrp16-xv48le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-xv48le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-xv48le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp16-xv48le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp16-y216le.sh b/testcase/fate-pixfmt-gbrp16-y216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..9f0d12314a1bf7b41b907742a27a66fce4beef16 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp16-y216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170359-206155087 +# @用例名称: fate-pixfmt-gbrp16-y216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-y216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-y216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp16-y216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp16-yuv420p16be.sh b/testcase/fate-pixfmt-gbrp16-yuv420p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..b5a780ac33b67a9956529491d8856405c6b46335 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp16-yuv420p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170359-295188094 +# @用例名称: fate-pixfmt-gbrp16-yuv420p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-yuv420p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-yuv420p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp16-yuv420p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp16-yuv420p16le.sh b/testcase/fate-pixfmt-gbrp16-yuv420p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..2c4e0866268925925aa6ee0eab75ca0c421eef75 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp16-yuv420p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170359-385310961 +# @用例名称: fate-pixfmt-gbrp16-yuv420p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-yuv420p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-yuv420p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp16-yuv420p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp16-yuv422p16be.sh b/testcase/fate-pixfmt-gbrp16-yuv422p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..5951bacc5a78e5f48748583aad53bf6da7fb9743 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp16-yuv422p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170359-473281808 +# @用例名称: fate-pixfmt-gbrp16-yuv422p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-yuv422p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-yuv422p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp16-yuv422p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp16-yuv422p16le.sh b/testcase/fate-pixfmt-gbrp16-yuv422p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..4060b5c0f62f4272523422622561207396583bc9 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp16-yuv422p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170359-563515911 +# @用例名称: fate-pixfmt-gbrp16-yuv422p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-yuv422p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-yuv422p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp16-yuv422p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp16-yuv444p16be.sh b/testcase/fate-pixfmt-gbrp16-yuv444p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..fa0544fbc490e87345c8cd7a5d223b4225bac3d6 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp16-yuv444p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170359-654640818 +# @用例名称: fate-pixfmt-gbrp16-yuv444p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-yuv444p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-yuv444p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp16-yuv444p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gbrp16-yuv444p16le.sh b/testcase/fate-pixfmt-gbrp16-yuv444p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..345d4da29b66cd50e0b982dfe980e1c1658b9217 --- /dev/null +++ b/testcase/fate-pixfmt-gbrp16-yuv444p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170359-747471080 +# @用例名称: fate-pixfmt-gbrp16-yuv444p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-yuv444p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gbrp16-yuv444p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gbrp16-yuv444p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-gray.sh b/testcase/fate-pixfmt-gray.sh new file mode 100755 index 0000000000000000000000000000000000000000..7511ac56ab11fe16f63ae7f6a810514c8e168e1c --- /dev/null +++ b/testcase/fate-pixfmt-gray.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170359-838519769 +# @用例名称: fate-pixfmt-gray +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-gray +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-gray + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-gray + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-monob.sh b/testcase/fate-pixfmt-monob.sh new file mode 100755 index 0000000000000000000000000000000000000000..eb9251cf4329f683bcedb689493c58bdbcf716c6 --- /dev/null +++ b/testcase/fate-pixfmt-monob.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170359-926916537 +# @用例名称: fate-pixfmt-monob +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-monob +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-monob + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-monob + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-monow.sh b/testcase/fate-pixfmt-monow.sh new file mode 100755 index 0000000000000000000000000000000000000000..0a0153723d954f4bdfb9175df3830cc12d89a772 --- /dev/null +++ b/testcase/fate-pixfmt-monow.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170400-013959754 +# @用例名称: fate-pixfmt-monow +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-monow +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-monow + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-monow + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv12.sh b/testcase/fate-pixfmt-nv12.sh new file mode 100755 index 0000000000000000000000000000000000000000..39c97b1ec91c303cb245dac40b02be7ced4c17bd --- /dev/null +++ b/testcase/fate-pixfmt-nv12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170400-102607978 +# @用例名称: fate-pixfmt-nv12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv16.sh b/testcase/fate-pixfmt-nv16.sh new file mode 100755 index 0000000000000000000000000000000000000000..82fd5f3c5677547ce8e278f539722f2aa5afc43c --- /dev/null +++ b/testcase/fate-pixfmt-nv16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170400-188185663 +# @用例名称: fate-pixfmt-nv16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-bgr24.sh b/testcase/fate-pixfmt-nv24-bgr24.sh new file mode 100755 index 0000000000000000000000000000000000000000..99d88c0864afa491b3d85c5e9fab18ae11aea09d --- /dev/null +++ b/testcase/fate-pixfmt-nv24-bgr24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170400-368452204 +# @用例名称: fate-pixfmt-nv24-bgr24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-bgr24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-bgr24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-bgr24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-gbrp10be.sh b/testcase/fate-pixfmt-nv24-gbrp10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..e3acf104f8fde10f465c296f0e80180cb8ec540e --- /dev/null +++ b/testcase/fate-pixfmt-nv24-gbrp10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170400-459275096 +# @用例名称: fate-pixfmt-nv24-gbrp10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gbrp10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gbrp10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-gbrp10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-gbrp10le.sh b/testcase/fate-pixfmt-nv24-gbrp10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..e4b4482b83c3e445c5ec6191b2e29616deeb57e9 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-gbrp10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170400-547317063 +# @用例名称: fate-pixfmt-nv24-gbrp10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gbrp10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gbrp10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-gbrp10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-gbrp12be.sh b/testcase/fate-pixfmt-nv24-gbrp12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..4f4e7a420b2bb1fdc722a37bb1f002ca7143e541 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-gbrp12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170400-640567727 +# @用例名称: fate-pixfmt-nv24-gbrp12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gbrp12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gbrp12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-gbrp12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-gbrp12le.sh b/testcase/fate-pixfmt-nv24-gbrp12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..01298e4747e3f7d95618acdafd8502ca8a97dc1e --- /dev/null +++ b/testcase/fate-pixfmt-nv24-gbrp12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170400-731727653 +# @用例名称: fate-pixfmt-nv24-gbrp12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gbrp12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gbrp12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-gbrp12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-gbrp16be.sh b/testcase/fate-pixfmt-nv24-gbrp16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..b70785483dd73a05565c2557d2b6841b791f9b30 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-gbrp16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170400-825915299 +# @用例名称: fate-pixfmt-nv24-gbrp16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gbrp16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gbrp16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-gbrp16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-gbrp16le.sh b/testcase/fate-pixfmt-nv24-gbrp16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..ae888914136661f29fbb411d74393cd2b40e79dc --- /dev/null +++ b/testcase/fate-pixfmt-nv24-gbrp16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170400-915502035 +# @用例名称: fate-pixfmt-nv24-gbrp16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gbrp16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gbrp16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-gbrp16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-gray.sh b/testcase/fate-pixfmt-nv24-gray.sh new file mode 100755 index 0000000000000000000000000000000000000000..9040b24868c1312b469f58c9ae14c14f4975a02b --- /dev/null +++ b/testcase/fate-pixfmt-nv24-gray.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170401-007907867 +# @用例名称: fate-pixfmt-nv24-gray +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gray +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gray + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-gray + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-gray10be.sh b/testcase/fate-pixfmt-nv24-gray10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..da575fefd02ad3238818fd155cedb422d942d7d4 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-gray10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170401-099656251 +# @用例名称: fate-pixfmt-nv24-gray10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gray10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gray10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-gray10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-gray10le.sh b/testcase/fate-pixfmt-nv24-gray10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..aff44ea5baa3ea2cf84e08e20daefa11c9aa7201 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-gray10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170401-193974675 +# @用例名称: fate-pixfmt-nv24-gray10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gray10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gray10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-gray10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-gray12be.sh b/testcase/fate-pixfmt-nv24-gray12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..e02cb996072c7dc30608bfdda5457eff66e1436a --- /dev/null +++ b/testcase/fate-pixfmt-nv24-gray12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170401-286203919 +# @用例名称: fate-pixfmt-nv24-gray12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gray12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gray12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-gray12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-gray12le.sh b/testcase/fate-pixfmt-nv24-gray12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..f418287bc609fb42dcebc1b06ab10bdcb21598a1 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-gray12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170401-375736746 +# @用例名称: fate-pixfmt-nv24-gray12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gray12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gray12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-gray12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-gray16be.sh b/testcase/fate-pixfmt-nv24-gray16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..8936e31127d733e58088b49a0e408fd33689bca2 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-gray16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170401-465749674 +# @用例名称: fate-pixfmt-nv24-gray16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gray16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gray16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-gray16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-gray16le.sh b/testcase/fate-pixfmt-nv24-gray16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..82af9bdc9174ccf37248134cff661d4fc74dd1b2 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-gray16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170401-555213783 +# @用例名称: fate-pixfmt-nv24-gray16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gray16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-gray16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-gray16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-monob.sh b/testcase/fate-pixfmt-nv24-monob.sh new file mode 100755 index 0000000000000000000000000000000000000000..6dded2618294990e08169d6f7a7defc8e807a60b --- /dev/null +++ b/testcase/fate-pixfmt-nv24-monob.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170401-640511063 +# @用例名称: fate-pixfmt-nv24-monob +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-monob +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-monob + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-monob + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-monow.sh b/testcase/fate-pixfmt-nv24-monow.sh new file mode 100755 index 0000000000000000000000000000000000000000..13b4b920a1d8187b023f42a68523a12bc103d91d --- /dev/null +++ b/testcase/fate-pixfmt-nv24-monow.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170401-733442164 +# @用例名称: fate-pixfmt-nv24-monow +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-monow +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-monow + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-monow + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-nv12.sh b/testcase/fate-pixfmt-nv24-nv12.sh new file mode 100755 index 0000000000000000000000000000000000000000..e653c1c434a0c66d01a8d608cbda51c2e30833d7 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-nv12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170401-825161878 +# @用例名称: fate-pixfmt-nv24-nv12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-nv12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-nv12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-nv12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-nv16.sh b/testcase/fate-pixfmt-nv24-nv16.sh new file mode 100755 index 0000000000000000000000000000000000000000..905d91c06194b7e70817a272256d786df4deb8d5 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-nv16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170401-913138516 +# @用例名称: fate-pixfmt-nv24-nv16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-nv16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-nv16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-nv16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-nv24.sh b/testcase/fate-pixfmt-nv24-nv24.sh new file mode 100755 index 0000000000000000000000000000000000000000..c80d4299fef1d9ae15502b851055c723fae3500e --- /dev/null +++ b/testcase/fate-pixfmt-nv24-nv24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170401-998357877 +# @用例名称: fate-pixfmt-nv24-nv24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-nv24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-nv24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-nv24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-p010be.sh b/testcase/fate-pixfmt-nv24-p010be.sh new file mode 100755 index 0000000000000000000000000000000000000000..f2ff8ed7ef99747232ba63dad88c49cdc90f88e7 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-p010be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170402-080949691 +# @用例名称: fate-pixfmt-nv24-p010be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p010be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p010be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-p010be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-p010le.sh b/testcase/fate-pixfmt-nv24-p010le.sh new file mode 100755 index 0000000000000000000000000000000000000000..625e071d86d416e2d931c854d1048a999a863dd3 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-p010le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170402-169206763 +# @用例名称: fate-pixfmt-nv24-p010le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p010le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p010le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-p010le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-p012be.sh b/testcase/fate-pixfmt-nv24-p012be.sh new file mode 100755 index 0000000000000000000000000000000000000000..dab84d3c30344355b5f84523b74e717ab3764bcd --- /dev/null +++ b/testcase/fate-pixfmt-nv24-p012be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170402-258332069 +# @用例名称: fate-pixfmt-nv24-p012be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p012be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p012be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-p012be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-p012le.sh b/testcase/fate-pixfmt-nv24-p012le.sh new file mode 100755 index 0000000000000000000000000000000000000000..9bb09fb0e187078ba6936e18ae109cfbef8f589e --- /dev/null +++ b/testcase/fate-pixfmt-nv24-p012le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170402-347547402 +# @用例名称: fate-pixfmt-nv24-p012le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p012le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p012le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-p012le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-p016be.sh b/testcase/fate-pixfmt-nv24-p016be.sh new file mode 100755 index 0000000000000000000000000000000000000000..085220fac25a8d3b45c9958af3c827ae7dce2dca --- /dev/null +++ b/testcase/fate-pixfmt-nv24-p016be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170402-433962100 +# @用例名称: fate-pixfmt-nv24-p016be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p016be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p016be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-p016be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-p016le.sh b/testcase/fate-pixfmt-nv24-p016le.sh new file mode 100755 index 0000000000000000000000000000000000000000..b388b751b0aa9d4f3ad8842b601ae1c68c520082 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-p016le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170402-527068508 +# @用例名称: fate-pixfmt-nv24-p016le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p016le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p016le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-p016le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-p210be.sh b/testcase/fate-pixfmt-nv24-p210be.sh new file mode 100755 index 0000000000000000000000000000000000000000..45ccb1db44c8650bcace0976d3fc052673bc98af --- /dev/null +++ b/testcase/fate-pixfmt-nv24-p210be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170402-619701775 +# @用例名称: fate-pixfmt-nv24-p210be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p210be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p210be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-p210be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-p210le.sh b/testcase/fate-pixfmt-nv24-p210le.sh new file mode 100755 index 0000000000000000000000000000000000000000..a44fdcf90b12f9ba2cc2f160144ae4075951832b --- /dev/null +++ b/testcase/fate-pixfmt-nv24-p210le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170402-713708394 +# @用例名称: fate-pixfmt-nv24-p210le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p210le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p210le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-p210le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-p212be.sh b/testcase/fate-pixfmt-nv24-p212be.sh new file mode 100755 index 0000000000000000000000000000000000000000..7549d1132374fc5bec41b79fcee25b2ff4cf7327 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-p212be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170402-807666565 +# @用例名称: fate-pixfmt-nv24-p212be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p212be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p212be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-p212be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-p212le.sh b/testcase/fate-pixfmt-nv24-p212le.sh new file mode 100755 index 0000000000000000000000000000000000000000..570c4adc4cf0afab2784b2a4c57a964f0a8e5679 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-p212le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170402-902070678 +# @用例名称: fate-pixfmt-nv24-p212le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p212le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p212le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-p212le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-p216be.sh b/testcase/fate-pixfmt-nv24-p216be.sh new file mode 100755 index 0000000000000000000000000000000000000000..3dba83912bf0c8e101f1b1fc839058d58b3c3418 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-p216be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170402-993405810 +# @用例名称: fate-pixfmt-nv24-p216be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p216be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p216be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-p216be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-p216le.sh b/testcase/fate-pixfmt-nv24-p216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..6b25b6cac88369da57df7a203eb921a100152b79 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-p216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170403-083448097 +# @用例名称: fate-pixfmt-nv24-p216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-p216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-p410be.sh b/testcase/fate-pixfmt-nv24-p410be.sh new file mode 100755 index 0000000000000000000000000000000000000000..cd4c7049dc7d85fd5435a740304112e0a89161b7 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-p410be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170403-172971334 +# @用例名称: fate-pixfmt-nv24-p410be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p410be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p410be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-p410be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-p410le.sh b/testcase/fate-pixfmt-nv24-p410le.sh new file mode 100755 index 0000000000000000000000000000000000000000..de3d7d9879544322b31c76ba276ddedbc0e03f2d --- /dev/null +++ b/testcase/fate-pixfmt-nv24-p410le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170403-262347514 +# @用例名称: fate-pixfmt-nv24-p410le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p410le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p410le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-p410le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-p412be.sh b/testcase/fate-pixfmt-nv24-p412be.sh new file mode 100755 index 0000000000000000000000000000000000000000..281419fe3a34bac23623ccc34803841b72bdee6f --- /dev/null +++ b/testcase/fate-pixfmt-nv24-p412be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170403-352437231 +# @用例名称: fate-pixfmt-nv24-p412be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p412be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p412be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-p412be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-p412le.sh b/testcase/fate-pixfmt-nv24-p412le.sh new file mode 100755 index 0000000000000000000000000000000000000000..dc92fe1850e00149e29e5f89fbac7df1563ff6cb --- /dev/null +++ b/testcase/fate-pixfmt-nv24-p412le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170403-438098345 +# @用例名称: fate-pixfmt-nv24-p412le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p412le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p412le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-p412le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-p416be.sh b/testcase/fate-pixfmt-nv24-p416be.sh new file mode 100755 index 0000000000000000000000000000000000000000..a4690fe16dc839aef76345db08729523d9f3ad66 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-p416be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170403-528980145 +# @用例名称: fate-pixfmt-nv24-p416be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p416be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p416be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-p416be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-p416le.sh b/testcase/fate-pixfmt-nv24-p416le.sh new file mode 100755 index 0000000000000000000000000000000000000000..ffef0e35f3f489b38ac086befc7555d99c198c36 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-p416le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170403-619708179 +# @用例名称: fate-pixfmt-nv24-p416le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p416le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-p416le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-p416le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-rgb24.sh b/testcase/fate-pixfmt-nv24-rgb24.sh new file mode 100755 index 0000000000000000000000000000000000000000..f8abeede661d018db70b9eeb57ddebbf3ff8b6a6 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-rgb24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170403-712171119 +# @用例名称: fate-pixfmt-nv24-rgb24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-rgb24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-rgb24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-rgb24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-rgb32.sh b/testcase/fate-pixfmt-nv24-rgb32.sh new file mode 100755 index 0000000000000000000000000000000000000000..8acdac71f4834ad6aa2b31f7369348a299c1557c --- /dev/null +++ b/testcase/fate-pixfmt-nv24-rgb32.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170403-803505481 +# @用例名称: fate-pixfmt-nv24-rgb32 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-rgb32 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-rgb32 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-rgb32 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-rgb48.sh b/testcase/fate-pixfmt-nv24-rgb48.sh new file mode 100755 index 0000000000000000000000000000000000000000..40e7f926c1b2aca8f063f9a8d032b52f46021d5f --- /dev/null +++ b/testcase/fate-pixfmt-nv24-rgb48.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170403-888688583 +# @用例名称: fate-pixfmt-nv24-rgb48 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-rgb48 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-rgb48 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-rgb48 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-rgb555.sh b/testcase/fate-pixfmt-nv24-rgb555.sh new file mode 100755 index 0000000000000000000000000000000000000000..4eef4f03fca5da1bff1bcad79494b5927582acc4 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-rgb555.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170403-969045251 +# @用例名称: fate-pixfmt-nv24-rgb555 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-rgb555 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-rgb555 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-rgb555 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-rgb565.sh b/testcase/fate-pixfmt-nv24-rgb565.sh new file mode 100755 index 0000000000000000000000000000000000000000..2781d687dab65dc472e1c26180342a2eb748ac19 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-rgb565.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170404-046483564 +# @用例名称: fate-pixfmt-nv24-rgb565 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-rgb565 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-rgb565 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-rgb565 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-uyvy422.sh b/testcase/fate-pixfmt-nv24-uyvy422.sh new file mode 100755 index 0000000000000000000000000000000000000000..d8ed5cf431c3bc78dec4ea991f5b448ad5b85672 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-uyvy422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170404-139313727 +# @用例名称: fate-pixfmt-nv24-uyvy422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-uyvy422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-uyvy422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-uyvy422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-v30xle.sh b/testcase/fate-pixfmt-nv24-v30xle.sh new file mode 100755 index 0000000000000000000000000000000000000000..21669059cd755a6237e6688cb1a43a80a97af37c --- /dev/null +++ b/testcase/fate-pixfmt-nv24-v30xle.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170404-228959852 +# @用例名称: fate-pixfmt-nv24-v30xle +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-v30xle +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-v30xle + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-v30xle + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-vuyx.sh b/testcase/fate-pixfmt-nv24-vuyx.sh new file mode 100755 index 0000000000000000000000000000000000000000..fd4302382e25db2a50a34ae5606d751c35b3c3a7 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-vuyx.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170404-320056410 +# @用例名称: fate-pixfmt-nv24-vuyx +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-vuyx +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-vuyx + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-vuyx + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-vyu444.sh b/testcase/fate-pixfmt-nv24-vyu444.sh new file mode 100755 index 0000000000000000000000000000000000000000..b3cde43a78820e5975cbdef817fcf0b16ee45b95 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-vyu444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170404-410571708 +# @用例名称: fate-pixfmt-nv24-vyu444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-vyu444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-vyu444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-vyu444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-x2bgr10le.sh b/testcase/fate-pixfmt-nv24-x2bgr10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..b3cbe0d35daf288b0948baab4f9e12b21ed85577 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-x2bgr10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170404-499944118 +# @用例名称: fate-pixfmt-nv24-x2bgr10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-x2bgr10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-x2bgr10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-x2bgr10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-x2rgb10le.sh b/testcase/fate-pixfmt-nv24-x2rgb10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..d9c64aefa3277b10d832a01703236c786b44e183 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-x2rgb10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170404-590740981 +# @用例名称: fate-pixfmt-nv24-x2rgb10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-x2rgb10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-x2rgb10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-x2rgb10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-xv30le.sh b/testcase/fate-pixfmt-nv24-xv30le.sh new file mode 100755 index 0000000000000000000000000000000000000000..32fc62054aaa3f93ab6d5e83fa3f1b273d16905e --- /dev/null +++ b/testcase/fate-pixfmt-nv24-xv30le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170404-682191151 +# @用例名称: fate-pixfmt-nv24-xv30le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-xv30le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-xv30le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-xv30le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-xv36be.sh b/testcase/fate-pixfmt-nv24-xv36be.sh new file mode 100755 index 0000000000000000000000000000000000000000..22cb8e0c4d0185426c5865fe7bf5151c608880fb --- /dev/null +++ b/testcase/fate-pixfmt-nv24-xv36be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170404-766032829 +# @用例名称: fate-pixfmt-nv24-xv36be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-xv36be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-xv36be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-xv36be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-xv36le.sh b/testcase/fate-pixfmt-nv24-xv36le.sh new file mode 100755 index 0000000000000000000000000000000000000000..9afcf4aa51cb884438901dc47418c885c77b2f5b --- /dev/null +++ b/testcase/fate-pixfmt-nv24-xv36le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170404-856663795 +# @用例名称: fate-pixfmt-nv24-xv36le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-xv36le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-xv36le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-xv36le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-xv48be.sh b/testcase/fate-pixfmt-nv24-xv48be.sh new file mode 100755 index 0000000000000000000000000000000000000000..d8735d0ee0d71cfd5b3c99104d0eaf2ca7f5c605 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-xv48be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170404-947433068 +# @用例名称: fate-pixfmt-nv24-xv48be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-xv48be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-xv48be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-xv48be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-xv48le.sh b/testcase/fate-pixfmt-nv24-xv48le.sh new file mode 100755 index 0000000000000000000000000000000000000000..cd639efffd006fb8ebe894b1808c942b8a28d743 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-xv48le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170405-038806849 +# @用例名称: fate-pixfmt-nv24-xv48le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-xv48le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-xv48le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-xv48le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-xyz12le.sh b/testcase/fate-pixfmt-nv24-xyz12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..546439c57391a187ac9df3ae1e505599bba9e137 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-xyz12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170405-129580113 +# @用例名称: fate-pixfmt-nv24-xyz12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-xyz12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-xyz12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-xyz12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-y210le.sh b/testcase/fate-pixfmt-nv24-y210le.sh new file mode 100755 index 0000000000000000000000000000000000000000..f5174db0447578c54aa97f87af301604efd3cd74 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-y210le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170405-218453563 +# @用例名称: fate-pixfmt-nv24-y210le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-y210le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-y210le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-y210le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-y212le.sh b/testcase/fate-pixfmt-nv24-y212le.sh new file mode 100755 index 0000000000000000000000000000000000000000..398b4b7b3c43eec8e58cd042827967a56c619f97 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-y212le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170405-307812213 +# @用例名称: fate-pixfmt-nv24-y212le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-y212le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-y212le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-y212le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-y216le.sh b/testcase/fate-pixfmt-nv24-y216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..5c48f19bd77109f3de777d3dadcf256a01cee9b0 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-y216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170405-399355951 +# @用例名称: fate-pixfmt-nv24-y216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-y216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-y216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-y216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv410p.sh b/testcase/fate-pixfmt-nv24-yuv410p.sh new file mode 100755 index 0000000000000000000000000000000000000000..acb300c27cb5373c1f1ffe7b02bb8d8256c28f1f --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv410p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170405-489057396 +# @用例名称: fate-pixfmt-nv24-yuv410p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv410p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv410p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv410p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv411p.sh b/testcase/fate-pixfmt-nv24-yuv411p.sh new file mode 100755 index 0000000000000000000000000000000000000000..e270860adf0e5ec8931775057cade8234fa11cc4 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv411p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170405-583890238 +# @用例名称: fate-pixfmt-nv24-yuv411p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv411p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv411p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv411p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv420p.sh b/testcase/fate-pixfmt-nv24-yuv420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..4e8795e6d0f32878566b67d0c18ddd7d2eeb641d --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170405-676759181 +# @用例名称: fate-pixfmt-nv24-yuv420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv420p10be.sh b/testcase/fate-pixfmt-nv24-yuv420p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..9236e7bb2ad2b12d7b1dc1b4e765580d8e472bef --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv420p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170405-764598471 +# @用例名称: fate-pixfmt-nv24-yuv420p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv420p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv420p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv420p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv420p10le.sh b/testcase/fate-pixfmt-nv24-yuv420p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..a74a43230269c15a7a37b6bafe4ba07f13555f0e --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv420p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170405-855026742 +# @用例名称: fate-pixfmt-nv24-yuv420p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv420p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv420p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv420p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv420p12be.sh b/testcase/fate-pixfmt-nv24-yuv420p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..cc161f0ccf3eab387fd9b0d9c2606dac517b774a --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv420p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170405-945338624 +# @用例名称: fate-pixfmt-nv24-yuv420p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv420p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv420p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv420p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv420p12le.sh b/testcase/fate-pixfmt-nv24-yuv420p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..20900c98301766ff78adc1feeae7cebdbfa1dec1 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv420p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170406-037669067 +# @用例名称: fate-pixfmt-nv24-yuv420p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv420p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv420p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv420p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv420p16be.sh b/testcase/fate-pixfmt-nv24-yuv420p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..a8d10c174a528e987c8f614cfd003ff369410198 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv420p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170406-131023698 +# @用例名称: fate-pixfmt-nv24-yuv420p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv420p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv420p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv420p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv420p16le.sh b/testcase/fate-pixfmt-nv24-yuv420p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..06f54a3d2a3637ebc7ec45ba1c3c1a6de9d2e42a --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv420p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170406-219956718 +# @用例名称: fate-pixfmt-nv24-yuv420p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv420p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv420p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv420p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv422p.sh b/testcase/fate-pixfmt-nv24-yuv422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..bbc46a7ed0720c0d86d05b0a2416bf50b0c04fff --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170406-308830767 +# @用例名称: fate-pixfmt-nv24-yuv422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv422p10be.sh b/testcase/fate-pixfmt-nv24-yuv422p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..49aa73bd30e5d6f180b7825000b126b8bb2e4627 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv422p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170406-398715519 +# @用例名称: fate-pixfmt-nv24-yuv422p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv422p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv422p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv422p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv422p10le.sh b/testcase/fate-pixfmt-nv24-yuv422p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..7936833a3b361d9329099b5ee89484408865741f --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv422p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170406-489412193 +# @用例名称: fate-pixfmt-nv24-yuv422p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv422p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv422p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv422p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv422p12be.sh b/testcase/fate-pixfmt-nv24-yuv422p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..a9c3e4c629446f36cc267c01a0d2cae3329e6044 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv422p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170406-578328732 +# @用例名称: fate-pixfmt-nv24-yuv422p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv422p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv422p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv422p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv422p12le.sh b/testcase/fate-pixfmt-nv24-yuv422p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..ef426168a5b9d4e9bc1c314409b52a11e4d528a5 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv422p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170406-665281690 +# @用例名称: fate-pixfmt-nv24-yuv422p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv422p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv422p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv422p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv422p16be.sh b/testcase/fate-pixfmt-nv24-yuv422p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..2250dfd808c2310ac7503510fcf4e5fcac25c830 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv422p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170406-759309939 +# @用例名称: fate-pixfmt-nv24-yuv422p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv422p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv422p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv422p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv422p16le.sh b/testcase/fate-pixfmt-nv24-yuv422p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..e4399fe982bd0cdc6bb2a0e3b2bb977b24769b6e --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv422p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170406-850494715 +# @用例名称: fate-pixfmt-nv24-yuv422p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv422p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv422p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv422p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv440p.sh b/testcase/fate-pixfmt-nv24-yuv440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..ece937330f475629dbf140b49ad1c15428710bdf --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170406-940620741 +# @用例名称: fate-pixfmt-nv24-yuv440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv440p10be.sh b/testcase/fate-pixfmt-nv24-yuv440p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..01249b21e40ada38a04dee687b14b1f9ea58e045 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv440p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170407-030667918 +# @用例名称: fate-pixfmt-nv24-yuv440p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv440p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv440p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv440p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv440p10le.sh b/testcase/fate-pixfmt-nv24-yuv440p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..09cc9ccfff882f411a49f2043fbfcc77c5405414 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv440p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170407-121895091 +# @用例名称: fate-pixfmt-nv24-yuv440p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv440p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv440p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv440p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv440p12be.sh b/testcase/fate-pixfmt-nv24-yuv440p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..52315cb10b497d11a4b6f154b02cc3498bd4fa63 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv440p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170407-214141576 +# @用例名称: fate-pixfmt-nv24-yuv440p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv440p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv440p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv440p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv440p12le.sh b/testcase/fate-pixfmt-nv24-yuv440p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..68695e0d0f95259b1bae0aec2722065cdddc5637 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv440p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170407-305153884 +# @用例名称: fate-pixfmt-nv24-yuv440p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv440p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv440p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv440p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv444p.sh b/testcase/fate-pixfmt-nv24-yuv444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..a26fd39211d074605e9b91ba9305afec697ecede --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170407-394108783 +# @用例名称: fate-pixfmt-nv24-yuv444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv444p10be.sh b/testcase/fate-pixfmt-nv24-yuv444p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..e974b024b0a27b82257d8ef2d61fb5b56211d336 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv444p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170407-484700270 +# @用例名称: fate-pixfmt-nv24-yuv444p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv444p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv444p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv444p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv444p10le.sh b/testcase/fate-pixfmt-nv24-yuv444p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..3ab871f69e4d4278ee8b18a1740a30bcf66fe0a8 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv444p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170407-578142281 +# @用例名称: fate-pixfmt-nv24-yuv444p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv444p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv444p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv444p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv444p10msbbe.sh b/testcase/fate-pixfmt-nv24-yuv444p10msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..17bfa7d8bf5064d675847effeaf1dcba667bb25b --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv444p10msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170407-672006572 +# @用例名称: fate-pixfmt-nv24-yuv444p10msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv444p10msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv444p10msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv444p10msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv444p10msble.sh b/testcase/fate-pixfmt-nv24-yuv444p10msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..6a1e226bcccd51a0a1a57ed7cbe0e44fa1319e80 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv444p10msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170407-764917005 +# @用例名称: fate-pixfmt-nv24-yuv444p10msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv444p10msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv444p10msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv444p10msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv444p12be.sh b/testcase/fate-pixfmt-nv24-yuv444p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..88038aaa184e0b25b3e6bf6996e034475f4c6371 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv444p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170407-853537930 +# @用例名称: fate-pixfmt-nv24-yuv444p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv444p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv444p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv444p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv444p12le.sh b/testcase/fate-pixfmt-nv24-yuv444p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..095b41385eb2e89367d77ebed8b4c0d47c28f341 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv444p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170407-942870420 +# @用例名称: fate-pixfmt-nv24-yuv444p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv444p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv444p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv444p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv444p12msbbe.sh b/testcase/fate-pixfmt-nv24-yuv444p12msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..06cf4d47afc9deaf85880f147f1e2104f6a60eab --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv444p12msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170408-031403677 +# @用例名称: fate-pixfmt-nv24-yuv444p12msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv444p12msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv444p12msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv444p12msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv444p12msble.sh b/testcase/fate-pixfmt-nv24-yuv444p12msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..97b6973427aa8f4815a9399a5de435950876c11c --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv444p12msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170408-120919095 +# @用例名称: fate-pixfmt-nv24-yuv444p12msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv444p12msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv444p12msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv444p12msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv444p16be.sh b/testcase/fate-pixfmt-nv24-yuv444p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..844181ecb8ffea5e1a918504b14bf80c2ad7577e --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv444p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170408-211370534 +# @用例名称: fate-pixfmt-nv24-yuv444p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv444p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv444p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv444p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuv444p16le.sh b/testcase/fate-pixfmt-nv24-yuv444p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..8fc38587f5439c6fd2b7998a44eb519715fdc101 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuv444p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170408-302378004 +# @用例名称: fate-pixfmt-nv24-yuv444p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv444p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuv444p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuv444p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuvj420p.sh b/testcase/fate-pixfmt-nv24-yuvj420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..6c0b591ee01c6ef7fe9f4c031ac861062ef94ed2 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuvj420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170408-392194295 +# @用例名称: fate-pixfmt-nv24-yuvj420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuvj420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuvj420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuvj420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuvj422p.sh b/testcase/fate-pixfmt-nv24-yuvj422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..48bfdbaea064221ce2f7a0f124d9f9651a9d4f91 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuvj422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170408-479861518 +# @用例名称: fate-pixfmt-nv24-yuvj422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuvj422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuvj422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuvj422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuvj440p.sh b/testcase/fate-pixfmt-nv24-yuvj440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..23f5720c2e5d85b74041e9d87b75e5ebdec29d56 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuvj440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170408-568802727 +# @用例名称: fate-pixfmt-nv24-yuvj440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuvj440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuvj440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuvj440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuvj444p.sh b/testcase/fate-pixfmt-nv24-yuvj444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..f404814ecb413d7aaa601b29f9fbd0ef3ea34fa9 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuvj444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170408-656065770 +# @用例名称: fate-pixfmt-nv24-yuvj444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuvj444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuvj444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuvj444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yuyv422.sh b/testcase/fate-pixfmt-nv24-yuyv422.sh new file mode 100755 index 0000000000000000000000000000000000000000..e8a30810b6828eeaf6f0c5162ffd1604b2a0a6eb --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yuyv422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170408-746662746 +# @用例名称: fate-pixfmt-nv24-yuyv422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuyv422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yuyv422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yuyv422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24-yvyu422.sh b/testcase/fate-pixfmt-nv24-yvyu422.sh new file mode 100755 index 0000000000000000000000000000000000000000..14ede97a269fccd32aa596ce386007a3fd846a28 --- /dev/null +++ b/testcase/fate-pixfmt-nv24-yvyu422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170408-837203283 +# @用例名称: fate-pixfmt-nv24-yvyu422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yvyu422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24-yvyu422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24-yvyu422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-nv24.sh b/testcase/fate-pixfmt-nv24.sh new file mode 100755 index 0000000000000000000000000000000000000000..e207ec19a89e9158d089eb95c2a54ba240305b6f --- /dev/null +++ b/testcase/fate-pixfmt-nv24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170400-279771910 +# @用例名称: fate-pixfmt-nv24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-nv24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-nv24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-nv24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-bgr24.sh b/testcase/fate-pixfmt-p410-bgr24.sh new file mode 100755 index 0000000000000000000000000000000000000000..cf8c20ccd8fbc40b1ac49475bbe7901bb22f8bc1 --- /dev/null +++ b/testcase/fate-pixfmt-p410-bgr24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170408-941983773 +# @用例名称: fate-pixfmt-p410-bgr24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-bgr24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-bgr24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-bgr24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-gbrp10be.sh b/testcase/fate-pixfmt-p410-gbrp10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..5c8403cb219fa32da1bc686a7db104098f4332cd --- /dev/null +++ b/testcase/fate-pixfmt-p410-gbrp10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170409-035435163 +# @用例名称: fate-pixfmt-p410-gbrp10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-gbrp10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-gbrp10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-gbrp10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-gbrp10le.sh b/testcase/fate-pixfmt-p410-gbrp10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..8c5d93c7468e479d6192590e31452e0508e39935 --- /dev/null +++ b/testcase/fate-pixfmt-p410-gbrp10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170409-130250626 +# @用例名称: fate-pixfmt-p410-gbrp10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-gbrp10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-gbrp10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-gbrp10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-gbrp12be.sh b/testcase/fate-pixfmt-p410-gbrp12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..b4f5cdcc8740992b5dcffed6ce4b8ef0697d28f9 --- /dev/null +++ b/testcase/fate-pixfmt-p410-gbrp12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170409-223940943 +# @用例名称: fate-pixfmt-p410-gbrp12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-gbrp12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-gbrp12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-gbrp12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-gbrp12le.sh b/testcase/fate-pixfmt-p410-gbrp12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..591249ab749ebfbd4513986bb32624d71b0e9c21 --- /dev/null +++ b/testcase/fate-pixfmt-p410-gbrp12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170409-309896550 +# @用例名称: fate-pixfmt-p410-gbrp12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-gbrp12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-gbrp12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-gbrp12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-gbrp16be.sh b/testcase/fate-pixfmt-p410-gbrp16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..a0e2381e2392289e9f9c2dd103f550b3324b4472 --- /dev/null +++ b/testcase/fate-pixfmt-p410-gbrp16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170409-400067864 +# @用例名称: fate-pixfmt-p410-gbrp16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-gbrp16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-gbrp16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-gbrp16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-gbrp16le.sh b/testcase/fate-pixfmt-p410-gbrp16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..f54f6b17c3a0f258f948ccfd583f96f90cf76e04 --- /dev/null +++ b/testcase/fate-pixfmt-p410-gbrp16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170409-491369658 +# @用例名称: fate-pixfmt-p410-gbrp16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-gbrp16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-gbrp16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-gbrp16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-gray.sh b/testcase/fate-pixfmt-p410-gray.sh new file mode 100755 index 0000000000000000000000000000000000000000..488200a9eecd38e881fc5c6bee2ca21735a552e4 --- /dev/null +++ b/testcase/fate-pixfmt-p410-gray.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170409-585952576 +# @用例名称: fate-pixfmt-p410-gray +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-gray +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-gray + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-gray + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-gray10be.sh b/testcase/fate-pixfmt-p410-gray10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..8699df365c77d89e46c33cf9f782edb980b5c030 --- /dev/null +++ b/testcase/fate-pixfmt-p410-gray10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170409-680624093 +# @用例名称: fate-pixfmt-p410-gray10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-gray10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-gray10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-gray10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-gray10le.sh b/testcase/fate-pixfmt-p410-gray10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..8e09fcd3e1954a3fc4428708cf52d21333ee0bbf --- /dev/null +++ b/testcase/fate-pixfmt-p410-gray10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170409-771326098 +# @用例名称: fate-pixfmt-p410-gray10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-gray10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-gray10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-gray10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-gray12be.sh b/testcase/fate-pixfmt-p410-gray12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..180b1ee9f700d485d6ca0fca7d1a6fcfe42ac6e1 --- /dev/null +++ b/testcase/fate-pixfmt-p410-gray12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170409-861644490 +# @用例名称: fate-pixfmt-p410-gray12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-gray12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-gray12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-gray12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-gray12le.sh b/testcase/fate-pixfmt-p410-gray12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..32e2bcf7afa3dd8a4c87c27a338f58a975dd9bac --- /dev/null +++ b/testcase/fate-pixfmt-p410-gray12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170409-953944012 +# @用例名称: fate-pixfmt-p410-gray12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-gray12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-gray12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-gray12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-gray16be.sh b/testcase/fate-pixfmt-p410-gray16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..14f4f4f7db4db662f471761072e3363e1b0b5fad --- /dev/null +++ b/testcase/fate-pixfmt-p410-gray16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170410-042166976 +# @用例名称: fate-pixfmt-p410-gray16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-gray16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-gray16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-gray16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-gray16le.sh b/testcase/fate-pixfmt-p410-gray16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..225a80a4f3db1a9466748f51e1bad4d409e37f0d --- /dev/null +++ b/testcase/fate-pixfmt-p410-gray16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170410-129815450 +# @用例名称: fate-pixfmt-p410-gray16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-gray16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-gray16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-gray16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-monob.sh b/testcase/fate-pixfmt-p410-monob.sh new file mode 100755 index 0000000000000000000000000000000000000000..583066b9c3ef0cf47b44152b39f1809674143e22 --- /dev/null +++ b/testcase/fate-pixfmt-p410-monob.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170410-223625223 +# @用例名称: fate-pixfmt-p410-monob +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-monob +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-monob + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-monob + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-monow.sh b/testcase/fate-pixfmt-p410-monow.sh new file mode 100755 index 0000000000000000000000000000000000000000..cd6b22c64ed249e5f2c3ec7ba615a9f85fa22dcb --- /dev/null +++ b/testcase/fate-pixfmt-p410-monow.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170410-317011975 +# @用例名称: fate-pixfmt-p410-monow +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-monow +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-monow + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-monow + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-nv12.sh b/testcase/fate-pixfmt-p410-nv12.sh new file mode 100755 index 0000000000000000000000000000000000000000..c58bc4d8fe4a7cf38ff29e4ee900c44501fa8cec --- /dev/null +++ b/testcase/fate-pixfmt-p410-nv12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170410-411725900 +# @用例名称: fate-pixfmt-p410-nv12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-nv12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-nv12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-nv12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-nv16.sh b/testcase/fate-pixfmt-p410-nv16.sh new file mode 100755 index 0000000000000000000000000000000000000000..6e9703e885855c1bede3b3a49cdd829e16c30d49 --- /dev/null +++ b/testcase/fate-pixfmt-p410-nv16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170410-502216440 +# @用例名称: fate-pixfmt-p410-nv16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-nv16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-nv16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-nv16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-nv24.sh b/testcase/fate-pixfmt-p410-nv24.sh new file mode 100755 index 0000000000000000000000000000000000000000..2de34f108544c236fe9f0cf729866622e57e8552 --- /dev/null +++ b/testcase/fate-pixfmt-p410-nv24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170410-583896351 +# @用例名称: fate-pixfmt-p410-nv24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-nv24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-nv24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-nv24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-p010be.sh b/testcase/fate-pixfmt-p410-p010be.sh new file mode 100755 index 0000000000000000000000000000000000000000..11f95880ffd16425c3b486aac333d74cab18a93b --- /dev/null +++ b/testcase/fate-pixfmt-p410-p010be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170410-662536102 +# @用例名称: fate-pixfmt-p410-p010be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-p010be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-p010be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-p010be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-p010le.sh b/testcase/fate-pixfmt-p410-p010le.sh new file mode 100755 index 0000000000000000000000000000000000000000..67065d66ce67ea372ef7dcbb561827efed2335c4 --- /dev/null +++ b/testcase/fate-pixfmt-p410-p010le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170410-754591269 +# @用例名称: fate-pixfmt-p410-p010le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-p010le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-p010le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-p010le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-p012be.sh b/testcase/fate-pixfmt-p410-p012be.sh new file mode 100755 index 0000000000000000000000000000000000000000..6e75c8756d2fd205bc44c814a907b569e86a12c0 --- /dev/null +++ b/testcase/fate-pixfmt-p410-p012be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170410-844881592 +# @用例名称: fate-pixfmt-p410-p012be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-p012be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-p012be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-p012be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-p012le.sh b/testcase/fate-pixfmt-p410-p012le.sh new file mode 100755 index 0000000000000000000000000000000000000000..84f272e2f1c83d4205e195271210063d2a7960e7 --- /dev/null +++ b/testcase/fate-pixfmt-p410-p012le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170410-932742803 +# @用例名称: fate-pixfmt-p410-p012le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-p012le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-p012le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-p012le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-p016be.sh b/testcase/fate-pixfmt-p410-p016be.sh new file mode 100755 index 0000000000000000000000000000000000000000..e09bcebe830ac110f949268bc56d2cc9578eb25d --- /dev/null +++ b/testcase/fate-pixfmt-p410-p016be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170411-020767768 +# @用例名称: fate-pixfmt-p410-p016be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-p016be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-p016be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-p016be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-p016le.sh b/testcase/fate-pixfmt-p410-p016le.sh new file mode 100755 index 0000000000000000000000000000000000000000..00a1faa363a636b8257bae096f5120e31c64a6f2 --- /dev/null +++ b/testcase/fate-pixfmt-p410-p016le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170411-109467093 +# @用例名称: fate-pixfmt-p410-p016le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-p016le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-p016le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-p016le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-p210be.sh b/testcase/fate-pixfmt-p410-p210be.sh new file mode 100755 index 0000000000000000000000000000000000000000..3eb92d570fdfd266dcea03ca4330231241a8b2c1 --- /dev/null +++ b/testcase/fate-pixfmt-p410-p210be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170411-200602549 +# @用例名称: fate-pixfmt-p410-p210be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-p210be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-p210be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-p210be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-p210le.sh b/testcase/fate-pixfmt-p410-p210le.sh new file mode 100755 index 0000000000000000000000000000000000000000..20067fca3ad538d6ef5a81c0a516cdc5b4a620de --- /dev/null +++ b/testcase/fate-pixfmt-p410-p210le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170411-291110657 +# @用例名称: fate-pixfmt-p410-p210le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-p210le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-p210le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-p210le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-p212be.sh b/testcase/fate-pixfmt-p410-p212be.sh new file mode 100755 index 0000000000000000000000000000000000000000..3320aaf093326d9d4c1177a87b393b553f56dc9d --- /dev/null +++ b/testcase/fate-pixfmt-p410-p212be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170411-383497158 +# @用例名称: fate-pixfmt-p410-p212be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-p212be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-p212be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-p212be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-p212le.sh b/testcase/fate-pixfmt-p410-p212le.sh new file mode 100755 index 0000000000000000000000000000000000000000..7a1e67b12c4570c7ed721811ef0cef679367eb3f --- /dev/null +++ b/testcase/fate-pixfmt-p410-p212le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170411-473771931 +# @用例名称: fate-pixfmt-p410-p212le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-p212le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-p212le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-p212le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-p216be.sh b/testcase/fate-pixfmt-p410-p216be.sh new file mode 100755 index 0000000000000000000000000000000000000000..bb60a022ea57ce79fb6773191b7f17c39e0a2a00 --- /dev/null +++ b/testcase/fate-pixfmt-p410-p216be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170411-561792348 +# @用例名称: fate-pixfmt-p410-p216be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-p216be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-p216be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-p216be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-p216le.sh b/testcase/fate-pixfmt-p410-p216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..153d6eb31f5dba40b43f24f4f20f2dd1da051524 --- /dev/null +++ b/testcase/fate-pixfmt-p410-p216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170411-646563889 +# @用例名称: fate-pixfmt-p410-p216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-p216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-p216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-p216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-p410be.sh b/testcase/fate-pixfmt-p410-p410be.sh new file mode 100755 index 0000000000000000000000000000000000000000..2bd4b97bcb06483f97a5a841d7149546276a2007 --- /dev/null +++ b/testcase/fate-pixfmt-p410-p410be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170411-735208133 +# @用例名称: fate-pixfmt-p410-p410be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-p410be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-p410be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-p410be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-p410le.sh b/testcase/fate-pixfmt-p410-p410le.sh new file mode 100755 index 0000000000000000000000000000000000000000..b5912dfa2109015c4895fdae6f09955f0069320c --- /dev/null +++ b/testcase/fate-pixfmt-p410-p410le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170411-823771460 +# @用例名称: fate-pixfmt-p410-p410le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-p410le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-p410le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-p410le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-p412be.sh b/testcase/fate-pixfmt-p410-p412be.sh new file mode 100755 index 0000000000000000000000000000000000000000..2108f637900cfae50748b2fa32e7251eee184524 --- /dev/null +++ b/testcase/fate-pixfmt-p410-p412be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170411-913974874 +# @用例名称: fate-pixfmt-p410-p412be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-p412be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-p412be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-p412be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-p412le.sh b/testcase/fate-pixfmt-p410-p412le.sh new file mode 100755 index 0000000000000000000000000000000000000000..ca13ffd76ce16b051204f32a56b7740ee06dad72 --- /dev/null +++ b/testcase/fate-pixfmt-p410-p412le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170412-004545581 +# @用例名称: fate-pixfmt-p410-p412le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-p412le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-p412le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-p412le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-p416be.sh b/testcase/fate-pixfmt-p410-p416be.sh new file mode 100755 index 0000000000000000000000000000000000000000..0fe57dd146fd6b3d6b77fdbd85c2600992b75e03 --- /dev/null +++ b/testcase/fate-pixfmt-p410-p416be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170412-096900863 +# @用例名称: fate-pixfmt-p410-p416be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-p416be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-p416be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-p416be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-p416le.sh b/testcase/fate-pixfmt-p410-p416le.sh new file mode 100755 index 0000000000000000000000000000000000000000..4985abf4819c194f35a776063d286eee21ad625e --- /dev/null +++ b/testcase/fate-pixfmt-p410-p416le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170412-189581278 +# @用例名称: fate-pixfmt-p410-p416le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-p416le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-p416le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-p416le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-rgb24.sh b/testcase/fate-pixfmt-p410-rgb24.sh new file mode 100755 index 0000000000000000000000000000000000000000..255eb221da4989a9fdacf022ab0efad10793943c --- /dev/null +++ b/testcase/fate-pixfmt-p410-rgb24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170412-280715474 +# @用例名称: fate-pixfmt-p410-rgb24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-rgb24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-rgb24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-rgb24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-rgb32.sh b/testcase/fate-pixfmt-p410-rgb32.sh new file mode 100755 index 0000000000000000000000000000000000000000..43879c6614d6e6560c1ac1d96ac9c0dc0482b4bf --- /dev/null +++ b/testcase/fate-pixfmt-p410-rgb32.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170412-373554577 +# @用例名称: fate-pixfmt-p410-rgb32 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-rgb32 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-rgb32 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-rgb32 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-rgb48.sh b/testcase/fate-pixfmt-p410-rgb48.sh new file mode 100755 index 0000000000000000000000000000000000000000..4a212855309dd876b0e3adb2b249e424477715af --- /dev/null +++ b/testcase/fate-pixfmt-p410-rgb48.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170412-463880439 +# @用例名称: fate-pixfmt-p410-rgb48 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-rgb48 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-rgb48 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-rgb48 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-rgb555.sh b/testcase/fate-pixfmt-p410-rgb555.sh new file mode 100755 index 0000000000000000000000000000000000000000..d5299383e154c6fd96543dbe907896a008223cc4 --- /dev/null +++ b/testcase/fate-pixfmt-p410-rgb555.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170412-554666172 +# @用例名称: fate-pixfmt-p410-rgb555 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-rgb555 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-rgb555 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-rgb555 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-rgb565.sh b/testcase/fate-pixfmt-p410-rgb565.sh new file mode 100755 index 0000000000000000000000000000000000000000..e82e69fbc4f731e3076b04195a05193ccc7d5317 --- /dev/null +++ b/testcase/fate-pixfmt-p410-rgb565.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170412-639984721 +# @用例名称: fate-pixfmt-p410-rgb565 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-rgb565 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-rgb565 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-rgb565 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-uyvy422.sh b/testcase/fate-pixfmt-p410-uyvy422.sh new file mode 100755 index 0000000000000000000000000000000000000000..eb4cdfcb11597708d128e602512e9e07fa30f3f1 --- /dev/null +++ b/testcase/fate-pixfmt-p410-uyvy422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170412-724438178 +# @用例名称: fate-pixfmt-p410-uyvy422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-uyvy422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-uyvy422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-uyvy422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-v30xle.sh b/testcase/fate-pixfmt-p410-v30xle.sh new file mode 100755 index 0000000000000000000000000000000000000000..b36cbbf0f540ad790ace14444943aa0f2cc95652 --- /dev/null +++ b/testcase/fate-pixfmt-p410-v30xle.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170412-812605953 +# @用例名称: fate-pixfmt-p410-v30xle +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-v30xle +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-v30xle + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-v30xle + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-vuyx.sh b/testcase/fate-pixfmt-p410-vuyx.sh new file mode 100755 index 0000000000000000000000000000000000000000..a9a776e7e4b2dad9803fe2fdec3d695cd154b47d --- /dev/null +++ b/testcase/fate-pixfmt-p410-vuyx.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170412-893126426 +# @用例名称: fate-pixfmt-p410-vuyx +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-vuyx +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-vuyx + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-vuyx + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-vyu444.sh b/testcase/fate-pixfmt-p410-vyu444.sh new file mode 100755 index 0000000000000000000000000000000000000000..407ec5ad47a6012f616e6b192694233ac2d42044 --- /dev/null +++ b/testcase/fate-pixfmt-p410-vyu444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170412-981657373 +# @用例名称: fate-pixfmt-p410-vyu444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-vyu444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-vyu444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-vyu444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-x2bgr10le.sh b/testcase/fate-pixfmt-p410-x2bgr10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..8d57d0d9dc8a6b1d9f0bacbfb6db3335dd3fc50a --- /dev/null +++ b/testcase/fate-pixfmt-p410-x2bgr10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170413-071859018 +# @用例名称: fate-pixfmt-p410-x2bgr10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-x2bgr10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-x2bgr10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-x2bgr10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-x2rgb10le.sh b/testcase/fate-pixfmt-p410-x2rgb10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..cf29784de75cca82dbe23af9313b03d3c5297541 --- /dev/null +++ b/testcase/fate-pixfmt-p410-x2rgb10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170413-162905565 +# @用例名称: fate-pixfmt-p410-x2rgb10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-x2rgb10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-x2rgb10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-x2rgb10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-xv30le.sh b/testcase/fate-pixfmt-p410-xv30le.sh new file mode 100755 index 0000000000000000000000000000000000000000..aa3502b6fe5bc738a4e42e2d9dc8751920fd94dd --- /dev/null +++ b/testcase/fate-pixfmt-p410-xv30le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170413-252823745 +# @用例名称: fate-pixfmt-p410-xv30le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-xv30le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-xv30le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-xv30le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-xv36be.sh b/testcase/fate-pixfmt-p410-xv36be.sh new file mode 100755 index 0000000000000000000000000000000000000000..eb76bb72e6a35ab2c63091b38fc4932962b85647 --- /dev/null +++ b/testcase/fate-pixfmt-p410-xv36be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170413-346662789 +# @用例名称: fate-pixfmt-p410-xv36be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-xv36be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-xv36be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-xv36be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-xv36le.sh b/testcase/fate-pixfmt-p410-xv36le.sh new file mode 100755 index 0000000000000000000000000000000000000000..32ef047833b66008fa8697f76dbaa05d6203496d --- /dev/null +++ b/testcase/fate-pixfmt-p410-xv36le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170413-438040579 +# @用例名称: fate-pixfmt-p410-xv36le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-xv36le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-xv36le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-xv36le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-xv48be.sh b/testcase/fate-pixfmt-p410-xv48be.sh new file mode 100755 index 0000000000000000000000000000000000000000..652efbd6993f0928625885abca8e686e71f74133 --- /dev/null +++ b/testcase/fate-pixfmt-p410-xv48be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170413-531173586 +# @用例名称: fate-pixfmt-p410-xv48be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-xv48be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-xv48be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-xv48be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-xv48le.sh b/testcase/fate-pixfmt-p410-xv48le.sh new file mode 100755 index 0000000000000000000000000000000000000000..ec0dc1aa037f46434436e7439ee5cd4d812739a7 --- /dev/null +++ b/testcase/fate-pixfmt-p410-xv48le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170413-623561488 +# @用例名称: fate-pixfmt-p410-xv48le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-xv48le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-xv48le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-xv48le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-xyz12le.sh b/testcase/fate-pixfmt-p410-xyz12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..f3bcd103063561bdc3d4f25b3a27ae4922a65513 --- /dev/null +++ b/testcase/fate-pixfmt-p410-xyz12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170413-715584026 +# @用例名称: fate-pixfmt-p410-xyz12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-xyz12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-xyz12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-xyz12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-y210le.sh b/testcase/fate-pixfmt-p410-y210le.sh new file mode 100755 index 0000000000000000000000000000000000000000..03d26debb16cff5450cee96d29a5ffe7c5d9b7a9 --- /dev/null +++ b/testcase/fate-pixfmt-p410-y210le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170413-803210750 +# @用例名称: fate-pixfmt-p410-y210le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-y210le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-y210le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-y210le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-y212le.sh b/testcase/fate-pixfmt-p410-y212le.sh new file mode 100755 index 0000000000000000000000000000000000000000..0218e2b407e35406cd32935f95bdb4287bab5e92 --- /dev/null +++ b/testcase/fate-pixfmt-p410-y212le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170413-896308318 +# @用例名称: fate-pixfmt-p410-y212le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-y212le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-y212le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-y212le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-y216le.sh b/testcase/fate-pixfmt-p410-y216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..9f028069bd60b5335c880f300a5ee77ee48c19a4 --- /dev/null +++ b/testcase/fate-pixfmt-p410-y216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170413-985812717 +# @用例名称: fate-pixfmt-p410-y216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-y216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-y216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-y216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv410p.sh b/testcase/fate-pixfmt-p410-yuv410p.sh new file mode 100755 index 0000000000000000000000000000000000000000..62105c74bb458b12ad19f83f5cb8b3b55b3bc5ab --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv410p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170414-077811215 +# @用例名称: fate-pixfmt-p410-yuv410p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv410p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv410p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv410p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv411p.sh b/testcase/fate-pixfmt-p410-yuv411p.sh new file mode 100755 index 0000000000000000000000000000000000000000..75c59e0539fc5cc783aa3290feab48d8a1f9bea4 --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv411p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170414-170282975 +# @用例名称: fate-pixfmt-p410-yuv411p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv411p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv411p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv411p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv420p.sh b/testcase/fate-pixfmt-p410-yuv420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..e0acbf6073d9fa4991a254ab8dbfed957bdf7ac1 --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170414-260930201 +# @用例名称: fate-pixfmt-p410-yuv420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv420p10be.sh b/testcase/fate-pixfmt-p410-yuv420p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..d6136bc307d50daab124acca3875ec80ee3a1064 --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv420p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170414-354556437 +# @用例名称: fate-pixfmt-p410-yuv420p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv420p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv420p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv420p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv420p10le.sh b/testcase/fate-pixfmt-p410-yuv420p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..05dec395e153facc9ea75c918b729325c921a54b --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv420p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170414-439845288 +# @用例名称: fate-pixfmt-p410-yuv420p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv420p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv420p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv420p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv420p12be.sh b/testcase/fate-pixfmt-p410-yuv420p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..d50e35bc6294e6f3e4c877a169a510ea4d3ef64b --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv420p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170414-530818438 +# @用例名称: fate-pixfmt-p410-yuv420p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv420p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv420p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv420p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv420p12le.sh b/testcase/fate-pixfmt-p410-yuv420p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..5044997609f36e2293395bca947e5560515dd314 --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv420p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170414-619830075 +# @用例名称: fate-pixfmt-p410-yuv420p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv420p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv420p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv420p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv420p16be.sh b/testcase/fate-pixfmt-p410-yuv420p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..203700e879a95e07c15d58039c8c25a9bfd1cf19 --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv420p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170414-708845393 +# @用例名称: fate-pixfmt-p410-yuv420p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv420p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv420p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv420p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv420p16le.sh b/testcase/fate-pixfmt-p410-yuv420p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..1074bcc21cd99e87d4f727f2d27346e479d3c45c --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv420p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170414-796908898 +# @用例名称: fate-pixfmt-p410-yuv420p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv420p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv420p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv420p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv422p.sh b/testcase/fate-pixfmt-p410-yuv422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..55b573393663ad23801870c5c5774365b3e4c364 --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170414-880085970 +# @用例名称: fate-pixfmt-p410-yuv422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv422p10be.sh b/testcase/fate-pixfmt-p410-yuv422p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..24cd78469275cde284422ccf412ba3db5d81da09 --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv422p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170414-967120967 +# @用例名称: fate-pixfmt-p410-yuv422p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv422p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv422p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv422p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv422p10le.sh b/testcase/fate-pixfmt-p410-yuv422p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..38191f3d7485eff143f280ad59884b072a261b2b --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv422p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170415-054050196 +# @用例名称: fate-pixfmt-p410-yuv422p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv422p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv422p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv422p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv422p12be.sh b/testcase/fate-pixfmt-p410-yuv422p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..d0350ac4dc4d69f0df6536f77977f8ed7613875b --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv422p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170415-148743531 +# @用例名称: fate-pixfmt-p410-yuv422p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv422p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv422p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv422p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv422p12le.sh b/testcase/fate-pixfmt-p410-yuv422p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..421d38f992ad4a971d42a99cbf24e83f194fb7b9 --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv422p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170415-241028335 +# @用例名称: fate-pixfmt-p410-yuv422p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv422p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv422p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv422p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv422p16be.sh b/testcase/fate-pixfmt-p410-yuv422p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..7218924275de9bbf61bb4742e20bcdb42ca20144 --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv422p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170415-326248077 +# @用例名称: fate-pixfmt-p410-yuv422p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv422p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv422p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv422p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv422p16le.sh b/testcase/fate-pixfmt-p410-yuv422p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..8e6706a6caee3ad071795e552b1974b821383699 --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv422p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170415-406781240 +# @用例名称: fate-pixfmt-p410-yuv422p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv422p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv422p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv422p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv440p.sh b/testcase/fate-pixfmt-p410-yuv440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..fae490476c4c40861c402d9291f418afbdf764ef --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170415-496989504 +# @用例名称: fate-pixfmt-p410-yuv440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv440p10be.sh b/testcase/fate-pixfmt-p410-yuv440p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..400cea09314ed9de7aa8544dac59718f781da9b0 --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv440p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170415-587336145 +# @用例名称: fate-pixfmt-p410-yuv440p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv440p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv440p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv440p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv440p10le.sh b/testcase/fate-pixfmt-p410-yuv440p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..9a18b2a3cad456a408bbc55e3791a8b397e0d581 --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv440p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170415-678446672 +# @用例名称: fate-pixfmt-p410-yuv440p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv440p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv440p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv440p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv440p12be.sh b/testcase/fate-pixfmt-p410-yuv440p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..af1c4d9698b8518028601c44d7a69ab3f9e1dce1 --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv440p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170415-770359593 +# @用例名称: fate-pixfmt-p410-yuv440p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv440p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv440p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv440p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv440p12le.sh b/testcase/fate-pixfmt-p410-yuv440p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..30ca2623986437cbfba04d99718f847713853e53 --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv440p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170415-859688204 +# @用例名称: fate-pixfmt-p410-yuv440p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv440p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv440p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv440p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv444p.sh b/testcase/fate-pixfmt-p410-yuv444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..ad7825edab523f5d69847bfc6cb84861f1390746 --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170415-947079514 +# @用例名称: fate-pixfmt-p410-yuv444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv444p10be.sh b/testcase/fate-pixfmt-p410-yuv444p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..11d9dd2830fbe7e916084aa1172184eb3db9f5e2 --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv444p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170416-035215968 +# @用例名称: fate-pixfmt-p410-yuv444p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv444p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv444p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv444p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv444p10le.sh b/testcase/fate-pixfmt-p410-yuv444p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..98ebd7390688676e3ff0b28c9eef5aecf7b44b4b --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv444p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170416-125828604 +# @用例名称: fate-pixfmt-p410-yuv444p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv444p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv444p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv444p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv444p10msbbe.sh b/testcase/fate-pixfmt-p410-yuv444p10msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..7c8484ba9bd3658f381acf2e9112d3e5ffc79c16 --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv444p10msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170416-209609135 +# @用例名称: fate-pixfmt-p410-yuv444p10msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv444p10msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv444p10msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv444p10msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv444p10msble.sh b/testcase/fate-pixfmt-p410-yuv444p10msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..5899de74dd30678ba208c52b6b4828d65bd41631 --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv444p10msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170416-290333504 +# @用例名称: fate-pixfmt-p410-yuv444p10msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv444p10msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv444p10msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv444p10msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv444p12be.sh b/testcase/fate-pixfmt-p410-yuv444p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..05ad456356d140ab93ad8b5f2311ec9eb628eb3f --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv444p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170416-377993948 +# @用例名称: fate-pixfmt-p410-yuv444p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv444p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv444p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv444p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv444p12le.sh b/testcase/fate-pixfmt-p410-yuv444p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..803355a1ae5276cb5841e6344fe86d309ff2251b --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv444p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170416-467267390 +# @用例名称: fate-pixfmt-p410-yuv444p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv444p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv444p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv444p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv444p12msbbe.sh b/testcase/fate-pixfmt-p410-yuv444p12msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..ca2b91bddc73406d35e4018625f5e18b8ea051ee --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv444p12msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170416-555949564 +# @用例名称: fate-pixfmt-p410-yuv444p12msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv444p12msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv444p12msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv444p12msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv444p12msble.sh b/testcase/fate-pixfmt-p410-yuv444p12msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..23a36cfed3ff941104828d7f7b8d2d67647fb4ab --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv444p12msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170416-644276196 +# @用例名称: fate-pixfmt-p410-yuv444p12msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv444p12msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv444p12msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv444p12msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv444p16be.sh b/testcase/fate-pixfmt-p410-yuv444p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..b40f16c6ab3703217e63b94da7bc2441acea3f5c --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv444p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170416-736470290 +# @用例名称: fate-pixfmt-p410-yuv444p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv444p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv444p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv444p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuv444p16le.sh b/testcase/fate-pixfmt-p410-yuv444p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..ce60ce6e1323eff43bed1e0562253978a952a554 --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuv444p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170416-825164895 +# @用例名称: fate-pixfmt-p410-yuv444p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv444p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuv444p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuv444p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuvj420p.sh b/testcase/fate-pixfmt-p410-yuvj420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..1638a4be529820bbb72d22f0f537e0e3151fd3c1 --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuvj420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170416-919738673 +# @用例名称: fate-pixfmt-p410-yuvj420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuvj420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuvj420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuvj420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuvj422p.sh b/testcase/fate-pixfmt-p410-yuvj422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..81d9910c690a391ab452b792d0fe17695daba35d --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuvj422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170417-011994576 +# @用例名称: fate-pixfmt-p410-yuvj422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuvj422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuvj422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuvj422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuvj440p.sh b/testcase/fate-pixfmt-p410-yuvj440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..d5c5e766cfb9b5ca446eb6e59d31945dcdbb5f6b --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuvj440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170417-103597664 +# @用例名称: fate-pixfmt-p410-yuvj440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuvj440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuvj440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuvj440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuvj444p.sh b/testcase/fate-pixfmt-p410-yuvj444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..94ff3f9a884a5f78678addce12f76c7f4516b8dd --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuvj444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170417-193930645 +# @用例名称: fate-pixfmt-p410-yuvj444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuvj444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuvj444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuvj444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yuyv422.sh b/testcase/fate-pixfmt-p410-yuyv422.sh new file mode 100755 index 0000000000000000000000000000000000000000..aa9655193ba5b5b908779553f4ef07a46f5031b4 --- /dev/null +++ b/testcase/fate-pixfmt-p410-yuyv422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170417-286416155 +# @用例名称: fate-pixfmt-p410-yuyv422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuyv422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yuyv422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yuyv422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p410-yvyu422.sh b/testcase/fate-pixfmt-p410-yvyu422.sh new file mode 100755 index 0000000000000000000000000000000000000000..8eea24aafe05be97b8a7f652d302487c345d5600 --- /dev/null +++ b/testcase/fate-pixfmt-p410-yvyu422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170417-377133029 +# @用例名称: fate-pixfmt-p410-yvyu422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p410-yvyu422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p410-yvyu422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p410-yvyu422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-bgr24.sh b/testcase/fate-pixfmt-p412-bgr24.sh new file mode 100755 index 0000000000000000000000000000000000000000..6b5c2fa599a24f4c1415e81593bc2264e715f94f --- /dev/null +++ b/testcase/fate-pixfmt-p412-bgr24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170417-470851535 +# @用例名称: fate-pixfmt-p412-bgr24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-bgr24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-bgr24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-bgr24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-gbrp10be.sh b/testcase/fate-pixfmt-p412-gbrp10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..5d409628b38b0d2d77de08b9f1d9bb5068b1f6e6 --- /dev/null +++ b/testcase/fate-pixfmt-p412-gbrp10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170417-561493720 +# @用例名称: fate-pixfmt-p412-gbrp10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-gbrp10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-gbrp10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-gbrp10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-gbrp10le.sh b/testcase/fate-pixfmt-p412-gbrp10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..b3c38f372302a78e41c172934af808026cd52bbc --- /dev/null +++ b/testcase/fate-pixfmt-p412-gbrp10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170417-654992690 +# @用例名称: fate-pixfmt-p412-gbrp10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-gbrp10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-gbrp10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-gbrp10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-gbrp12be.sh b/testcase/fate-pixfmt-p412-gbrp12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..c7db8e0c242cc7b3e0919932402f59e3878458db --- /dev/null +++ b/testcase/fate-pixfmt-p412-gbrp12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170417-745669755 +# @用例名称: fate-pixfmt-p412-gbrp12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-gbrp12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-gbrp12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-gbrp12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-gbrp12le.sh b/testcase/fate-pixfmt-p412-gbrp12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..7b5542f54f181ede9fcdfe2f76c0dc3cc787a06e --- /dev/null +++ b/testcase/fate-pixfmt-p412-gbrp12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170417-838208214 +# @用例名称: fate-pixfmt-p412-gbrp12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-gbrp12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-gbrp12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-gbrp12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-gbrp16be.sh b/testcase/fate-pixfmt-p412-gbrp16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..c23bfd29463d06762c97def4d7b9a5435aae42b1 --- /dev/null +++ b/testcase/fate-pixfmt-p412-gbrp16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170417-932997448 +# @用例名称: fate-pixfmt-p412-gbrp16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-gbrp16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-gbrp16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-gbrp16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-gbrp16le.sh b/testcase/fate-pixfmt-p412-gbrp16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..ba89c70af8ba4b944863b7327e6a185d2542ffa1 --- /dev/null +++ b/testcase/fate-pixfmt-p412-gbrp16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170418-022440008 +# @用例名称: fate-pixfmt-p412-gbrp16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-gbrp16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-gbrp16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-gbrp16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-gray.sh b/testcase/fate-pixfmt-p412-gray.sh new file mode 100755 index 0000000000000000000000000000000000000000..7c3d20a67ce604e5ecc1318587c8c765067f2e67 --- /dev/null +++ b/testcase/fate-pixfmt-p412-gray.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170418-113763830 +# @用例名称: fate-pixfmt-p412-gray +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-gray +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-gray + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-gray + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-gray10be.sh b/testcase/fate-pixfmt-p412-gray10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..001c985cd8f1349cae59f443cdf2a7a455b0cd54 --- /dev/null +++ b/testcase/fate-pixfmt-p412-gray10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170418-204440414 +# @用例名称: fate-pixfmt-p412-gray10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-gray10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-gray10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-gray10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-gray10le.sh b/testcase/fate-pixfmt-p412-gray10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..542bd3049e52a28c24118294c4924b7350fdd1bd --- /dev/null +++ b/testcase/fate-pixfmt-p412-gray10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170418-298035872 +# @用例名称: fate-pixfmt-p412-gray10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-gray10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-gray10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-gray10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-gray12be.sh b/testcase/fate-pixfmt-p412-gray12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..98ef7735ca1e7225bdb729ba7f04e08edde74e09 --- /dev/null +++ b/testcase/fate-pixfmt-p412-gray12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170418-390838345 +# @用例名称: fate-pixfmt-p412-gray12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-gray12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-gray12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-gray12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-gray12le.sh b/testcase/fate-pixfmt-p412-gray12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..f12525c53a1963b2601c716c5e8d822bede62450 --- /dev/null +++ b/testcase/fate-pixfmt-p412-gray12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170418-481846974 +# @用例名称: fate-pixfmt-p412-gray12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-gray12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-gray12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-gray12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-gray16be.sh b/testcase/fate-pixfmt-p412-gray16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..f9f9b249223f9407ed282ddd93f009ef9432b4df --- /dev/null +++ b/testcase/fate-pixfmt-p412-gray16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170418-574356872 +# @用例名称: fate-pixfmt-p412-gray16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-gray16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-gray16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-gray16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-gray16le.sh b/testcase/fate-pixfmt-p412-gray16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..409ee5f3fffd8cc1a08f175d4c9a973ac6a9c37e --- /dev/null +++ b/testcase/fate-pixfmt-p412-gray16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170418-664903471 +# @用例名称: fate-pixfmt-p412-gray16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-gray16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-gray16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-gray16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-monob.sh b/testcase/fate-pixfmt-p412-monob.sh new file mode 100755 index 0000000000000000000000000000000000000000..efd5219e87e6ab8ac60f562a73b0810dd898b62d --- /dev/null +++ b/testcase/fate-pixfmt-p412-monob.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170418-755922649 +# @用例名称: fate-pixfmt-p412-monob +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-monob +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-monob + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-monob + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-monow.sh b/testcase/fate-pixfmt-p412-monow.sh new file mode 100755 index 0000000000000000000000000000000000000000..b3c09ef6479819be9d1d82843926c6e2cf1d364b --- /dev/null +++ b/testcase/fate-pixfmt-p412-monow.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170418-842325678 +# @用例名称: fate-pixfmt-p412-monow +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-monow +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-monow + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-monow + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-nv12.sh b/testcase/fate-pixfmt-p412-nv12.sh new file mode 100755 index 0000000000000000000000000000000000000000..0515d0ba76ee030d502aabd5d639adedec948799 --- /dev/null +++ b/testcase/fate-pixfmt-p412-nv12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170418-934247558 +# @用例名称: fate-pixfmt-p412-nv12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-nv12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-nv12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-nv12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-nv16.sh b/testcase/fate-pixfmt-p412-nv16.sh new file mode 100755 index 0000000000000000000000000000000000000000..a33d18885e701fcc49d5e5ffe78117292c95b473 --- /dev/null +++ b/testcase/fate-pixfmt-p412-nv16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170419-023138888 +# @用例名称: fate-pixfmt-p412-nv16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-nv16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-nv16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-nv16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-nv24.sh b/testcase/fate-pixfmt-p412-nv24.sh new file mode 100755 index 0000000000000000000000000000000000000000..92b41d9958b057c2e7365d13d04b926cc7316fc0 --- /dev/null +++ b/testcase/fate-pixfmt-p412-nv24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170419-112110786 +# @用例名称: fate-pixfmt-p412-nv24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-nv24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-nv24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-nv24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-p010be.sh b/testcase/fate-pixfmt-p412-p010be.sh new file mode 100755 index 0000000000000000000000000000000000000000..87dfce4dbe0e6bff02e7e2540ad16265d71f131b --- /dev/null +++ b/testcase/fate-pixfmt-p412-p010be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170419-203588665 +# @用例名称: fate-pixfmt-p412-p010be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-p010be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-p010be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-p010be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-p010le.sh b/testcase/fate-pixfmt-p412-p010le.sh new file mode 100755 index 0000000000000000000000000000000000000000..dc314c43d93f8c523bd4eddcbd9c25128f2b8a92 --- /dev/null +++ b/testcase/fate-pixfmt-p412-p010le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170419-291953465 +# @用例名称: fate-pixfmt-p412-p010le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-p010le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-p010le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-p010le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-p012be.sh b/testcase/fate-pixfmt-p412-p012be.sh new file mode 100755 index 0000000000000000000000000000000000000000..95dc3c6cb997d01457eff9031d6d5ec68de3e48c --- /dev/null +++ b/testcase/fate-pixfmt-p412-p012be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170419-380244637 +# @用例名称: fate-pixfmt-p412-p012be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-p012be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-p012be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-p012be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-p012le.sh b/testcase/fate-pixfmt-p412-p012le.sh new file mode 100755 index 0000000000000000000000000000000000000000..49cb825ddb022b680448f6a8aa267cf4ea23d7b7 --- /dev/null +++ b/testcase/fate-pixfmt-p412-p012le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170419-470070369 +# @用例名称: fate-pixfmt-p412-p012le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-p012le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-p012le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-p012le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-p016be.sh b/testcase/fate-pixfmt-p412-p016be.sh new file mode 100755 index 0000000000000000000000000000000000000000..200641202117a159637378483db95b893a00ecb0 --- /dev/null +++ b/testcase/fate-pixfmt-p412-p016be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170419-562672866 +# @用例名称: fate-pixfmt-p412-p016be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-p016be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-p016be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-p016be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-p016le.sh b/testcase/fate-pixfmt-p412-p016le.sh new file mode 100755 index 0000000000000000000000000000000000000000..ca43886a1ff9f75bf9f39a57b7272f370b39abcf --- /dev/null +++ b/testcase/fate-pixfmt-p412-p016le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170419-652987048 +# @用例名称: fate-pixfmt-p412-p016le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-p016le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-p016le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-p016le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-p210be.sh b/testcase/fate-pixfmt-p412-p210be.sh new file mode 100755 index 0000000000000000000000000000000000000000..ad50849858fcfc48cf247d7106d5bc59be8786ca --- /dev/null +++ b/testcase/fate-pixfmt-p412-p210be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170419-744906878 +# @用例名称: fate-pixfmt-p412-p210be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-p210be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-p210be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-p210be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-p210le.sh b/testcase/fate-pixfmt-p412-p210le.sh new file mode 100755 index 0000000000000000000000000000000000000000..66e0b638c052e00cc361e73796c371537bd00d84 --- /dev/null +++ b/testcase/fate-pixfmt-p412-p210le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170419-839156454 +# @用例名称: fate-pixfmt-p412-p210le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-p210le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-p210le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-p210le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-p212be.sh b/testcase/fate-pixfmt-p412-p212be.sh new file mode 100755 index 0000000000000000000000000000000000000000..cd1ef75bd92efd75690e6b3d0da5088cb8bd2da5 --- /dev/null +++ b/testcase/fate-pixfmt-p412-p212be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170419-933461918 +# @用例名称: fate-pixfmt-p412-p212be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-p212be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-p212be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-p212be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-p212le.sh b/testcase/fate-pixfmt-p412-p212le.sh new file mode 100755 index 0000000000000000000000000000000000000000..61e22f6b8f5d49e387cdacc5fb7b6644399faba4 --- /dev/null +++ b/testcase/fate-pixfmt-p412-p212le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170420-029334391 +# @用例名称: fate-pixfmt-p412-p212le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-p212le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-p212le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-p212le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-p216be.sh b/testcase/fate-pixfmt-p412-p216be.sh new file mode 100755 index 0000000000000000000000000000000000000000..28473d2fa18c1ff3f2d00860624fc05853447e6f --- /dev/null +++ b/testcase/fate-pixfmt-p412-p216be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170420-122763582 +# @用例名称: fate-pixfmt-p412-p216be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-p216be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-p216be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-p216be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-p216le.sh b/testcase/fate-pixfmt-p412-p216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..a3fb9782abb1e706af593a17baaaa2cfdf8a1436 --- /dev/null +++ b/testcase/fate-pixfmt-p412-p216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170420-220588887 +# @用例名称: fate-pixfmt-p412-p216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-p216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-p216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-p216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-p410be.sh b/testcase/fate-pixfmt-p412-p410be.sh new file mode 100755 index 0000000000000000000000000000000000000000..d9df6b62c58c9b60f779f2763c3639fe06b2f4be --- /dev/null +++ b/testcase/fate-pixfmt-p412-p410be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170420-317395283 +# @用例名称: fate-pixfmt-p412-p410be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-p410be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-p410be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-p410be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-p410le.sh b/testcase/fate-pixfmt-p412-p410le.sh new file mode 100755 index 0000000000000000000000000000000000000000..7b7de1c3e0fa63c2cc5ba70322c88dfd2ff0160c --- /dev/null +++ b/testcase/fate-pixfmt-p412-p410le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170420-407659945 +# @用例名称: fate-pixfmt-p412-p410le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-p410le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-p410le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-p410le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-p412be.sh b/testcase/fate-pixfmt-p412-p412be.sh new file mode 100755 index 0000000000000000000000000000000000000000..46487b21383fed674693f536c046ff66c7effc79 --- /dev/null +++ b/testcase/fate-pixfmt-p412-p412be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170420-502773363 +# @用例名称: fate-pixfmt-p412-p412be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-p412be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-p412be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-p412be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-p412le.sh b/testcase/fate-pixfmt-p412-p412le.sh new file mode 100755 index 0000000000000000000000000000000000000000..b394d3ecc4fb207d237c412b08ffb0a308a76865 --- /dev/null +++ b/testcase/fate-pixfmt-p412-p412le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170420-597640397 +# @用例名称: fate-pixfmt-p412-p412le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-p412le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-p412le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-p412le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-p416be.sh b/testcase/fate-pixfmt-p412-p416be.sh new file mode 100755 index 0000000000000000000000000000000000000000..08164ea248d3d5cee60b897234d3878a7393eeae --- /dev/null +++ b/testcase/fate-pixfmt-p412-p416be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170420-688544236 +# @用例名称: fate-pixfmt-p412-p416be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-p416be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-p416be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-p416be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-p416le.sh b/testcase/fate-pixfmt-p412-p416le.sh new file mode 100755 index 0000000000000000000000000000000000000000..51a41ce8adbe0c0de9dbf7c2d3ba245b5bc0297c --- /dev/null +++ b/testcase/fate-pixfmt-p412-p416le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170420-781155673 +# @用例名称: fate-pixfmt-p412-p416le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-p416le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-p416le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-p416le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-rgb24.sh b/testcase/fate-pixfmt-p412-rgb24.sh new file mode 100755 index 0000000000000000000000000000000000000000..d6191afe9929ed8fb0b8d59bfd67aef560e5d8c0 --- /dev/null +++ b/testcase/fate-pixfmt-p412-rgb24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170420-869026054 +# @用例名称: fate-pixfmt-p412-rgb24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-rgb24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-rgb24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-rgb24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-rgb32.sh b/testcase/fate-pixfmt-p412-rgb32.sh new file mode 100755 index 0000000000000000000000000000000000000000..e00b799610e150d5456359629824d24756f1afb4 --- /dev/null +++ b/testcase/fate-pixfmt-p412-rgb32.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170420-957580530 +# @用例名称: fate-pixfmt-p412-rgb32 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-rgb32 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-rgb32 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-rgb32 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-rgb48.sh b/testcase/fate-pixfmt-p412-rgb48.sh new file mode 100755 index 0000000000000000000000000000000000000000..a117e360be0030545ac0e278f475f434d1c8ca8f --- /dev/null +++ b/testcase/fate-pixfmt-p412-rgb48.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170421-049311975 +# @用例名称: fate-pixfmt-p412-rgb48 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-rgb48 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-rgb48 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-rgb48 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-rgb555.sh b/testcase/fate-pixfmt-p412-rgb555.sh new file mode 100755 index 0000000000000000000000000000000000000000..28f190760b3059ba18489aa8f8bc79f12fd7b435 --- /dev/null +++ b/testcase/fate-pixfmt-p412-rgb555.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170421-140114377 +# @用例名称: fate-pixfmt-p412-rgb555 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-rgb555 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-rgb555 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-rgb555 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-rgb565.sh b/testcase/fate-pixfmt-p412-rgb565.sh new file mode 100755 index 0000000000000000000000000000000000000000..969970094c4ea1de038caa836a196d0facc2c95f --- /dev/null +++ b/testcase/fate-pixfmt-p412-rgb565.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170421-233666925 +# @用例名称: fate-pixfmt-p412-rgb565 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-rgb565 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-rgb565 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-rgb565 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-uyvy422.sh b/testcase/fate-pixfmt-p412-uyvy422.sh new file mode 100755 index 0000000000000000000000000000000000000000..0e559edbc29a21845dbbcd747691534f7a6bc8a7 --- /dev/null +++ b/testcase/fate-pixfmt-p412-uyvy422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170421-326386770 +# @用例名称: fate-pixfmt-p412-uyvy422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-uyvy422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-uyvy422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-uyvy422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-v30xle.sh b/testcase/fate-pixfmt-p412-v30xle.sh new file mode 100755 index 0000000000000000000000000000000000000000..9f48cf98f79570a224da825136502f369bdad736 --- /dev/null +++ b/testcase/fate-pixfmt-p412-v30xle.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170421-419578616 +# @用例名称: fate-pixfmt-p412-v30xle +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-v30xle +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-v30xle + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-v30xle + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-vuyx.sh b/testcase/fate-pixfmt-p412-vuyx.sh new file mode 100755 index 0000000000000000000000000000000000000000..37012b2105af13ebb4014356f6b933660069f3b8 --- /dev/null +++ b/testcase/fate-pixfmt-p412-vuyx.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170421-503708660 +# @用例名称: fate-pixfmt-p412-vuyx +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-vuyx +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-vuyx + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-vuyx + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-vyu444.sh b/testcase/fate-pixfmt-p412-vyu444.sh new file mode 100755 index 0000000000000000000000000000000000000000..1c7211744fc447dfb95a90899a54b1ea01316e64 --- /dev/null +++ b/testcase/fate-pixfmt-p412-vyu444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170421-584657904 +# @用例名称: fate-pixfmt-p412-vyu444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-vyu444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-vyu444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-vyu444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-x2bgr10le.sh b/testcase/fate-pixfmt-p412-x2bgr10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..dab7bde7380ca41085d5f33aa59f6add7ba58686 --- /dev/null +++ b/testcase/fate-pixfmt-p412-x2bgr10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170421-673930088 +# @用例名称: fate-pixfmt-p412-x2bgr10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-x2bgr10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-x2bgr10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-x2bgr10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-x2rgb10le.sh b/testcase/fate-pixfmt-p412-x2rgb10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..8a08861c82f634badbbbb3faf104f9e541609db6 --- /dev/null +++ b/testcase/fate-pixfmt-p412-x2rgb10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170421-764512574 +# @用例名称: fate-pixfmt-p412-x2rgb10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-x2rgb10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-x2rgb10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-x2rgb10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-xv30le.sh b/testcase/fate-pixfmt-p412-xv30le.sh new file mode 100755 index 0000000000000000000000000000000000000000..ac24e83b2a8b867bef24a0346d2fed72991c3ae4 --- /dev/null +++ b/testcase/fate-pixfmt-p412-xv30le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170421-859313398 +# @用例名称: fate-pixfmt-p412-xv30le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-xv30le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-xv30le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-xv30le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-xv36be.sh b/testcase/fate-pixfmt-p412-xv36be.sh new file mode 100755 index 0000000000000000000000000000000000000000..c8ac9b786bbebda1516c56a5b2d562f5a48d81ac --- /dev/null +++ b/testcase/fate-pixfmt-p412-xv36be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170421-949932694 +# @用例名称: fate-pixfmt-p412-xv36be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-xv36be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-xv36be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-xv36be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-xv36le.sh b/testcase/fate-pixfmt-p412-xv36le.sh new file mode 100755 index 0000000000000000000000000000000000000000..292a102ac7ddc6bc4fbb4d99a55aa62fd67850da --- /dev/null +++ b/testcase/fate-pixfmt-p412-xv36le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170422-042283486 +# @用例名称: fate-pixfmt-p412-xv36le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-xv36le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-xv36le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-xv36le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-xv48be.sh b/testcase/fate-pixfmt-p412-xv48be.sh new file mode 100755 index 0000000000000000000000000000000000000000..a059bc2e29cb93692cc01a2b8b7cb80dbc3c2496 --- /dev/null +++ b/testcase/fate-pixfmt-p412-xv48be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170422-134243916 +# @用例名称: fate-pixfmt-p412-xv48be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-xv48be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-xv48be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-xv48be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-xv48le.sh b/testcase/fate-pixfmt-p412-xv48le.sh new file mode 100755 index 0000000000000000000000000000000000000000..e12e81d9fb4503371d6dd6df16e241189fad217a --- /dev/null +++ b/testcase/fate-pixfmt-p412-xv48le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170422-225766625 +# @用例名称: fate-pixfmt-p412-xv48le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-xv48le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-xv48le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-xv48le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-xyz12le.sh b/testcase/fate-pixfmt-p412-xyz12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..f11c77e04f33dd7e61d8d53513a34dd230c4fb91 --- /dev/null +++ b/testcase/fate-pixfmt-p412-xyz12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170422-317406541 +# @用例名称: fate-pixfmt-p412-xyz12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-xyz12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-xyz12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-xyz12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-y210le.sh b/testcase/fate-pixfmt-p412-y210le.sh new file mode 100755 index 0000000000000000000000000000000000000000..4ee0008c0730a39e2c61b754a86073d65f2a6c5e --- /dev/null +++ b/testcase/fate-pixfmt-p412-y210le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170422-408454137 +# @用例名称: fate-pixfmt-p412-y210le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-y210le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-y210le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-y210le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-y212le.sh b/testcase/fate-pixfmt-p412-y212le.sh new file mode 100755 index 0000000000000000000000000000000000000000..059af0213e9ac84729372e45201fce0df3d00bad --- /dev/null +++ b/testcase/fate-pixfmt-p412-y212le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170422-494781838 +# @用例名称: fate-pixfmt-p412-y212le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-y212le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-y212le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-y212le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-y216le.sh b/testcase/fate-pixfmt-p412-y216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..7d0db3ad0f5c4e49b3d3344f0d35ae0393c3c70c --- /dev/null +++ b/testcase/fate-pixfmt-p412-y216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170422-581619359 +# @用例名称: fate-pixfmt-p412-y216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-y216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-y216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-y216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv410p.sh b/testcase/fate-pixfmt-p412-yuv410p.sh new file mode 100755 index 0000000000000000000000000000000000000000..f9f9b483a1ca92bf1782bc4e0eca2f264bfc2930 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv410p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170422-665476257 +# @用例名称: fate-pixfmt-p412-yuv410p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv410p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv410p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv410p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv411p.sh b/testcase/fate-pixfmt-p412-yuv411p.sh new file mode 100755 index 0000000000000000000000000000000000000000..c7a0bcc4ab111230c4895751945757147146798d --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv411p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170422-753960294 +# @用例名称: fate-pixfmt-p412-yuv411p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv411p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv411p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv411p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv420p.sh b/testcase/fate-pixfmt-p412-yuv420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..78ea68f1f8d03a70cb979c48b4656c1e368186af --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170422-841263286 +# @用例名称: fate-pixfmt-p412-yuv420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv420p10be.sh b/testcase/fate-pixfmt-p412-yuv420p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..601abc6e72780fa9ca402ca2a057032eb871114d --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv420p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170422-928122936 +# @用例名称: fate-pixfmt-p412-yuv420p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv420p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv420p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv420p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv420p10le.sh b/testcase/fate-pixfmt-p412-yuv420p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..dba8dc5e51239d875dd1bd72ca0f2d2e41ad4a0e --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv420p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170423-045722703 +# @用例名称: fate-pixfmt-p412-yuv420p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv420p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv420p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv420p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv420p12be.sh b/testcase/fate-pixfmt-p412-yuv420p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..6edb1614e2902272bc4b61a6b1865fe1c9cb3369 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv420p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170423-137820050 +# @用例名称: fate-pixfmt-p412-yuv420p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv420p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv420p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv420p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv420p12le.sh b/testcase/fate-pixfmt-p412-yuv420p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..6e2e384f05c810f20892e6578ac6343ebd333bf2 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv420p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170423-232678384 +# @用例名称: fate-pixfmt-p412-yuv420p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv420p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv420p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv420p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv420p16be.sh b/testcase/fate-pixfmt-p412-yuv420p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..4ae996f306f68642699c1a774becf3053ca7599c --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv420p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170423-326184533 +# @用例名称: fate-pixfmt-p412-yuv420p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv420p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv420p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv420p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv420p16le.sh b/testcase/fate-pixfmt-p412-yuv420p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..e64642b81e584a2263e0a6b11d911d59088eb132 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv420p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170423-418414247 +# @用例名称: fate-pixfmt-p412-yuv420p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv420p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv420p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv420p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv422p.sh b/testcase/fate-pixfmt-p412-yuv422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..77266efba961f336bd17efa4fc6289efb331f2b4 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170423-511338319 +# @用例名称: fate-pixfmt-p412-yuv422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv422p10be.sh b/testcase/fate-pixfmt-p412-yuv422p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..6b4c77b68995f8a90d9b60a267303f66815d8c28 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv422p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170423-600651199 +# @用例名称: fate-pixfmt-p412-yuv422p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv422p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv422p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv422p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv422p10le.sh b/testcase/fate-pixfmt-p412-yuv422p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..511b21e907ebaa43e5c75de327e1738fb9060d54 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv422p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170423-691805016 +# @用例名称: fate-pixfmt-p412-yuv422p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv422p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv422p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv422p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv422p12be.sh b/testcase/fate-pixfmt-p412-yuv422p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..5774bb1bce57abf0233d63e96817c5c13ad99a62 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv422p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170423-781582538 +# @用例名称: fate-pixfmt-p412-yuv422p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv422p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv422p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv422p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv422p12le.sh b/testcase/fate-pixfmt-p412-yuv422p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..9453bf3b63d26c30c6287d424d325ac3ce652895 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv422p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170423-875696226 +# @用例名称: fate-pixfmt-p412-yuv422p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv422p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv422p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv422p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv422p16be.sh b/testcase/fate-pixfmt-p412-yuv422p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..075a0aeaa17c84fbec648fe55dace213299be021 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv422p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170423-968809233 +# @用例名称: fate-pixfmt-p412-yuv422p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv422p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv422p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv422p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv422p16le.sh b/testcase/fate-pixfmt-p412-yuv422p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..fbd7e2bf05a088ce92900ababeeacddf5deec28d --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv422p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170424-060253113 +# @用例名称: fate-pixfmt-p412-yuv422p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv422p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv422p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv422p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv440p.sh b/testcase/fate-pixfmt-p412-yuv440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..1cbe999e67bcf3d7d605e151e41909ba302ff3cb --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170424-148163712 +# @用例名称: fate-pixfmt-p412-yuv440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv440p10be.sh b/testcase/fate-pixfmt-p412-yuv440p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..f3f4bc08f5843b8bd3f4456362a9fda03d31337b --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv440p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170424-236971734 +# @用例名称: fate-pixfmt-p412-yuv440p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv440p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv440p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv440p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv440p10le.sh b/testcase/fate-pixfmt-p412-yuv440p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..3e389592fee8df60651ac1ab5f12598b9905cf0d --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv440p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170424-324036670 +# @用例名称: fate-pixfmt-p412-yuv440p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv440p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv440p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv440p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv440p12be.sh b/testcase/fate-pixfmt-p412-yuv440p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..aad01a986ff5745b5b729cc55a8f0afdda4759ff --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv440p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170424-413397150 +# @用例名称: fate-pixfmt-p412-yuv440p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv440p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv440p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv440p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv440p12le.sh b/testcase/fate-pixfmt-p412-yuv440p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..e48d1266c59adb00130bdc2ff749f4d478f6407a --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv440p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170424-504084376 +# @用例名称: fate-pixfmt-p412-yuv440p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv440p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv440p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv440p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv444p.sh b/testcase/fate-pixfmt-p412-yuv444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..fe6bd6d98d6618d24c9ba4c3ed844ba0a1ea91e0 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170424-594690082 +# @用例名称: fate-pixfmt-p412-yuv444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv444p10be.sh b/testcase/fate-pixfmt-p412-yuv444p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..165b18697763f0fc08ac7a42ff58cc5fd6d6c3d5 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv444p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170424-681132420 +# @用例名称: fate-pixfmt-p412-yuv444p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv444p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv444p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv444p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv444p10le.sh b/testcase/fate-pixfmt-p412-yuv444p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..a44f12dd1de57b336596fdd6961558ba85655004 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv444p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170424-770641597 +# @用例名称: fate-pixfmt-p412-yuv444p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv444p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv444p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv444p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv444p10msbbe.sh b/testcase/fate-pixfmt-p412-yuv444p10msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..4cff163d53e0b9ef3d9dd34d877359daa1fecd41 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv444p10msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170424-864743775 +# @用例名称: fate-pixfmt-p412-yuv444p10msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv444p10msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv444p10msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv444p10msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv444p10msble.sh b/testcase/fate-pixfmt-p412-yuv444p10msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..151307e37dce0763f52e199abd97a6910dea1cf4 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv444p10msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170424-958339393 +# @用例名称: fate-pixfmt-p412-yuv444p10msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv444p10msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv444p10msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv444p10msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv444p12be.sh b/testcase/fate-pixfmt-p412-yuv444p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..4de880ce21f767049df20dc2dbdda60681058d69 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv444p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170425-048178354 +# @用例名称: fate-pixfmt-p412-yuv444p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv444p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv444p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv444p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv444p12le.sh b/testcase/fate-pixfmt-p412-yuv444p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..7374b5cb60e856eecf34566ad88660d019dd4465 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv444p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170425-138983686 +# @用例名称: fate-pixfmt-p412-yuv444p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv444p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv444p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv444p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv444p12msbbe.sh b/testcase/fate-pixfmt-p412-yuv444p12msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..aed8a507b045c62293c190d8ab1a4c42799f65db --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv444p12msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170425-229194051 +# @用例名称: fate-pixfmt-p412-yuv444p12msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv444p12msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv444p12msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv444p12msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv444p12msble.sh b/testcase/fate-pixfmt-p412-yuv444p12msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..de46b8f250d5b2f59d31d8645a1039cd0fea1f93 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv444p12msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170425-316700467 +# @用例名称: fate-pixfmt-p412-yuv444p12msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv444p12msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv444p12msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv444p12msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv444p16be.sh b/testcase/fate-pixfmt-p412-yuv444p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..afaf90d9d98cdb596f8713215754261ed8966273 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv444p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170425-409084549 +# @用例名称: fate-pixfmt-p412-yuv444p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv444p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv444p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv444p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuv444p16le.sh b/testcase/fate-pixfmt-p412-yuv444p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..7b0bdac90bf56bd3866e567a61134a41d2f7578e --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuv444p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170425-501799774 +# @用例名称: fate-pixfmt-p412-yuv444p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv444p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuv444p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuv444p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuvj420p.sh b/testcase/fate-pixfmt-p412-yuvj420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..f82b45ea25da01b346337c3cb7493a0f535b0a17 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuvj420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170425-589665534 +# @用例名称: fate-pixfmt-p412-yuvj420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuvj420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuvj420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuvj420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuvj422p.sh b/testcase/fate-pixfmt-p412-yuvj422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..bb5089be7b82403a6b22d3ceabafaa76d99bb793 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuvj422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170425-680136263 +# @用例名称: fate-pixfmt-p412-yuvj422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuvj422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuvj422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuvj422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuvj440p.sh b/testcase/fate-pixfmt-p412-yuvj440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..55b4f50f0cacb5e862425d5870f2053b70ceacb0 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuvj440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170425-767199129 +# @用例名称: fate-pixfmt-p412-yuvj440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuvj440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuvj440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuvj440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuvj444p.sh b/testcase/fate-pixfmt-p412-yuvj444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..8e29a62814a7895948ea2da0749789da091072d7 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuvj444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170425-854899412 +# @用例名称: fate-pixfmt-p412-yuvj444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuvj444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuvj444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuvj444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yuyv422.sh b/testcase/fate-pixfmt-p412-yuyv422.sh new file mode 100755 index 0000000000000000000000000000000000000000..550144d63df3ed562bad635cd4a7af598a9d5ec2 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yuyv422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170425-940861269 +# @用例名称: fate-pixfmt-p412-yuyv422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuyv422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yuyv422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yuyv422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p412-yvyu422.sh b/testcase/fate-pixfmt-p412-yvyu422.sh new file mode 100755 index 0000000000000000000000000000000000000000..2837eeb5b7aa8961f7bd353a887e9d7baf22bb60 --- /dev/null +++ b/testcase/fate-pixfmt-p412-yvyu422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170426-031313359 +# @用例名称: fate-pixfmt-p412-yvyu422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p412-yvyu422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p412-yvyu422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p412-yvyu422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p416-gbrp16be.sh b/testcase/fate-pixfmt-p416-gbrp16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..b1ec1845385b2305c5795cf7d1683e7655214ce7 --- /dev/null +++ b/testcase/fate-pixfmt-p416-gbrp16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170426-123166610 +# @用例名称: fate-pixfmt-p416-gbrp16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p416-gbrp16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p416-gbrp16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p416-gbrp16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p416-gbrp16le.sh b/testcase/fate-pixfmt-p416-gbrp16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..134fad9ca5b45370425093d3df737eb60d6d1363 --- /dev/null +++ b/testcase/fate-pixfmt-p416-gbrp16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170426-213532661 +# @用例名称: fate-pixfmt-p416-gbrp16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p416-gbrp16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p416-gbrp16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p416-gbrp16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p416-gray16be.sh b/testcase/fate-pixfmt-p416-gray16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..6868d45e144411f1193562cb756c87b0fa959851 --- /dev/null +++ b/testcase/fate-pixfmt-p416-gray16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170426-305744956 +# @用例名称: fate-pixfmt-p416-gray16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p416-gray16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p416-gray16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p416-gray16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p416-gray16le.sh b/testcase/fate-pixfmt-p416-gray16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..8480a833de88879958800d62125b49bd72590db7 --- /dev/null +++ b/testcase/fate-pixfmt-p416-gray16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170426-398755506 +# @用例名称: fate-pixfmt-p416-gray16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p416-gray16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p416-gray16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p416-gray16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p416-p016be.sh b/testcase/fate-pixfmt-p416-p016be.sh new file mode 100755 index 0000000000000000000000000000000000000000..f7b6a5e53960c1d4a90a725abeac724d2c98fff9 --- /dev/null +++ b/testcase/fate-pixfmt-p416-p016be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170426-490534019 +# @用例名称: fate-pixfmt-p416-p016be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p416-p016be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p416-p016be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p416-p016be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p416-p016le.sh b/testcase/fate-pixfmt-p416-p016le.sh new file mode 100755 index 0000000000000000000000000000000000000000..687af1038e5c16cf590de99d1dc44ee0d855d4d3 --- /dev/null +++ b/testcase/fate-pixfmt-p416-p016le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170426-581591777 +# @用例名称: fate-pixfmt-p416-p016le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p416-p016le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p416-p016le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p416-p016le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p416-p216be.sh b/testcase/fate-pixfmt-p416-p216be.sh new file mode 100755 index 0000000000000000000000000000000000000000..09f4026daf7902dd2987edeefec731b02504e4fc --- /dev/null +++ b/testcase/fate-pixfmt-p416-p216be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170426-671331821 +# @用例名称: fate-pixfmt-p416-p216be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p416-p216be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p416-p216be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p416-p216be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p416-p216le.sh b/testcase/fate-pixfmt-p416-p216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..ab9800f8a355c3cb68f0067d7309ee6b6bd5b7e1 --- /dev/null +++ b/testcase/fate-pixfmt-p416-p216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170426-761766020 +# @用例名称: fate-pixfmt-p416-p216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p416-p216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p416-p216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p416-p216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p416-p416be.sh b/testcase/fate-pixfmt-p416-p416be.sh new file mode 100755 index 0000000000000000000000000000000000000000..af67624e6cc6ec5355ce9e0770fca0a528fb9a7a --- /dev/null +++ b/testcase/fate-pixfmt-p416-p416be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170426-854411756 +# @用例名称: fate-pixfmt-p416-p416be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p416-p416be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p416-p416be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p416-p416be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p416-p416le.sh b/testcase/fate-pixfmt-p416-p416le.sh new file mode 100755 index 0000000000000000000000000000000000000000..49b533459ed897bd94d13bea20f6e37372c6e422 --- /dev/null +++ b/testcase/fate-pixfmt-p416-p416le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170426-946169770 +# @用例名称: fate-pixfmt-p416-p416le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p416-p416le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p416-p416le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p416-p416le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p416-rgb48.sh b/testcase/fate-pixfmt-p416-rgb48.sh new file mode 100755 index 0000000000000000000000000000000000000000..53fa4059b4bb21e293c32a52bc5a16b1fe846431 --- /dev/null +++ b/testcase/fate-pixfmt-p416-rgb48.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170427-038653849 +# @用例名称: fate-pixfmt-p416-rgb48 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p416-rgb48 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p416-rgb48 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p416-rgb48 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p416-xv48be.sh b/testcase/fate-pixfmt-p416-xv48be.sh new file mode 100755 index 0000000000000000000000000000000000000000..0e26369e0b742ec65b94d3711293140285831ef2 --- /dev/null +++ b/testcase/fate-pixfmt-p416-xv48be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170427-132849965 +# @用例名称: fate-pixfmt-p416-xv48be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p416-xv48be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p416-xv48be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p416-xv48be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p416-xv48le.sh b/testcase/fate-pixfmt-p416-xv48le.sh new file mode 100755 index 0000000000000000000000000000000000000000..fbfdc9ad0beecf9d246dda4a01563387219d2a6b --- /dev/null +++ b/testcase/fate-pixfmt-p416-xv48le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170427-226070851 +# @用例名称: fate-pixfmt-p416-xv48le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p416-xv48le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p416-xv48le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p416-xv48le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p416-y216le.sh b/testcase/fate-pixfmt-p416-y216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..d972234cb402bec68c07f4fa8362e14b224ccfdd --- /dev/null +++ b/testcase/fate-pixfmt-p416-y216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170427-319407993 +# @用例名称: fate-pixfmt-p416-y216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p416-y216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p416-y216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p416-y216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p416-yuv420p16be.sh b/testcase/fate-pixfmt-p416-yuv420p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..25c6a2ef0684cfdbd68961c7f3e2ff39df2e5af4 --- /dev/null +++ b/testcase/fate-pixfmt-p416-yuv420p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170427-410242045 +# @用例名称: fate-pixfmt-p416-yuv420p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p416-yuv420p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p416-yuv420p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p416-yuv420p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p416-yuv420p16le.sh b/testcase/fate-pixfmt-p416-yuv420p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..5a1b99d42390cbc18bbabcf7da0812394e34c8ac --- /dev/null +++ b/testcase/fate-pixfmt-p416-yuv420p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170427-504120438 +# @用例名称: fate-pixfmt-p416-yuv420p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p416-yuv420p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p416-yuv420p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p416-yuv420p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p416-yuv422p16be.sh b/testcase/fate-pixfmt-p416-yuv422p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..7007bf311c51e16e7fde37ce1f603cd7f4938dd8 --- /dev/null +++ b/testcase/fate-pixfmt-p416-yuv422p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170427-594108366 +# @用例名称: fate-pixfmt-p416-yuv422p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p416-yuv422p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p416-yuv422p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p416-yuv422p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p416-yuv422p16le.sh b/testcase/fate-pixfmt-p416-yuv422p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..ed3ba549be87eff11315d8eaa93c90a4c97a3cd7 --- /dev/null +++ b/testcase/fate-pixfmt-p416-yuv422p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170427-678447315 +# @用例名称: fate-pixfmt-p416-yuv422p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p416-yuv422p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p416-yuv422p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p416-yuv422p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p416-yuv444p16be.sh b/testcase/fate-pixfmt-p416-yuv444p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..345def29fdf7415155837f589b0163a5532f0fb5 --- /dev/null +++ b/testcase/fate-pixfmt-p416-yuv444p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170427-761928370 +# @用例名称: fate-pixfmt-p416-yuv444p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p416-yuv444p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p416-yuv444p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p416-yuv444p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-p416-yuv444p16le.sh b/testcase/fate-pixfmt-p416-yuv444p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..dbae6e56f8dac62318cf218db4282bde4840e48a --- /dev/null +++ b/testcase/fate-pixfmt-p416-yuv444p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170427-846240501 +# @用例名称: fate-pixfmt-p416-yuv444p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-p416-yuv444p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-p416-yuv444p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-p416-yuv444p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-bgr24.sh b/testcase/fate-pixfmt-rgb24-bgr24.sh new file mode 100755 index 0000000000000000000000000000000000000000..7e94d977d237e002ef0b51373a8ed97856620cbf --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-bgr24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170428-024880084 +# @用例名称: fate-pixfmt-rgb24-bgr24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-bgr24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-bgr24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-bgr24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-gbrp10be.sh b/testcase/fate-pixfmt-rgb24-gbrp10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..a767053d2eef21cd1e8d4741cb6f73fb397d5893 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-gbrp10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170428-119583729 +# @用例名称: fate-pixfmt-rgb24-gbrp10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gbrp10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gbrp10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-gbrp10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-gbrp10le.sh b/testcase/fate-pixfmt-rgb24-gbrp10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..86087aeadffdd8e0cde55f90b5cd6c445c3541bd --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-gbrp10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170428-211931012 +# @用例名称: fate-pixfmt-rgb24-gbrp10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gbrp10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gbrp10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-gbrp10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-gbrp12be.sh b/testcase/fate-pixfmt-rgb24-gbrp12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..0d6d973bc6609c2ae88912c6a2c18a0200f2713b --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-gbrp12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170428-306080229 +# @用例名称: fate-pixfmt-rgb24-gbrp12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gbrp12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gbrp12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-gbrp12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-gbrp12le.sh b/testcase/fate-pixfmt-rgb24-gbrp12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..241efcf7c806a8be6f061d74295177706f361e57 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-gbrp12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170428-395792343 +# @用例名称: fate-pixfmt-rgb24-gbrp12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gbrp12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gbrp12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-gbrp12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-gbrp16be.sh b/testcase/fate-pixfmt-rgb24-gbrp16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..a1d204893cf05b5ad50dc11eaf7b89fe813a3a13 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-gbrp16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170428-487606165 +# @用例名称: fate-pixfmt-rgb24-gbrp16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gbrp16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gbrp16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-gbrp16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-gbrp16le.sh b/testcase/fate-pixfmt-rgb24-gbrp16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..05ae91c44c328eec270015464f75b6540173b6ba --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-gbrp16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170428-586526069 +# @用例名称: fate-pixfmt-rgb24-gbrp16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gbrp16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gbrp16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-gbrp16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-gray.sh b/testcase/fate-pixfmt-rgb24-gray.sh new file mode 100755 index 0000000000000000000000000000000000000000..ac8fe5c43209c46cf2537a47563a62c61fef55d1 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-gray.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170428-680298753 +# @用例名称: fate-pixfmt-rgb24-gray +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gray +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gray + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-gray + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-gray10be.sh b/testcase/fate-pixfmt-rgb24-gray10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..2341e5cd3ba27991f6d928ff0e82339dda937dda --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-gray10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170428-770726973 +# @用例名称: fate-pixfmt-rgb24-gray10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gray10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gray10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-gray10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-gray10le.sh b/testcase/fate-pixfmt-rgb24-gray10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..bb4f6a3c3a123458815874f35528f981b94454fb --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-gray10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170428-858739390 +# @用例名称: fate-pixfmt-rgb24-gray10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gray10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gray10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-gray10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-gray12be.sh b/testcase/fate-pixfmt-rgb24-gray12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..f8d2c27a7b62e5b12427e5bcb0733b319b1d0336 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-gray12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170428-953470506 +# @用例名称: fate-pixfmt-rgb24-gray12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gray12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gray12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-gray12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-gray12le.sh b/testcase/fate-pixfmt-rgb24-gray12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..b20a2c5168318c1af87d1a43b442d01b72bf565d --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-gray12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170429-045750300 +# @用例名称: fate-pixfmt-rgb24-gray12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gray12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gray12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-gray12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-gray16be.sh b/testcase/fate-pixfmt-rgb24-gray16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..b28e9f16edadf3a62f0c26d2c81adb73646929a4 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-gray16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170429-139675290 +# @用例名称: fate-pixfmt-rgb24-gray16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gray16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gray16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-gray16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-gray16le.sh b/testcase/fate-pixfmt-rgb24-gray16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..3e43392209926db3e9391d0d2d4d6951005fb11f --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-gray16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170429-228948893 +# @用例名称: fate-pixfmt-rgb24-gray16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gray16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-gray16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-gray16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-monob.sh b/testcase/fate-pixfmt-rgb24-monob.sh new file mode 100755 index 0000000000000000000000000000000000000000..ed215a11a240e01ab17099199b182616c21fb9d9 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-monob.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170429-311686953 +# @用例名称: fate-pixfmt-rgb24-monob +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-monob +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-monob + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-monob + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-monow.sh b/testcase/fate-pixfmt-rgb24-monow.sh new file mode 100755 index 0000000000000000000000000000000000000000..6d9c947321fb2fd3492cc2e9cdede82462b12eb4 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-monow.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170429-391178787 +# @用例名称: fate-pixfmt-rgb24-monow +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-monow +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-monow + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-monow + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-nv12.sh b/testcase/fate-pixfmt-rgb24-nv12.sh new file mode 100755 index 0000000000000000000000000000000000000000..5838af08351a9dcca37d422160adefefe6e927a0 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-nv12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170429-477037696 +# @用例名称: fate-pixfmt-rgb24-nv12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-nv12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-nv12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-nv12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-nv16.sh b/testcase/fate-pixfmt-rgb24-nv16.sh new file mode 100755 index 0000000000000000000000000000000000000000..7ef707ecbbade19bd7253316fc729a3957a3eced --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-nv16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170429-568562395 +# @用例名称: fate-pixfmt-rgb24-nv16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-nv16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-nv16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-nv16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-nv24.sh b/testcase/fate-pixfmt-rgb24-nv24.sh new file mode 100755 index 0000000000000000000000000000000000000000..20e1c254ebc50f701e19340819214e6b76f86ba1 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-nv24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170429-655485503 +# @用例名称: fate-pixfmt-rgb24-nv24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-nv24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-nv24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-nv24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-p010be.sh b/testcase/fate-pixfmt-rgb24-p010be.sh new file mode 100755 index 0000000000000000000000000000000000000000..100ed331c34bcc3ac21d9327049f4f3c5e744e29 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-p010be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170429-748781507 +# @用例名称: fate-pixfmt-rgb24-p010be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p010be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p010be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-p010be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-p010le.sh b/testcase/fate-pixfmt-rgb24-p010le.sh new file mode 100755 index 0000000000000000000000000000000000000000..2c8f835e57211e0de0010cc255ed0892be32a459 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-p010le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170429-839639658 +# @用例名称: fate-pixfmt-rgb24-p010le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p010le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p010le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-p010le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-p012be.sh b/testcase/fate-pixfmt-rgb24-p012be.sh new file mode 100755 index 0000000000000000000000000000000000000000..057a1edbe504466fa56a162087385f30e1a582de --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-p012be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170429-932374003 +# @用例名称: fate-pixfmt-rgb24-p012be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p012be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p012be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-p012be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-p012le.sh b/testcase/fate-pixfmt-rgb24-p012le.sh new file mode 100755 index 0000000000000000000000000000000000000000..f75dd75fb973d23017c9b60dfe416ef188f0e6a2 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-p012le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170430-026314854 +# @用例名称: fate-pixfmt-rgb24-p012le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p012le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p012le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-p012le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-p016be.sh b/testcase/fate-pixfmt-rgb24-p016be.sh new file mode 100755 index 0000000000000000000000000000000000000000..98045e1ad49d80ac1a31f216ef8d5b012bc70ffc --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-p016be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170430-125351566 +# @用例名称: fate-pixfmt-rgb24-p016be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p016be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p016be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-p016be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-p016le.sh b/testcase/fate-pixfmt-rgb24-p016le.sh new file mode 100755 index 0000000000000000000000000000000000000000..b088ddce2ee637f7c85bf1f30b7362c2b18032ef --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-p016le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170430-216900713 +# @用例名称: fate-pixfmt-rgb24-p016le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p016le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p016le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-p016le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-p210be.sh b/testcase/fate-pixfmt-rgb24-p210be.sh new file mode 100755 index 0000000000000000000000000000000000000000..98c66b82a76d0478ad6b8b56da58d189ea047a92 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-p210be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170430-309178327 +# @用例名称: fate-pixfmt-rgb24-p210be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p210be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p210be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-p210be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-p210le.sh b/testcase/fate-pixfmt-rgb24-p210le.sh new file mode 100755 index 0000000000000000000000000000000000000000..123e7bde13c702833ccbb2b960702c254b376893 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-p210le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170430-401648376 +# @用例名称: fate-pixfmt-rgb24-p210le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p210le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p210le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-p210le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-p212be.sh b/testcase/fate-pixfmt-rgb24-p212be.sh new file mode 100755 index 0000000000000000000000000000000000000000..cb2749bf9d0baa319eb3b5e22a87e221e622153b --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-p212be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170430-493495349 +# @用例名称: fate-pixfmt-rgb24-p212be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p212be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p212be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-p212be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-p212le.sh b/testcase/fate-pixfmt-rgb24-p212le.sh new file mode 100755 index 0000000000000000000000000000000000000000..557421005394b452bd4481a6afd9355fabd81627 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-p212le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170430-584334640 +# @用例名称: fate-pixfmt-rgb24-p212le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p212le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p212le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-p212le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-p216be.sh b/testcase/fate-pixfmt-rgb24-p216be.sh new file mode 100755 index 0000000000000000000000000000000000000000..4a83ca9ac1cc0c615ea89c6b1cad7b2fc29b599a --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-p216be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170430-675186932 +# @用例名称: fate-pixfmt-rgb24-p216be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p216be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p216be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-p216be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-p216le.sh b/testcase/fate-pixfmt-rgb24-p216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..37d4b733acd9fe1ac199fd5732b2f867f442f012 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-p216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170430-755251894 +# @用例名称: fate-pixfmt-rgb24-p216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-p216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-p410be.sh b/testcase/fate-pixfmt-rgb24-p410be.sh new file mode 100755 index 0000000000000000000000000000000000000000..ccb02fe3e4e0adfc425e9843329d5f0fb13af474 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-p410be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170430-841048545 +# @用例名称: fate-pixfmt-rgb24-p410be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p410be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p410be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-p410be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-p410le.sh b/testcase/fate-pixfmt-rgb24-p410le.sh new file mode 100755 index 0000000000000000000000000000000000000000..9ccd467570662009473ad6ccecb660bbd671c897 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-p410le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170430-932158902 +# @用例名称: fate-pixfmt-rgb24-p410le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p410le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p410le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-p410le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-p412be.sh b/testcase/fate-pixfmt-rgb24-p412be.sh new file mode 100755 index 0000000000000000000000000000000000000000..0700ed8a99e48bd11041e699957d4e8591b00550 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-p412be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170431-022186940 +# @用例名称: fate-pixfmt-rgb24-p412be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p412be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p412be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-p412be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-p412le.sh b/testcase/fate-pixfmt-rgb24-p412le.sh new file mode 100755 index 0000000000000000000000000000000000000000..04233df87403b264c7200e89532e8c1088461392 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-p412le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170431-113564700 +# @用例名称: fate-pixfmt-rgb24-p412le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p412le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p412le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-p412le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-p416be.sh b/testcase/fate-pixfmt-rgb24-p416be.sh new file mode 100755 index 0000000000000000000000000000000000000000..013827cbfa848e7c9b80438cf6bd464d68c4cfbf --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-p416be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170431-200564848 +# @用例名称: fate-pixfmt-rgb24-p416be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p416be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p416be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-p416be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-p416le.sh b/testcase/fate-pixfmt-rgb24-p416le.sh new file mode 100755 index 0000000000000000000000000000000000000000..7c93e271ef40c064a37f4a9ff8a3861699deef71 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-p416le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170431-294725224 +# @用例名称: fate-pixfmt-rgb24-p416le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p416le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-p416le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-p416le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-rgb24.sh b/testcase/fate-pixfmt-rgb24-rgb24.sh new file mode 100755 index 0000000000000000000000000000000000000000..3d74688e67041dd46eba34cd2c4fe9d77c493d99 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-rgb24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170431-385725653 +# @用例名称: fate-pixfmt-rgb24-rgb24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-rgb24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-rgb24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-rgb24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-rgb32.sh b/testcase/fate-pixfmt-rgb24-rgb32.sh new file mode 100755 index 0000000000000000000000000000000000000000..bc4606510297dccc5f4987a512a927e6b9c49362 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-rgb32.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170431-476479327 +# @用例名称: fate-pixfmt-rgb24-rgb32 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-rgb32 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-rgb32 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-rgb32 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-rgb48.sh b/testcase/fate-pixfmt-rgb24-rgb48.sh new file mode 100755 index 0000000000000000000000000000000000000000..546a39af79a8fca854a9d146db82de1d9477e5a3 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-rgb48.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170431-567083153 +# @用例名称: fate-pixfmt-rgb24-rgb48 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-rgb48 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-rgb48 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-rgb48 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-rgb555.sh b/testcase/fate-pixfmt-rgb24-rgb555.sh new file mode 100755 index 0000000000000000000000000000000000000000..58a821954cdb527ef5b9b2c48a7936c244542a1e --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-rgb555.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170431-658139890 +# @用例名称: fate-pixfmt-rgb24-rgb555 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-rgb555 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-rgb555 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-rgb555 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-rgb565.sh b/testcase/fate-pixfmt-rgb24-rgb565.sh new file mode 100755 index 0000000000000000000000000000000000000000..852ed66086c84c000f6e03115d9408748e56d4ea --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-rgb565.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170431-747517391 +# @用例名称: fate-pixfmt-rgb24-rgb565 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-rgb565 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-rgb565 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-rgb565 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-uyvy422.sh b/testcase/fate-pixfmt-rgb24-uyvy422.sh new file mode 100755 index 0000000000000000000000000000000000000000..8d6249dd721163555f8bc08020bb17f7dc66bc68 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-uyvy422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170431-839005430 +# @用例名称: fate-pixfmt-rgb24-uyvy422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-uyvy422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-uyvy422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-uyvy422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-v30xle.sh b/testcase/fate-pixfmt-rgb24-v30xle.sh new file mode 100755 index 0000000000000000000000000000000000000000..6de6254c388444ba536eda44ec382dcd14277d72 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-v30xle.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170431-928747544 +# @用例名称: fate-pixfmt-rgb24-v30xle +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-v30xle +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-v30xle + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-v30xle + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-vuyx.sh b/testcase/fate-pixfmt-rgb24-vuyx.sh new file mode 100755 index 0000000000000000000000000000000000000000..037973474b0425982bcdee960d6eb6b416d0ba80 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-vuyx.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170432-020527747 +# @用例名称: fate-pixfmt-rgb24-vuyx +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-vuyx +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-vuyx + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-vuyx + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-vyu444.sh b/testcase/fate-pixfmt-rgb24-vyu444.sh new file mode 100755 index 0000000000000000000000000000000000000000..f958ddcde384ca7fe2300c7db25e66f33cc50c08 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-vyu444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170432-113170953 +# @用例名称: fate-pixfmt-rgb24-vyu444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-vyu444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-vyu444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-vyu444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-x2bgr10le.sh b/testcase/fate-pixfmt-rgb24-x2bgr10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..3352188f150ceb204e89f59aa24973e4e968f93e --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-x2bgr10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170432-203461375 +# @用例名称: fate-pixfmt-rgb24-x2bgr10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-x2bgr10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-x2bgr10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-x2bgr10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-x2rgb10le.sh b/testcase/fate-pixfmt-rgb24-x2rgb10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..35726c688db2865270372ce1385f27ae85881438 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-x2rgb10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170432-297712460 +# @用例名称: fate-pixfmt-rgb24-x2rgb10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-x2rgb10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-x2rgb10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-x2rgb10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-xv30le.sh b/testcase/fate-pixfmt-rgb24-xv30le.sh new file mode 100755 index 0000000000000000000000000000000000000000..5ff5db373265d992dd574fa99852bf31dcefb43c --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-xv30le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170432-392491345 +# @用例名称: fate-pixfmt-rgb24-xv30le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-xv30le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-xv30le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-xv30le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-xv36be.sh b/testcase/fate-pixfmt-rgb24-xv36be.sh new file mode 100755 index 0000000000000000000000000000000000000000..8485aa7caaf8d0332ef3f54fe9a8e1c4c0eb5c92 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-xv36be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170432-483147950 +# @用例名称: fate-pixfmt-rgb24-xv36be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-xv36be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-xv36be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-xv36be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-xv36le.sh b/testcase/fate-pixfmt-rgb24-xv36le.sh new file mode 100755 index 0000000000000000000000000000000000000000..91ddca6fe72b095ed88868fabbea99bf0b89e7a9 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-xv36le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170432-573363804 +# @用例名称: fate-pixfmt-rgb24-xv36le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-xv36le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-xv36le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-xv36le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-xv48be.sh b/testcase/fate-pixfmt-rgb24-xv48be.sh new file mode 100755 index 0000000000000000000000000000000000000000..bd039fc35c4026e84c8046c6187ffc22d707c434 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-xv48be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170432-656251082 +# @用例名称: fate-pixfmt-rgb24-xv48be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-xv48be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-xv48be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-xv48be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-xv48le.sh b/testcase/fate-pixfmt-rgb24-xv48le.sh new file mode 100755 index 0000000000000000000000000000000000000000..20d9ad18c5e402d9fbb9e81aed7ea90c94b08e9a --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-xv48le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170432-746457986 +# @用例名称: fate-pixfmt-rgb24-xv48le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-xv48le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-xv48le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-xv48le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-xyz12le.sh b/testcase/fate-pixfmt-rgb24-xyz12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..9bd0cfe036298697d242fab4b9d6c4eba1e7a349 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-xyz12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170432-829651357 +# @用例名称: fate-pixfmt-rgb24-xyz12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-xyz12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-xyz12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-xyz12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-y210le.sh b/testcase/fate-pixfmt-rgb24-y210le.sh new file mode 100755 index 0000000000000000000000000000000000000000..cd2c91e7307352f78c5a53c9982efe176e452814 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-y210le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170432-919792482 +# @用例名称: fate-pixfmt-rgb24-y210le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-y210le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-y210le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-y210le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-y212le.sh b/testcase/fate-pixfmt-rgb24-y212le.sh new file mode 100755 index 0000000000000000000000000000000000000000..11e3871636775129b975ee42bfc9d3408444899e --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-y212le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170433-006804490 +# @用例名称: fate-pixfmt-rgb24-y212le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-y212le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-y212le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-y212le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-y216le.sh b/testcase/fate-pixfmt-rgb24-y216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..cdf0d02642f63aadcee391ba0d53f4b65b0b5333 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-y216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170433-099052774 +# @用例名称: fate-pixfmt-rgb24-y216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-y216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-y216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-y216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv410p.sh b/testcase/fate-pixfmt-rgb24-yuv410p.sh new file mode 100755 index 0000000000000000000000000000000000000000..396cf64c5274c457b10afeb9881a80a65f4734ba --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv410p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170433-191883786 +# @用例名称: fate-pixfmt-rgb24-yuv410p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv410p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv410p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv410p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv411p.sh b/testcase/fate-pixfmt-rgb24-yuv411p.sh new file mode 100755 index 0000000000000000000000000000000000000000..5c3054a92878d23497db26d7580b6db05125dca3 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv411p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170433-289797740 +# @用例名称: fate-pixfmt-rgb24-yuv411p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv411p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv411p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv411p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv420p.sh b/testcase/fate-pixfmt-rgb24-yuv420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..6d1c7dfc276096172a465560ce713bdb7724e6c2 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170433-382114912 +# @用例名称: fate-pixfmt-rgb24-yuv420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv420p10be.sh b/testcase/fate-pixfmt-rgb24-yuv420p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..2424605845960b105357cb960fd816490427ade7 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv420p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170433-475843538 +# @用例名称: fate-pixfmt-rgb24-yuv420p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv420p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv420p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv420p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv420p10le.sh b/testcase/fate-pixfmt-rgb24-yuv420p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..0b5300883d6068dcc49c71c3bb766943683a2825 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv420p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170433-570389066 +# @用例名称: fate-pixfmt-rgb24-yuv420p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv420p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv420p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv420p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv420p12be.sh b/testcase/fate-pixfmt-rgb24-yuv420p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..a6b08228e8e86e2bc5016972b41b8dac84b6b80c --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv420p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170433-664490655 +# @用例名称: fate-pixfmt-rgb24-yuv420p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv420p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv420p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv420p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv420p12le.sh b/testcase/fate-pixfmt-rgb24-yuv420p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..e9b80638a467183c525021dc6a687e4f794ffc13 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv420p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170433-755193529 +# @用例名称: fate-pixfmt-rgb24-yuv420p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv420p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv420p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv420p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv420p16be.sh b/testcase/fate-pixfmt-rgb24-yuv420p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..34105019bd4f408dc3066fb4015ee5fcc96d83ff --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv420p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170433-847231847 +# @用例名称: fate-pixfmt-rgb24-yuv420p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv420p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv420p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv420p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv420p16le.sh b/testcase/fate-pixfmt-rgb24-yuv420p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..67bf5565d5c381babffa5bbea1d6f5f3ffd263df --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv420p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170433-939489271 +# @用例名称: fate-pixfmt-rgb24-yuv420p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv420p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv420p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv420p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv422p.sh b/testcase/fate-pixfmt-rgb24-yuv422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..1a6d6a25c06e9e828fc45f69e0afacb5cb63c494 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170434-030057109 +# @用例名称: fate-pixfmt-rgb24-yuv422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv422p10be.sh b/testcase/fate-pixfmt-rgb24-yuv422p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..de1aaa5c5253ca550fe81de195e4a81ba5584403 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv422p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170434-120110935 +# @用例名称: fate-pixfmt-rgb24-yuv422p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv422p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv422p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv422p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv422p10le.sh b/testcase/fate-pixfmt-rgb24-yuv422p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..93184c61ff133f34443ed6a74aca8081f284d40b --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv422p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170434-210870489 +# @用例名称: fate-pixfmt-rgb24-yuv422p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv422p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv422p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv422p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv422p12be.sh b/testcase/fate-pixfmt-rgb24-yuv422p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..6fdaeabb92d70167375fe96f74e87d6f7536e33b --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv422p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170434-302719872 +# @用例名称: fate-pixfmt-rgb24-yuv422p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv422p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv422p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv422p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv422p12le.sh b/testcase/fate-pixfmt-rgb24-yuv422p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..eafcdffed3c90d8e4c6ddd88f8065d7468c94c7e --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv422p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170434-392699550 +# @用例名称: fate-pixfmt-rgb24-yuv422p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv422p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv422p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv422p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv422p16be.sh b/testcase/fate-pixfmt-rgb24-yuv422p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..fc65c69553b14a5f4656d75f463a8066dbdb068f --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv422p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170434-480268326 +# @用例名称: fate-pixfmt-rgb24-yuv422p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv422p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv422p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv422p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv422p16le.sh b/testcase/fate-pixfmt-rgb24-yuv422p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..76847276490765e52f4978c7be659ace6a734e4e --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv422p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170434-568118985 +# @用例名称: fate-pixfmt-rgb24-yuv422p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv422p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv422p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv422p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv440p.sh b/testcase/fate-pixfmt-rgb24-yuv440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..c5c181ac67b0a7c7e0b82f4be24eb1f39454068e --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170434-657715402 +# @用例名称: fate-pixfmt-rgb24-yuv440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv440p10be.sh b/testcase/fate-pixfmt-rgb24-yuv440p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..5babea68670345148261b70e0705538c9dceca63 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv440p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170434-755494557 +# @用例名称: fate-pixfmt-rgb24-yuv440p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv440p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv440p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv440p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv440p10le.sh b/testcase/fate-pixfmt-rgb24-yuv440p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..f24b4d55cd3549307f712a0c22b2318053a26956 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv440p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170434-845686422 +# @用例名称: fate-pixfmt-rgb24-yuv440p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv440p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv440p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv440p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv440p12be.sh b/testcase/fate-pixfmt-rgb24-yuv440p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..36b82e9e27f93131bbb6aa5ebf7bed69b90c3af2 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv440p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170434-930204418 +# @用例名称: fate-pixfmt-rgb24-yuv440p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv440p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv440p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv440p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv440p12le.sh b/testcase/fate-pixfmt-rgb24-yuv440p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..0ab9523f1c0a9cf297ca702c1c8ec68bc07ea2ce --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv440p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170435-024325095 +# @用例名称: fate-pixfmt-rgb24-yuv440p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv440p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv440p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv440p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv444p.sh b/testcase/fate-pixfmt-rgb24-yuv444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..d442d98e16adfb560492d3f287c7578934b05186 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170435-118949543 +# @用例名称: fate-pixfmt-rgb24-yuv444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv444p10be.sh b/testcase/fate-pixfmt-rgb24-yuv444p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..e774e8086fb11cb77d19144083d8a9d4dc447c82 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv444p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170435-212916923 +# @用例名称: fate-pixfmt-rgb24-yuv444p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv444p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv444p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv444p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv444p10le.sh b/testcase/fate-pixfmt-rgb24-yuv444p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..65a24a827e0843218a70e4890c5922cbe4a25920 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv444p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170435-307186858 +# @用例名称: fate-pixfmt-rgb24-yuv444p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv444p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv444p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv444p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv444p10msbbe.sh b/testcase/fate-pixfmt-rgb24-yuv444p10msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..6ba5cf4739a1df846759755b8e2d99812fa4dfa3 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv444p10msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170435-399064659 +# @用例名称: fate-pixfmt-rgb24-yuv444p10msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv444p10msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv444p10msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv444p10msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv444p10msble.sh b/testcase/fate-pixfmt-rgb24-yuv444p10msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..d98ef817c0311dec61f77e9549a4240efbc8d2c4 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv444p10msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170435-490939160 +# @用例名称: fate-pixfmt-rgb24-yuv444p10msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv444p10msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv444p10msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv444p10msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv444p12be.sh b/testcase/fate-pixfmt-rgb24-yuv444p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..fb957559121cd541008ef0edf5e3b304ca8afccc --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv444p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170435-583799293 +# @用例名称: fate-pixfmt-rgb24-yuv444p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv444p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv444p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv444p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv444p12le.sh b/testcase/fate-pixfmt-rgb24-yuv444p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..a2a1b32edf09b7ddace9969c5d4818d20452b8de --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv444p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170435-675987098 +# @用例名称: fate-pixfmt-rgb24-yuv444p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv444p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv444p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv444p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv444p12msbbe.sh b/testcase/fate-pixfmt-rgb24-yuv444p12msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..ac3e883baa18dddbe87c04dbc6d266d0e13ac0d0 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv444p12msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170435-771806683 +# @用例名称: fate-pixfmt-rgb24-yuv444p12msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv444p12msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv444p12msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv444p12msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv444p12msble.sh b/testcase/fate-pixfmt-rgb24-yuv444p12msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..523b4c6cfb012afd74a2d328c14bf035c03f7e57 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv444p12msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170435-864382050 +# @用例名称: fate-pixfmt-rgb24-yuv444p12msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv444p12msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv444p12msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv444p12msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv444p16be.sh b/testcase/fate-pixfmt-rgb24-yuv444p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..694a15b4d7faae50e9791e6a67067028a6ea5199 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv444p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170435-958673804 +# @用例名称: fate-pixfmt-rgb24-yuv444p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv444p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv444p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv444p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuv444p16le.sh b/testcase/fate-pixfmt-rgb24-yuv444p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..bf76008f603b00793a78f1b9ef17a9a873a6a217 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuv444p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170436-051643484 +# @用例名称: fate-pixfmt-rgb24-yuv444p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv444p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuv444p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuv444p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuvj420p.sh b/testcase/fate-pixfmt-rgb24-yuvj420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..0f89a5b870b93a69bf97b2d049f79f0a505aaac0 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuvj420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170436-142513756 +# @用例名称: fate-pixfmt-rgb24-yuvj420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuvj420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuvj420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuvj420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuvj422p.sh b/testcase/fate-pixfmt-rgb24-yuvj422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..44d0ad825e2d3f85014ae6b244c8b6ee76f9d494 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuvj422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170436-231328768 +# @用例名称: fate-pixfmt-rgb24-yuvj422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuvj422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuvj422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuvj422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuvj440p.sh b/testcase/fate-pixfmt-rgb24-yuvj440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..b34ddc4f9af71d117533d72c5198c16aa03ebf79 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuvj440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170436-318970162 +# @用例名称: fate-pixfmt-rgb24-yuvj440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuvj440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuvj440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuvj440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuvj444p.sh b/testcase/fate-pixfmt-rgb24-yuvj444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..0c1266a0e75ab4e715a641ffe99da1a7d13ed490 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuvj444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170436-409489409 +# @用例名称: fate-pixfmt-rgb24-yuvj444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuvj444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuvj444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuvj444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yuyv422.sh b/testcase/fate-pixfmt-rgb24-yuyv422.sh new file mode 100755 index 0000000000000000000000000000000000000000..600387c6202fc0cf15d797b9c2c245757fb38863 --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yuyv422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170436-499451858 +# @用例名称: fate-pixfmt-rgb24-yuyv422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuyv422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yuyv422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yuyv422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24-yvyu422.sh b/testcase/fate-pixfmt-rgb24-yvyu422.sh new file mode 100755 index 0000000000000000000000000000000000000000..27ab991a15bdc9fda15ec254d2e235053b3203da --- /dev/null +++ b/testcase/fate-pixfmt-rgb24-yvyu422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170436-592204623 +# @用例名称: fate-pixfmt-rgb24-yvyu422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yvyu422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24-yvyu422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24-yvyu422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb24.sh b/testcase/fate-pixfmt-rgb24.sh new file mode 100755 index 0000000000000000000000000000000000000000..4019f01428df81acdb2518a6aa6bc070619d73cc --- /dev/null +++ b/testcase/fate-pixfmt-rgb24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170427-935890525 +# @用例名称: fate-pixfmt-rgb24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb32.sh b/testcase/fate-pixfmt-rgb32.sh new file mode 100755 index 0000000000000000000000000000000000000000..6bbc948ed7cf3c9a60337b75898b455b85714674 --- /dev/null +++ b/testcase/fate-pixfmt-rgb32.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170436-683451897 +# @用例名称: fate-pixfmt-rgb32 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb32 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb32 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb32 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-bgr24.sh b/testcase/fate-pixfmt-rgb48-bgr24.sh new file mode 100755 index 0000000000000000000000000000000000000000..6b7778d215897894c906f1da0afe0f62f3c64a55 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-bgr24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170436-769832305 +# @用例名称: fate-pixfmt-rgb48-bgr24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-bgr24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-bgr24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-bgr24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-gbrp10be.sh b/testcase/fate-pixfmt-rgb48-gbrp10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..a60cd5b69a9afe2f94c0df5e24f43d44a9b1d7aa --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-gbrp10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170436-857796034 +# @用例名称: fate-pixfmt-rgb48-gbrp10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gbrp10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gbrp10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-gbrp10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-gbrp10le.sh b/testcase/fate-pixfmt-rgb48-gbrp10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..7762e7bbc2c62e0f368a78a08fbe2b0e5edf9cbc --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-gbrp10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170436-946918480 +# @用例名称: fate-pixfmt-rgb48-gbrp10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gbrp10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gbrp10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-gbrp10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-gbrp12be.sh b/testcase/fate-pixfmt-rgb48-gbrp12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..52f5ed701942958dced896e66f6b908dde19cd05 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-gbrp12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170437-040599726 +# @用例名称: fate-pixfmt-rgb48-gbrp12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gbrp12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gbrp12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-gbrp12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-gbrp12le.sh b/testcase/fate-pixfmt-rgb48-gbrp12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..732a12ca407e035b8f37c23b5c639f8742641af8 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-gbrp12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170437-134091435 +# @用例名称: fate-pixfmt-rgb48-gbrp12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gbrp12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gbrp12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-gbrp12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-gbrp16be.sh b/testcase/fate-pixfmt-rgb48-gbrp16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..9ced194d62e2de0b9898414fb981062dd0a26f57 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-gbrp16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170437-224093984 +# @用例名称: fate-pixfmt-rgb48-gbrp16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gbrp16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gbrp16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-gbrp16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-gbrp16le.sh b/testcase/fate-pixfmt-rgb48-gbrp16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..cc4396848c48a4048ae7ff4fa25dd4b90e8428f3 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-gbrp16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170437-313726469 +# @用例名称: fate-pixfmt-rgb48-gbrp16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gbrp16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gbrp16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-gbrp16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-gray.sh b/testcase/fate-pixfmt-rgb48-gray.sh new file mode 100755 index 0000000000000000000000000000000000000000..010769f9bcc399ec892d78cba6b7c8df69f6254f --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-gray.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170437-408266129 +# @用例名称: fate-pixfmt-rgb48-gray +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gray +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gray + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-gray + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-gray10be.sh b/testcase/fate-pixfmt-rgb48-gray10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..3d8720b5903fc8c0ae0485a004e3732b1e041a70 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-gray10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170437-501594981 +# @用例名称: fate-pixfmt-rgb48-gray10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gray10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gray10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-gray10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-gray10le.sh b/testcase/fate-pixfmt-rgb48-gray10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..b46ae279532523c38f2b5d5b86010f81164593da --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-gray10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170437-593839275 +# @用例名称: fate-pixfmt-rgb48-gray10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gray10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gray10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-gray10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-gray12be.sh b/testcase/fate-pixfmt-rgb48-gray12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..541dcf06ddeedd00011afcb7b35645638d4a4cf0 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-gray12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170437-692815697 +# @用例名称: fate-pixfmt-rgb48-gray12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gray12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gray12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-gray12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-gray12le.sh b/testcase/fate-pixfmt-rgb48-gray12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..fb1a1f426bc19be72509508780d9b5c82eb6a97d --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-gray12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170437-785058472 +# @用例名称: fate-pixfmt-rgb48-gray12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gray12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gray12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-gray12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-gray16be.sh b/testcase/fate-pixfmt-rgb48-gray16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..53215f910d7ae54e61ee3e1e363157e889803378 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-gray16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170437-876577140 +# @用例名称: fate-pixfmt-rgb48-gray16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gray16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gray16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-gray16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-gray16le.sh b/testcase/fate-pixfmt-rgb48-gray16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..6a98b57509d16b12194fc0c61d21b1ecf930ee58 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-gray16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170437-962821743 +# @用例名称: fate-pixfmt-rgb48-gray16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gray16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-gray16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-gray16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-monob.sh b/testcase/fate-pixfmt-rgb48-monob.sh new file mode 100755 index 0000000000000000000000000000000000000000..b7551098f4f7d584888a91553ddeaaedd8b9e20f --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-monob.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170438-066164440 +# @用例名称: fate-pixfmt-rgb48-monob +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-monob +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-monob + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-monob + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-monow.sh b/testcase/fate-pixfmt-rgb48-monow.sh new file mode 100755 index 0000000000000000000000000000000000000000..316d20a3dfbcede538fdb6d40c1057c5dd102eaa --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-monow.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170438-159196979 +# @用例名称: fate-pixfmt-rgb48-monow +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-monow +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-monow + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-monow + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-nv12.sh b/testcase/fate-pixfmt-rgb48-nv12.sh new file mode 100755 index 0000000000000000000000000000000000000000..044d7487ca24d0c4400f945491e771f0fd43bae1 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-nv12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170438-252671939 +# @用例名称: fate-pixfmt-rgb48-nv12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-nv12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-nv12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-nv12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-nv16.sh b/testcase/fate-pixfmt-rgb48-nv16.sh new file mode 100755 index 0000000000000000000000000000000000000000..b1edaa5f10895559fe085163941263579ccfc6e9 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-nv16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170438-344883443 +# @用例名称: fate-pixfmt-rgb48-nv16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-nv16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-nv16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-nv16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-nv24.sh b/testcase/fate-pixfmt-rgb48-nv24.sh new file mode 100755 index 0000000000000000000000000000000000000000..c08b407bb766a5caaa9bb509f0d6f8bc5ccfa8a7 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-nv24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170438-433587996 +# @用例名称: fate-pixfmt-rgb48-nv24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-nv24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-nv24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-nv24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-p010be.sh b/testcase/fate-pixfmt-rgb48-p010be.sh new file mode 100755 index 0000000000000000000000000000000000000000..24dff2de9ac2fb1a636045e2c2942fa8560c9d8e --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-p010be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170438-521481826 +# @用例名称: fate-pixfmt-rgb48-p010be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p010be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p010be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-p010be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-p010le.sh b/testcase/fate-pixfmt-rgb48-p010le.sh new file mode 100755 index 0000000000000000000000000000000000000000..e696bc68963ec6e165a815e0939557f789af9c88 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-p010le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170438-612772279 +# @用例名称: fate-pixfmt-rgb48-p010le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p010le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p010le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-p010le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-p012be.sh b/testcase/fate-pixfmt-rgb48-p012be.sh new file mode 100755 index 0000000000000000000000000000000000000000..7f45910836d49e4c3834d59c9ad28e62a12ead8f --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-p012be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170438-703537062 +# @用例名称: fate-pixfmt-rgb48-p012be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p012be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p012be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-p012be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-p012le.sh b/testcase/fate-pixfmt-rgb48-p012le.sh new file mode 100755 index 0000000000000000000000000000000000000000..cf471be85111d458be0d26c3390f611b14f1103b --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-p012le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170438-795328615 +# @用例名称: fate-pixfmt-rgb48-p012le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p012le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p012le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-p012le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-p016be.sh b/testcase/fate-pixfmt-rgb48-p016be.sh new file mode 100755 index 0000000000000000000000000000000000000000..5daea7ffd5697f7c60db32ad505db06997c1d564 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-p016be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170438-884158296 +# @用例名称: fate-pixfmt-rgb48-p016be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p016be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p016be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-p016be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-p016le.sh b/testcase/fate-pixfmt-rgb48-p016le.sh new file mode 100755 index 0000000000000000000000000000000000000000..8a6e2145b9a885e8e29ba6f03f8ef5583937772a --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-p016le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170438-973477768 +# @用例名称: fate-pixfmt-rgb48-p016le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p016le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p016le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-p016le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-p210be.sh b/testcase/fate-pixfmt-rgb48-p210be.sh new file mode 100755 index 0000000000000000000000000000000000000000..81dbba927e2c810ca227ea5c38f5657c79035dd9 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-p210be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170439-063709513 +# @用例名称: fate-pixfmt-rgb48-p210be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p210be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p210be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-p210be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-p210le.sh b/testcase/fate-pixfmt-rgb48-p210le.sh new file mode 100755 index 0000000000000000000000000000000000000000..542f864904c02d56dfe46a446f3be09d4aa497dc --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-p210le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170439-152049052 +# @用例名称: fate-pixfmt-rgb48-p210le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p210le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p210le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-p210le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-p212be.sh b/testcase/fate-pixfmt-rgb48-p212be.sh new file mode 100755 index 0000000000000000000000000000000000000000..79a40630f9e03383f33bf97ed12039deaab96bd8 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-p212be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170439-240807014 +# @用例名称: fate-pixfmt-rgb48-p212be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p212be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p212be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-p212be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-p212le.sh b/testcase/fate-pixfmt-rgb48-p212le.sh new file mode 100755 index 0000000000000000000000000000000000000000..47288d3b393f913d164ebac7d000d57075ee40ae --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-p212le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170439-329649035 +# @用例名称: fate-pixfmt-rgb48-p212le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p212le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p212le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-p212le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-p216be.sh b/testcase/fate-pixfmt-rgb48-p216be.sh new file mode 100755 index 0000000000000000000000000000000000000000..249cc38b78c3c032ffdf1f04b3cbeba44db441cc --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-p216be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170439-417294140 +# @用例名称: fate-pixfmt-rgb48-p216be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p216be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p216be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-p216be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-p216le.sh b/testcase/fate-pixfmt-rgb48-p216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..ffd5cfe5d05c3056b60a822f32f93c56ced9df00 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-p216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170439-504385026 +# @用例名称: fate-pixfmt-rgb48-p216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-p216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-p410be.sh b/testcase/fate-pixfmt-rgb48-p410be.sh new file mode 100755 index 0000000000000000000000000000000000000000..7f5b59a19c3ed832376948681632d1009e4f575e --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-p410be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170439-593250595 +# @用例名称: fate-pixfmt-rgb48-p410be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p410be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p410be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-p410be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-p410le.sh b/testcase/fate-pixfmt-rgb48-p410le.sh new file mode 100755 index 0000000000000000000000000000000000000000..343e2e7425c252cbe6826462db06fc608e62d3a0 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-p410le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170439-681444569 +# @用例名称: fate-pixfmt-rgb48-p410le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p410le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p410le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-p410le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-p412be.sh b/testcase/fate-pixfmt-rgb48-p412be.sh new file mode 100755 index 0000000000000000000000000000000000000000..ed976b2946fe61a4d3465788634b318d6ffae6ff --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-p412be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170439-767563654 +# @用例名称: fate-pixfmt-rgb48-p412be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p412be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p412be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-p412be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-p412le.sh b/testcase/fate-pixfmt-rgb48-p412le.sh new file mode 100755 index 0000000000000000000000000000000000000000..b881a705867e76b07105c48725db4d61736b0d80 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-p412le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170439-853645348 +# @用例名称: fate-pixfmt-rgb48-p412le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p412le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p412le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-p412le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-p416be.sh b/testcase/fate-pixfmt-rgb48-p416be.sh new file mode 100755 index 0000000000000000000000000000000000000000..1ab48952cb1fc42e73ce1eceaaa472083bd173f2 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-p416be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170439-938331081 +# @用例名称: fate-pixfmt-rgb48-p416be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p416be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p416be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-p416be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-p416le.sh b/testcase/fate-pixfmt-rgb48-p416le.sh new file mode 100755 index 0000000000000000000000000000000000000000..4f4446d22cd4f4f8aab26b7aef96353690ddca6e --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-p416le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170440-023451274 +# @用例名称: fate-pixfmt-rgb48-p416le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p416le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-p416le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-p416le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-rgb24.sh b/testcase/fate-pixfmt-rgb48-rgb24.sh new file mode 100755 index 0000000000000000000000000000000000000000..631a6dd27c3ba0b3766303e71ba0f8f0f4bf1f9c --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-rgb24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170440-109617827 +# @用例名称: fate-pixfmt-rgb48-rgb24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-rgb24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-rgb24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-rgb24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-rgb32.sh b/testcase/fate-pixfmt-rgb48-rgb32.sh new file mode 100755 index 0000000000000000000000000000000000000000..2cf902eb0ee54fa82b1550fc2b69fec6d462c488 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-rgb32.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170440-199753923 +# @用例名称: fate-pixfmt-rgb48-rgb32 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-rgb32 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-rgb32 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-rgb32 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-rgb48.sh b/testcase/fate-pixfmt-rgb48-rgb48.sh new file mode 100755 index 0000000000000000000000000000000000000000..fdd0f2ebf4bc939fd165079f703abf60ff55d5f4 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-rgb48.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170440-290634674 +# @用例名称: fate-pixfmt-rgb48-rgb48 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-rgb48 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-rgb48 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-rgb48 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-rgb555.sh b/testcase/fate-pixfmt-rgb48-rgb555.sh new file mode 100755 index 0000000000000000000000000000000000000000..99940fd3cee2387a3bdf517e4c64ba3f342ed79a --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-rgb555.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170440-379158510 +# @用例名称: fate-pixfmt-rgb48-rgb555 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-rgb555 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-rgb555 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-rgb555 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-rgb565.sh b/testcase/fate-pixfmt-rgb48-rgb565.sh new file mode 100755 index 0000000000000000000000000000000000000000..49ba82a0c94a352b73e496764e95fea07b14abb3 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-rgb565.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170440-467571280 +# @用例名称: fate-pixfmt-rgb48-rgb565 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-rgb565 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-rgb565 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-rgb565 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-uyvy422.sh b/testcase/fate-pixfmt-rgb48-uyvy422.sh new file mode 100755 index 0000000000000000000000000000000000000000..04dc5174c4fd754e7321f11015208824b6099fbb --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-uyvy422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170440-558489950 +# @用例名称: fate-pixfmt-rgb48-uyvy422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-uyvy422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-uyvy422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-uyvy422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-v30xle.sh b/testcase/fate-pixfmt-rgb48-v30xle.sh new file mode 100755 index 0000000000000000000000000000000000000000..42832f9884630c380049a795a688a49fbc533035 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-v30xle.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170440-647157755 +# @用例名称: fate-pixfmt-rgb48-v30xle +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-v30xle +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-v30xle + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-v30xle + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-vuyx.sh b/testcase/fate-pixfmt-rgb48-vuyx.sh new file mode 100755 index 0000000000000000000000000000000000000000..8ced77ecc19173803c511367d452bfd860624224 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-vuyx.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170440-735539915 +# @用例名称: fate-pixfmt-rgb48-vuyx +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-vuyx +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-vuyx + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-vuyx + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-vyu444.sh b/testcase/fate-pixfmt-rgb48-vyu444.sh new file mode 100755 index 0000000000000000000000000000000000000000..d9cf5e0790d2979862828652e70bebe73edb2730 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-vyu444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170440-826447554 +# @用例名称: fate-pixfmt-rgb48-vyu444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-vyu444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-vyu444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-vyu444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-x2bgr10le.sh b/testcase/fate-pixfmt-rgb48-x2bgr10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..2664c33e5bca51e7dcadc6b430eba3bfb57b5118 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-x2bgr10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170440-920791799 +# @用例名称: fate-pixfmt-rgb48-x2bgr10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-x2bgr10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-x2bgr10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-x2bgr10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-x2rgb10le.sh b/testcase/fate-pixfmt-rgb48-x2rgb10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..4d0f4c4840b38e0a03f209ebe48143db2711f624 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-x2rgb10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170441-010918354 +# @用例名称: fate-pixfmt-rgb48-x2rgb10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-x2rgb10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-x2rgb10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-x2rgb10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-xv30le.sh b/testcase/fate-pixfmt-rgb48-xv30le.sh new file mode 100755 index 0000000000000000000000000000000000000000..305cbaf9dfa62cc570b167d2a8916ffb02bec737 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-xv30le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170441-102506162 +# @用例名称: fate-pixfmt-rgb48-xv30le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-xv30le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-xv30le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-xv30le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-xv36be.sh b/testcase/fate-pixfmt-rgb48-xv36be.sh new file mode 100755 index 0000000000000000000000000000000000000000..18a4f9b932ccf7f7d07af54f6b7caff7b6064005 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-xv36be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170441-194588408 +# @用例名称: fate-pixfmt-rgb48-xv36be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-xv36be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-xv36be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-xv36be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-xv36le.sh b/testcase/fate-pixfmt-rgb48-xv36le.sh new file mode 100755 index 0000000000000000000000000000000000000000..5230b33b5161877dd2bea454aba0cdab43ea56a8 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-xv36le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170441-283007648 +# @用例名称: fate-pixfmt-rgb48-xv36le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-xv36le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-xv36le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-xv36le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-xv48be.sh b/testcase/fate-pixfmt-rgb48-xv48be.sh new file mode 100755 index 0000000000000000000000000000000000000000..7ef3d203a418d49b0457d6d5fe1f904cf00bb711 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-xv48be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170441-371893497 +# @用例名称: fate-pixfmt-rgb48-xv48be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-xv48be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-xv48be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-xv48be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-xv48le.sh b/testcase/fate-pixfmt-rgb48-xv48le.sh new file mode 100755 index 0000000000000000000000000000000000000000..a2ca5da0a871e8b2d2deccc7fac79be817be071e --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-xv48le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170441-460282157 +# @用例名称: fate-pixfmt-rgb48-xv48le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-xv48le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-xv48le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-xv48le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-xyz12le.sh b/testcase/fate-pixfmt-rgb48-xyz12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..d8084247e8d0c0284de3e2ac9df8026897c58b1d --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-xyz12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170441-548197786 +# @用例名称: fate-pixfmt-rgb48-xyz12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-xyz12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-xyz12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-xyz12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-y210le.sh b/testcase/fate-pixfmt-rgb48-y210le.sh new file mode 100755 index 0000000000000000000000000000000000000000..07f5f632d0d7b3b1e748c3c359b0266983615cf2 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-y210le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170441-637918460 +# @用例名称: fate-pixfmt-rgb48-y210le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-y210le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-y210le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-y210le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-y212le.sh b/testcase/fate-pixfmt-rgb48-y212le.sh new file mode 100755 index 0000000000000000000000000000000000000000..dd3f706bebf8fb1c3bf661da0f18cd0429632747 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-y212le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170441-729039876 +# @用例名称: fate-pixfmt-rgb48-y212le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-y212le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-y212le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-y212le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-y216le.sh b/testcase/fate-pixfmt-rgb48-y216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..f125feb0efeb6f6d7523551f1caad8f98292da41 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-y216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170441-817118572 +# @用例名称: fate-pixfmt-rgb48-y216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-y216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-y216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-y216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv410p.sh b/testcase/fate-pixfmt-rgb48-yuv410p.sh new file mode 100755 index 0000000000000000000000000000000000000000..f0f421e66e929a66ac6552e5a8be1019b2b2ad25 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv410p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170441-905187489 +# @用例名称: fate-pixfmt-rgb48-yuv410p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv410p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv410p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv410p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv411p.sh b/testcase/fate-pixfmt-rgb48-yuv411p.sh new file mode 100755 index 0000000000000000000000000000000000000000..580f16f20e0439d7816bf12a445d2bb3da28bb71 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv411p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170441-995512870 +# @用例名称: fate-pixfmt-rgb48-yuv411p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv411p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv411p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv411p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv420p.sh b/testcase/fate-pixfmt-rgb48-yuv420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..608fb66f6500a6d3e1701e1b1bf3e5473bb1269c --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170442-084037877 +# @用例名称: fate-pixfmt-rgb48-yuv420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv420p10be.sh b/testcase/fate-pixfmt-rgb48-yuv420p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..8ab73581804122dc2db6f804c8a6974e3afd946a --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv420p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170442-170001434 +# @用例名称: fate-pixfmt-rgb48-yuv420p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv420p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv420p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv420p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv420p10le.sh b/testcase/fate-pixfmt-rgb48-yuv420p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..4e6727ba2e7522d70255af4567b8ffbdddde19a4 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv420p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170442-255204896 +# @用例名称: fate-pixfmt-rgb48-yuv420p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv420p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv420p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv420p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv420p12be.sh b/testcase/fate-pixfmt-rgb48-yuv420p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..1fb0c73fe94428a3dbf0aecd8d861ccd64269670 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv420p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170442-339423798 +# @用例名称: fate-pixfmt-rgb48-yuv420p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv420p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv420p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv420p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv420p12le.sh b/testcase/fate-pixfmt-rgb48-yuv420p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..10079b0c7cbb2b622fbbefc35c0b3975802db008 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv420p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170442-427024213 +# @用例名称: fate-pixfmt-rgb48-yuv420p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv420p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv420p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv420p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv420p16be.sh b/testcase/fate-pixfmt-rgb48-yuv420p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..048d023f0f51f166ee2819a458207576dd30a4d5 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv420p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170442-519307366 +# @用例名称: fate-pixfmt-rgb48-yuv420p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv420p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv420p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv420p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv420p16le.sh b/testcase/fate-pixfmt-rgb48-yuv420p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..aaa6ba966374eafcc53acf7f940e01c4dc148428 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv420p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170442-608691416 +# @用例名称: fate-pixfmt-rgb48-yuv420p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv420p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv420p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv420p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv422p.sh b/testcase/fate-pixfmt-rgb48-yuv422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..e0f5d02b10e1df966ffc3c7fc00e6d5fae7c87f0 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170442-696741274 +# @用例名称: fate-pixfmt-rgb48-yuv422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv422p10be.sh b/testcase/fate-pixfmt-rgb48-yuv422p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..44f79d38565ef7e5096034982fd6d34c39854f8e --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv422p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170442-784593123 +# @用例名称: fate-pixfmt-rgb48-yuv422p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv422p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv422p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv422p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv422p10le.sh b/testcase/fate-pixfmt-rgb48-yuv422p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..24b117d368b85e91a41d21b9dd7b5705925b11f6 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv422p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170442-873794137 +# @用例名称: fate-pixfmt-rgb48-yuv422p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv422p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv422p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv422p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv422p12be.sh b/testcase/fate-pixfmt-rgb48-yuv422p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..a79390bf6ae59254ac5070aaa3b6d039f8567448 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv422p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170442-962177337 +# @用例名称: fate-pixfmt-rgb48-yuv422p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv422p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv422p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv422p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv422p12le.sh b/testcase/fate-pixfmt-rgb48-yuv422p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..e469027ec343639cce3d21c28cbf22b7bacde6d0 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv422p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170443-046209042 +# @用例名称: fate-pixfmt-rgb48-yuv422p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv422p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv422p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv422p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv422p16be.sh b/testcase/fate-pixfmt-rgb48-yuv422p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..aee844849b476ed8a26a6cfe796e80510fd33291 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv422p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170443-137913547 +# @用例名称: fate-pixfmt-rgb48-yuv422p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv422p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv422p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv422p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv422p16le.sh b/testcase/fate-pixfmt-rgb48-yuv422p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..3f59d26eba89b0b93a20011803d9332d04dcbf68 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv422p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170443-226165999 +# @用例名称: fate-pixfmt-rgb48-yuv422p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv422p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv422p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv422p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv440p.sh b/testcase/fate-pixfmt-rgb48-yuv440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..5a0f1d81ece4376a84cae68ca6df2b6353c06660 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170443-314573908 +# @用例名称: fate-pixfmt-rgb48-yuv440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv440p10be.sh b/testcase/fate-pixfmt-rgb48-yuv440p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..d667a68c317e5bd6c164d3b4415e6578a4f4c152 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv440p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170443-401562856 +# @用例名称: fate-pixfmt-rgb48-yuv440p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv440p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv440p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv440p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv440p10le.sh b/testcase/fate-pixfmt-rgb48-yuv440p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..4f1750af831d281588dd025d6c0e0592c4d77674 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv440p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170443-488807707 +# @用例名称: fate-pixfmt-rgb48-yuv440p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv440p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv440p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv440p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv440p12be.sh b/testcase/fate-pixfmt-rgb48-yuv440p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..cefc4eaa28f33cd6ffa8d72f39f8c80513c18d9b --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv440p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170443-581692510 +# @用例名称: fate-pixfmt-rgb48-yuv440p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv440p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv440p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv440p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv440p12le.sh b/testcase/fate-pixfmt-rgb48-yuv440p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..eb6bb3889bbf32034891d443733fc4081d536e7f --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv440p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170443-672367564 +# @用例名称: fate-pixfmt-rgb48-yuv440p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv440p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv440p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv440p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv444p.sh b/testcase/fate-pixfmt-rgb48-yuv444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..3a586cb133c671844790053d1647439392ea9205 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170443-762300443 +# @用例名称: fate-pixfmt-rgb48-yuv444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv444p10be.sh b/testcase/fate-pixfmt-rgb48-yuv444p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..7a691f437d7741c97e247964ceafaaee285fe920 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv444p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170443-852138685 +# @用例名称: fate-pixfmt-rgb48-yuv444p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv444p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv444p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv444p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv444p10le.sh b/testcase/fate-pixfmt-rgb48-yuv444p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..2b7ae29df5a0712209689e4c0dbe3fc3ed544099 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv444p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170443-942588795 +# @用例名称: fate-pixfmt-rgb48-yuv444p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv444p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv444p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv444p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv444p10msbbe.sh b/testcase/fate-pixfmt-rgb48-yuv444p10msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..4e3dd5d2b86073e20c59b918f2e81db3a737b9f9 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv444p10msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170444-030776399 +# @用例名称: fate-pixfmt-rgb48-yuv444p10msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv444p10msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv444p10msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv444p10msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv444p10msble.sh b/testcase/fate-pixfmt-rgb48-yuv444p10msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..c6b4cafbb45761404b1441628b118ddaafab4507 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv444p10msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170444-123091581 +# @用例名称: fate-pixfmt-rgb48-yuv444p10msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv444p10msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv444p10msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv444p10msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv444p12be.sh b/testcase/fate-pixfmt-rgb48-yuv444p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..161adfa976500fe5d2b9e87132732d1a201890d9 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv444p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170444-213930934 +# @用例名称: fate-pixfmt-rgb48-yuv444p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv444p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv444p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv444p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv444p12le.sh b/testcase/fate-pixfmt-rgb48-yuv444p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..3c17748476c70d927d1c7a10463bf0d6da24d2f2 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv444p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170444-303587138 +# @用例名称: fate-pixfmt-rgb48-yuv444p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv444p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv444p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv444p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv444p12msbbe.sh b/testcase/fate-pixfmt-rgb48-yuv444p12msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..1bf2a2aac80fbef14c8a0eab6c984b31dea279c4 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv444p12msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170444-388549265 +# @用例名称: fate-pixfmt-rgb48-yuv444p12msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv444p12msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv444p12msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv444p12msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv444p12msble.sh b/testcase/fate-pixfmt-rgb48-yuv444p12msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..189372b2ca16cfd32b9a81253f0dc813c4e88328 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv444p12msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170444-468606457 +# @用例名称: fate-pixfmt-rgb48-yuv444p12msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv444p12msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv444p12msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv444p12msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv444p16be.sh b/testcase/fate-pixfmt-rgb48-yuv444p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..1b358bda59fcf96281657c3eb51bcd694112cb43 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv444p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170444-557639995 +# @用例名称: fate-pixfmt-rgb48-yuv444p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv444p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv444p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv444p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuv444p16le.sh b/testcase/fate-pixfmt-rgb48-yuv444p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..0ffa6663505ee52a44d621acf78b69dd681ad7de --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuv444p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170444-645332138 +# @用例名称: fate-pixfmt-rgb48-yuv444p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv444p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuv444p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuv444p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuvj420p.sh b/testcase/fate-pixfmt-rgb48-yuvj420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..4f564bcab667329de9a205b7b93ca92872a23d71 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuvj420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170444-735039502 +# @用例名称: fate-pixfmt-rgb48-yuvj420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuvj420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuvj420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuvj420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuvj422p.sh b/testcase/fate-pixfmt-rgb48-yuvj422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..a4468844c8da9ea511b33245e6486b4874d28304 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuvj422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170444-824260466 +# @用例名称: fate-pixfmt-rgb48-yuvj422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuvj422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuvj422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuvj422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuvj440p.sh b/testcase/fate-pixfmt-rgb48-yuvj440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..270803bc6ea7e8a20306e1e14441ffac27770d16 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuvj440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170444-910074325 +# @用例名称: fate-pixfmt-rgb48-yuvj440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuvj440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuvj440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuvj440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuvj444p.sh b/testcase/fate-pixfmt-rgb48-yuvj444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..55c4f2736ee42080c43e98abddf7983e2c2fbd07 --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuvj444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170445-000045244 +# @用例名称: fate-pixfmt-rgb48-yuvj444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuvj444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuvj444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuvj444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yuyv422.sh b/testcase/fate-pixfmt-rgb48-yuyv422.sh new file mode 100755 index 0000000000000000000000000000000000000000..fe4eb630b3c68a665ae82d8010cf4ca3f012de2c --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yuyv422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170445-090580463 +# @用例名称: fate-pixfmt-rgb48-yuyv422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuyv422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yuyv422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yuyv422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb48-yvyu422.sh b/testcase/fate-pixfmt-rgb48-yvyu422.sh new file mode 100755 index 0000000000000000000000000000000000000000..c7a5834f78a948601cc5819c2cada3a71db8037c --- /dev/null +++ b/testcase/fate-pixfmt-rgb48-yvyu422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170445-180141169 +# @用例名称: fate-pixfmt-rgb48-yvyu422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yvyu422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb48-yvyu422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb48-yvyu422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb555.sh b/testcase/fate-pixfmt-rgb555.sh new file mode 100755 index 0000000000000000000000000000000000000000..9ca3c4e3d9d5d75fa47d20ac0ed6bd91d6944d80 --- /dev/null +++ b/testcase/fate-pixfmt-rgb555.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170445-272067729 +# @用例名称: fate-pixfmt-rgb555 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb555 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb555 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb555 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-rgb565.sh b/testcase/fate-pixfmt-rgb565.sh new file mode 100755 index 0000000000000000000000000000000000000000..c6fb49cc6b486e5e7a0d81985191c81d9e713e71 --- /dev/null +++ b/testcase/fate-pixfmt-rgb565.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170445-362382321 +# @用例名称: fate-pixfmt-rgb565 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-rgb565 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-rgb565 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-rgb565 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-uyvy422.sh b/testcase/fate-pixfmt-uyvy422.sh new file mode 100755 index 0000000000000000000000000000000000000000..7b2c3c7bb9a50e1ba22973b9a2cbbf14092d8300 --- /dev/null +++ b/testcase/fate-pixfmt-uyvy422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170445-452260201 +# @用例名称: fate-pixfmt-uyvy422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-uyvy422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-uyvy422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-uyvy422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-vuyx.sh b/testcase/fate-pixfmt-vuyx.sh new file mode 100755 index 0000000000000000000000000000000000000000..73679a5f962b122ebbabc7e643fd2db9bcfecb86 --- /dev/null +++ b/testcase/fate-pixfmt-vuyx.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170445-541837819 +# @用例名称: fate-pixfmt-vuyx +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-vuyx +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-vuyx + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-vuyx + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-vyu444.sh b/testcase/fate-pixfmt-vyu444.sh new file mode 100755 index 0000000000000000000000000000000000000000..71b0a6a1c7f275be28880bf2b539bd21249e8577 --- /dev/null +++ b/testcase/fate-pixfmt-vyu444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170445-631355926 +# @用例名称: fate-pixfmt-vyu444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-vyu444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-vyu444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-vyu444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-xyz12le.sh b/testcase/fate-pixfmt-xyz12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..8be8fb7b74c26fe9e564d78403c3b1d6efaded32 --- /dev/null +++ b/testcase/fate-pixfmt-xyz12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170445-720614709 +# @用例名称: fate-pixfmt-xyz12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-xyz12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-xyz12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-xyz12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv410p.sh b/testcase/fate-pixfmt-yuv410p.sh new file mode 100755 index 0000000000000000000000000000000000000000..7915f2bc48a3cc8d65477c3a7bb9e55dee317ab1 --- /dev/null +++ b/testcase/fate-pixfmt-yuv410p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170445-811175226 +# @用例名称: fate-pixfmt-yuv410p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv410p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv410p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv410p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv411p.sh b/testcase/fate-pixfmt-yuv411p.sh new file mode 100755 index 0000000000000000000000000000000000000000..b5fb872e3a39e04fb15cdab085a6d58ccc609ef9 --- /dev/null +++ b/testcase/fate-pixfmt-yuv411p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170445-897926828 +# @用例名称: fate-pixfmt-yuv411p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv411p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv411p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv411p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv420p.sh b/testcase/fate-pixfmt-yuv420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..117052148a176f20daf6b6e5ef7fcbf19b8e904a --- /dev/null +++ b/testcase/fate-pixfmt-yuv420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170445-980428523 +# @用例名称: fate-pixfmt-yuv420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv422p.sh b/testcase/fate-pixfmt-yuv422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..a62a02e9b3885edc3539f729391faad27d2aedba --- /dev/null +++ b/testcase/fate-pixfmt-yuv422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170446-073520520 +# @用例名称: fate-pixfmt-yuv422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv440p.sh b/testcase/fate-pixfmt-yuv440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..34cfde6e2cdbba2edba3d2c01b5eed140730b5d8 --- /dev/null +++ b/testcase/fate-pixfmt-yuv440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170446-163463550 +# @用例名称: fate-pixfmt-yuv440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-bgr24.sh b/testcase/fate-pixfmt-yuv444p-bgr24.sh new file mode 100755 index 0000000000000000000000000000000000000000..e1afc75f89ae36ee1f2ec758e9328a0bdd00ce7b --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-bgr24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170446-345150654 +# @用例名称: fate-pixfmt-yuv444p-bgr24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-bgr24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-bgr24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-bgr24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-gbrp10be.sh b/testcase/fate-pixfmt-yuv444p-gbrp10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..d1c75c832ae21bb07471693eadeae7c3a7762d5b --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-gbrp10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170446-438653953 +# @用例名称: fate-pixfmt-yuv444p-gbrp10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gbrp10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gbrp10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-gbrp10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-gbrp10le.sh b/testcase/fate-pixfmt-yuv444p-gbrp10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..0b488a772f4ae1bfa38c6d03223580d8f8652a81 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-gbrp10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170446-528584652 +# @用例名称: fate-pixfmt-yuv444p-gbrp10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gbrp10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gbrp10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-gbrp10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-gbrp12be.sh b/testcase/fate-pixfmt-yuv444p-gbrp12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..e0e33b746c73f69f0af39941539effe1e3d59ffc --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-gbrp12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170446-621971245 +# @用例名称: fate-pixfmt-yuv444p-gbrp12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gbrp12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gbrp12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-gbrp12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-gbrp12le.sh b/testcase/fate-pixfmt-yuv444p-gbrp12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..0857270a363ecf2bba3085e3bda2e62cc64af589 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-gbrp12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170446-715055622 +# @用例名称: fate-pixfmt-yuv444p-gbrp12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gbrp12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gbrp12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-gbrp12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-gbrp16be.sh b/testcase/fate-pixfmt-yuv444p-gbrp16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..41ff1d6b5941d65deb98e8a4e30e5d06c8566d3d --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-gbrp16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170446-805785826 +# @用例名称: fate-pixfmt-yuv444p-gbrp16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gbrp16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gbrp16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-gbrp16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-gbrp16le.sh b/testcase/fate-pixfmt-yuv444p-gbrp16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..377ff0c8344be543154753791e38e2a6acf2985b --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-gbrp16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170446-899977741 +# @用例名称: fate-pixfmt-yuv444p-gbrp16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gbrp16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gbrp16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-gbrp16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-gray.sh b/testcase/fate-pixfmt-yuv444p-gray.sh new file mode 100755 index 0000000000000000000000000000000000000000..fc7160959a067b95033200d4bfa642ce57ee9596 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-gray.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170446-990148427 +# @用例名称: fate-pixfmt-yuv444p-gray +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gray +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gray + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-gray + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-gray10be.sh b/testcase/fate-pixfmt-yuv444p-gray10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..13eeeca800c4106fd6c765a54eab47201a01e63f --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-gray10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170447-083687286 +# @用例名称: fate-pixfmt-yuv444p-gray10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gray10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gray10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-gray10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-gray10le.sh b/testcase/fate-pixfmt-yuv444p-gray10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..d0548f34a6e62c2b603ddea10c1eaa636f9c3af0 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-gray10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170447-170408858 +# @用例名称: fate-pixfmt-yuv444p-gray10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gray10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gray10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-gray10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-gray12be.sh b/testcase/fate-pixfmt-yuv444p-gray12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..2d0908c58030be1994954fd577850b76f758f077 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-gray12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170447-264640494 +# @用例名称: fate-pixfmt-yuv444p-gray12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gray12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gray12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-gray12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-gray12le.sh b/testcase/fate-pixfmt-yuv444p-gray12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..958366e37ab2785d4b4dba32620bb11a13ce2483 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-gray12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170447-356410187 +# @用例名称: fate-pixfmt-yuv444p-gray12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gray12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gray12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-gray12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-gray16be.sh b/testcase/fate-pixfmt-yuv444p-gray16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..5363272d3959b3131eb0b52b0ab45c26908552e6 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-gray16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170447-448859317 +# @用例名称: fate-pixfmt-yuv444p-gray16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gray16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gray16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-gray16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-gray16le.sh b/testcase/fate-pixfmt-yuv444p-gray16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..fef7cec8033d5a69956d5e2461398a211eb50b83 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-gray16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170447-538802626 +# @用例名称: fate-pixfmt-yuv444p-gray16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gray16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-gray16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-gray16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-monob.sh b/testcase/fate-pixfmt-yuv444p-monob.sh new file mode 100755 index 0000000000000000000000000000000000000000..9a0cd72d2bffc93e778d6f98f35ebfff65111588 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-monob.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170447-629479152 +# @用例名称: fate-pixfmt-yuv444p-monob +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-monob +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-monob + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-monob + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-monow.sh b/testcase/fate-pixfmt-yuv444p-monow.sh new file mode 100755 index 0000000000000000000000000000000000000000..0e13f3cd41ba763d81d6ee3b18d2d2c45302cc0b --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-monow.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170447-720783934 +# @用例名称: fate-pixfmt-yuv444p-monow +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-monow +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-monow + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-monow + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-nv12.sh b/testcase/fate-pixfmt-yuv444p-nv12.sh new file mode 100755 index 0000000000000000000000000000000000000000..a131b4ab779a31e185ce64fe7e1a6fa6cf3b6276 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-nv12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170447-812506769 +# @用例名称: fate-pixfmt-yuv444p-nv12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-nv12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-nv12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-nv12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-nv16.sh b/testcase/fate-pixfmt-yuv444p-nv16.sh new file mode 100755 index 0000000000000000000000000000000000000000..d60a049c1823dc8eab0a085b4490aa89d75fbf3b --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-nv16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170447-905629266 +# @用例名称: fate-pixfmt-yuv444p-nv16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-nv16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-nv16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-nv16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-nv24.sh b/testcase/fate-pixfmt-yuv444p-nv24.sh new file mode 100755 index 0000000000000000000000000000000000000000..5db6ab794b392da289514bde5a1019b3ecbde5f1 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-nv24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170447-997654294 +# @用例名称: fate-pixfmt-yuv444p-nv24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-nv24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-nv24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-nv24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-p010be.sh b/testcase/fate-pixfmt-yuv444p-p010be.sh new file mode 100755 index 0000000000000000000000000000000000000000..633cd1ade59b5dae689a4affee4fea244e9f70ce --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-p010be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170448-088879839 +# @用例名称: fate-pixfmt-yuv444p-p010be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p010be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p010be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-p010be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-p010le.sh b/testcase/fate-pixfmt-yuv444p-p010le.sh new file mode 100755 index 0000000000000000000000000000000000000000..a8e244b85d1ac1df4e5096f7612df4a43d01dbd4 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-p010le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170448-178460995 +# @用例名称: fate-pixfmt-yuv444p-p010le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p010le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p010le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-p010le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-p012be.sh b/testcase/fate-pixfmt-yuv444p-p012be.sh new file mode 100755 index 0000000000000000000000000000000000000000..23b5544f4733731766189045efcb5a16ca156e9d --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-p012be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170448-270519653 +# @用例名称: fate-pixfmt-yuv444p-p012be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p012be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p012be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-p012be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-p012le.sh b/testcase/fate-pixfmt-yuv444p-p012le.sh new file mode 100755 index 0000000000000000000000000000000000000000..cc2f13c5b8222ceaad05f5d0315fcc0136ca4cbf --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-p012le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170448-361720647 +# @用例名称: fate-pixfmt-yuv444p-p012le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p012le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p012le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-p012le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-p016be.sh b/testcase/fate-pixfmt-yuv444p-p016be.sh new file mode 100755 index 0000000000000000000000000000000000000000..cebedd69fcdac8ba9e2cb08866e3afe1cd5aa69b --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-p016be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170448-452848814 +# @用例名称: fate-pixfmt-yuv444p-p016be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p016be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p016be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-p016be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-p016le.sh b/testcase/fate-pixfmt-yuv444p-p016le.sh new file mode 100755 index 0000000000000000000000000000000000000000..a3c2cabf11644bdb0ee3600ae71b14c1cc5facfb --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-p016le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170448-541641696 +# @用例名称: fate-pixfmt-yuv444p-p016le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p016le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p016le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-p016le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-p210be.sh b/testcase/fate-pixfmt-yuv444p-p210be.sh new file mode 100755 index 0000000000000000000000000000000000000000..60d5df7899cf80da72f5678f00ef39e3b36a776e --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-p210be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170448-634108005 +# @用例名称: fate-pixfmt-yuv444p-p210be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p210be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p210be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-p210be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-p210le.sh b/testcase/fate-pixfmt-yuv444p-p210le.sh new file mode 100755 index 0000000000000000000000000000000000000000..f94e9bc27db23fb5ea28899f774d8761af8070c8 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-p210le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170448-726837300 +# @用例名称: fate-pixfmt-yuv444p-p210le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p210le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p210le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-p210le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-p212be.sh b/testcase/fate-pixfmt-yuv444p-p212be.sh new file mode 100755 index 0000000000000000000000000000000000000000..d57663a369eb9b2bf1ca73995355fd2a6eb0bf42 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-p212be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170448-818383959 +# @用例名称: fate-pixfmt-yuv444p-p212be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p212be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p212be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-p212be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-p212le.sh b/testcase/fate-pixfmt-yuv444p-p212le.sh new file mode 100755 index 0000000000000000000000000000000000000000..b9febef1f56a6d7ca3282eb5f04372c6153d2567 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-p212le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170448-909684161 +# @用例名称: fate-pixfmt-yuv444p-p212le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p212le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p212le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-p212le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-p216be.sh b/testcase/fate-pixfmt-yuv444p-p216be.sh new file mode 100755 index 0000000000000000000000000000000000000000..420f4863f8e3017224cc3eb31db979f9684230bc --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-p216be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170448-999761977 +# @用例名称: fate-pixfmt-yuv444p-p216be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p216be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p216be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-p216be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-p216le.sh b/testcase/fate-pixfmt-yuv444p-p216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..4fe37871fe79b6fefb73bf209615b56b45b245b6 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-p216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170449-087786954 +# @用例名称: fate-pixfmt-yuv444p-p216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-p216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-p410be.sh b/testcase/fate-pixfmt-yuv444p-p410be.sh new file mode 100755 index 0000000000000000000000000000000000000000..d731906647ee875b8b3989b3b74bdc2f81910947 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-p410be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170449-181432071 +# @用例名称: fate-pixfmt-yuv444p-p410be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p410be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p410be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-p410be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-p410le.sh b/testcase/fate-pixfmt-yuv444p-p410le.sh new file mode 100755 index 0000000000000000000000000000000000000000..049621b15f05d1b05079ec4007afcc2558995577 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-p410le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170449-271884540 +# @用例名称: fate-pixfmt-yuv444p-p410le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p410le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p410le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-p410le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-p412be.sh b/testcase/fate-pixfmt-yuv444p-p412be.sh new file mode 100755 index 0000000000000000000000000000000000000000..3176e019a1e9762816297887c11dcd591a2bc0c3 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-p412be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170449-363760682 +# @用例名称: fate-pixfmt-yuv444p-p412be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p412be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p412be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-p412be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-p412le.sh b/testcase/fate-pixfmt-yuv444p-p412le.sh new file mode 100755 index 0000000000000000000000000000000000000000..2a37f3c24bba10dd13fed7759c2b61fe9dd89239 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-p412le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170449-453200541 +# @用例名称: fate-pixfmt-yuv444p-p412le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p412le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p412le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-p412le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-p416be.sh b/testcase/fate-pixfmt-yuv444p-p416be.sh new file mode 100755 index 0000000000000000000000000000000000000000..93029ed6cdaa7e98e776a3ae351e4568df8ebaa6 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-p416be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170449-539050861 +# @用例名称: fate-pixfmt-yuv444p-p416be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p416be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p416be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-p416be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-p416le.sh b/testcase/fate-pixfmt-yuv444p-p416le.sh new file mode 100755 index 0000000000000000000000000000000000000000..5f8e93abba8f4833ddee5c86612c4e27ca95a73c --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-p416le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170449-627959580 +# @用例名称: fate-pixfmt-yuv444p-p416le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p416le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-p416le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-p416le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-rgb24.sh b/testcase/fate-pixfmt-yuv444p-rgb24.sh new file mode 100755 index 0000000000000000000000000000000000000000..77ea2c9c17534993c22f0451db85a1a5718c480f --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-rgb24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170449-718072316 +# @用例名称: fate-pixfmt-yuv444p-rgb24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-rgb24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-rgb24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-rgb24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-rgb32.sh b/testcase/fate-pixfmt-yuv444p-rgb32.sh new file mode 100755 index 0000000000000000000000000000000000000000..f3c1acf8e645bda9639aabb8b6c78fc24852ab1e --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-rgb32.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170449-808324660 +# @用例名称: fate-pixfmt-yuv444p-rgb32 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-rgb32 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-rgb32 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-rgb32 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-rgb48.sh b/testcase/fate-pixfmt-yuv444p-rgb48.sh new file mode 100755 index 0000000000000000000000000000000000000000..c44cd91dbf578a882b7ce11a45c18de9adc70989 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-rgb48.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170449-895582521 +# @用例名称: fate-pixfmt-yuv444p-rgb48 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-rgb48 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-rgb48 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-rgb48 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-rgb555.sh b/testcase/fate-pixfmt-yuv444p-rgb555.sh new file mode 100755 index 0000000000000000000000000000000000000000..0207418cb1d0a890efe6413fcaa8e6caf5c0d93c --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-rgb555.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170449-987141609 +# @用例名称: fate-pixfmt-yuv444p-rgb555 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-rgb555 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-rgb555 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-rgb555 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-rgb565.sh b/testcase/fate-pixfmt-yuv444p-rgb565.sh new file mode 100755 index 0000000000000000000000000000000000000000..0bf3e6f0518348f9e3db51507b275e3ecd2fea8d --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-rgb565.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170450-078212246 +# @用例名称: fate-pixfmt-yuv444p-rgb565 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-rgb565 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-rgb565 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-rgb565 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-uyvy422.sh b/testcase/fate-pixfmt-yuv444p-uyvy422.sh new file mode 100755 index 0000000000000000000000000000000000000000..7873661a0c64c4747d4cdddfd078e4a89b851e1c --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-uyvy422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170450-166887801 +# @用例名称: fate-pixfmt-yuv444p-uyvy422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-uyvy422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-uyvy422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-uyvy422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-v30xle.sh b/testcase/fate-pixfmt-yuv444p-v30xle.sh new file mode 100755 index 0000000000000000000000000000000000000000..481c0ee34823d4455e332937855ebf35f4083836 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-v30xle.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170450-255095054 +# @用例名称: fate-pixfmt-yuv444p-v30xle +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-v30xle +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-v30xle + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-v30xle + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-vuyx.sh b/testcase/fate-pixfmt-yuv444p-vuyx.sh new file mode 100755 index 0000000000000000000000000000000000000000..7f92504243388f278f6a9078b052a0f7848fffbe --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-vuyx.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170450-342214798 +# @用例名称: fate-pixfmt-yuv444p-vuyx +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-vuyx +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-vuyx + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-vuyx + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-vyu444.sh b/testcase/fate-pixfmt-yuv444p-vyu444.sh new file mode 100755 index 0000000000000000000000000000000000000000..2c6e8105ec6433d8b025bced73fd35cd0dcc1fe7 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-vyu444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170450-430481020 +# @用例名称: fate-pixfmt-yuv444p-vyu444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-vyu444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-vyu444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-vyu444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-x2bgr10le.sh b/testcase/fate-pixfmt-yuv444p-x2bgr10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..2db79651926f52ee123ecf1aa763b74f471faf35 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-x2bgr10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170450-518590696 +# @用例名称: fate-pixfmt-yuv444p-x2bgr10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-x2bgr10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-x2bgr10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-x2bgr10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-x2rgb10le.sh b/testcase/fate-pixfmt-yuv444p-x2rgb10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..76923f57991ce50d7d6658537b92d794aa4c6294 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-x2rgb10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170450-607408977 +# @用例名称: fate-pixfmt-yuv444p-x2rgb10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-x2rgb10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-x2rgb10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-x2rgb10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-xv30le.sh b/testcase/fate-pixfmt-yuv444p-xv30le.sh new file mode 100755 index 0000000000000000000000000000000000000000..37fcd3e7158294d4b38fb354bec8c8285f2ad8b2 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-xv30le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170450-695127080 +# @用例名称: fate-pixfmt-yuv444p-xv30le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-xv30le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-xv30le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-xv30le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-xv36be.sh b/testcase/fate-pixfmt-yuv444p-xv36be.sh new file mode 100755 index 0000000000000000000000000000000000000000..1ef028a67eb45725bf3e4b1a0a4513e57f283a07 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-xv36be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170450-784001229 +# @用例名称: fate-pixfmt-yuv444p-xv36be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-xv36be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-xv36be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-xv36be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-xv36le.sh b/testcase/fate-pixfmt-yuv444p-xv36le.sh new file mode 100755 index 0000000000000000000000000000000000000000..df80e97d081b1a2f43d3cb258100810dd6e440d9 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-xv36le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170450-870350390 +# @用例名称: fate-pixfmt-yuv444p-xv36le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-xv36le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-xv36le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-xv36le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-xv48be.sh b/testcase/fate-pixfmt-yuv444p-xv48be.sh new file mode 100755 index 0000000000000000000000000000000000000000..dab1f1242f58b4bd27358f61195f4f1a4f813c87 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-xv48be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170450-958091462 +# @用例名称: fate-pixfmt-yuv444p-xv48be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-xv48be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-xv48be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-xv48be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-xv48le.sh b/testcase/fate-pixfmt-yuv444p-xv48le.sh new file mode 100755 index 0000000000000000000000000000000000000000..b545392de60651cb9339f14ec4be39660c4430b5 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-xv48le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170451-045029900 +# @用例名称: fate-pixfmt-yuv444p-xv48le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-xv48le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-xv48le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-xv48le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-xyz12le.sh b/testcase/fate-pixfmt-yuv444p-xyz12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..8fbad5aa2157c4d5484efeb85adf5c0b587f99cf --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-xyz12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170451-134925141 +# @用例名称: fate-pixfmt-yuv444p-xyz12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-xyz12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-xyz12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-xyz12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-y210le.sh b/testcase/fate-pixfmt-yuv444p-y210le.sh new file mode 100755 index 0000000000000000000000000000000000000000..361c89e15aec30527d611d63dcd6eec426ac8f70 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-y210le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170451-223215512 +# @用例名称: fate-pixfmt-yuv444p-y210le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-y210le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-y210le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-y210le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-y212le.sh b/testcase/fate-pixfmt-yuv444p-y212le.sh new file mode 100755 index 0000000000000000000000000000000000000000..d13a718e3deb0968841ab488a46b66c79611b479 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-y212le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170451-313364938 +# @用例名称: fate-pixfmt-yuv444p-y212le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-y212le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-y212le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-y212le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-y216le.sh b/testcase/fate-pixfmt-yuv444p-y216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..d2922bb65d2772c7e01a1a2afb5f2c0b7a76a72d --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-y216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170451-402853016 +# @用例名称: fate-pixfmt-yuv444p-y216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-y216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-y216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-y216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv410p.sh b/testcase/fate-pixfmt-yuv444p-yuv410p.sh new file mode 100755 index 0000000000000000000000000000000000000000..1deab1f2c67023f05ba2060ed8001d86fa76c0d7 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv410p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170451-494239537 +# @用例名称: fate-pixfmt-yuv444p-yuv410p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv410p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv410p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv410p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv411p.sh b/testcase/fate-pixfmt-yuv444p-yuv411p.sh new file mode 100755 index 0000000000000000000000000000000000000000..fc3677eb6d4765cd1cdeb83a94cceb0d4810a6fb --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv411p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170451-579309271 +# @用例名称: fate-pixfmt-yuv444p-yuv411p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv411p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv411p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv411p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv420p.sh b/testcase/fate-pixfmt-yuv444p-yuv420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..14c1a53bb43462e5fcad664d6518eaefb2676e8d --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170451-672838091 +# @用例名称: fate-pixfmt-yuv444p-yuv420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv420p10be.sh b/testcase/fate-pixfmt-yuv444p-yuv420p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..8c6093795ec52d007c823b45ea156185e7bf4c0b --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv420p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170451-763992626 +# @用例名称: fate-pixfmt-yuv444p-yuv420p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv420p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv420p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv420p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv420p10le.sh b/testcase/fate-pixfmt-yuv444p-yuv420p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..a1bf82bdf1106d453d5f51eb59ed0bd834849ca0 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv420p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170451-854656351 +# @用例名称: fate-pixfmt-yuv444p-yuv420p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv420p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv420p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv420p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv420p12be.sh b/testcase/fate-pixfmt-yuv444p-yuv420p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..7fc4e5577fbaa25e1bb8d5e08bea8d0f3e7febc5 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv420p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170451-944144120 +# @用例名称: fate-pixfmt-yuv444p-yuv420p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv420p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv420p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv420p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv420p12le.sh b/testcase/fate-pixfmt-yuv444p-yuv420p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..4cb5f189f8829bf7bf51543e06ce098df0fa997c --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv420p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170452-031116347 +# @用例名称: fate-pixfmt-yuv444p-yuv420p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv420p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv420p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv420p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv420p16be.sh b/testcase/fate-pixfmt-yuv444p-yuv420p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..3693225612a139e3c66488c821eab0b673d5dcb4 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv420p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170452-120550276 +# @用例名称: fate-pixfmt-yuv444p-yuv420p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv420p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv420p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv420p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv420p16le.sh b/testcase/fate-pixfmt-yuv444p-yuv420p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..55554d42ccd234e07ff8f4872b3f82c868c8bb7f --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv420p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170452-202338525 +# @用例名称: fate-pixfmt-yuv444p-yuv420p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv420p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv420p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv420p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv422p.sh b/testcase/fate-pixfmt-yuv444p-yuv422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..d43f52039916b3201f6aceb919da7cc1ac213f14 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170452-286471088 +# @用例名称: fate-pixfmt-yuv444p-yuv422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv422p10be.sh b/testcase/fate-pixfmt-yuv444p-yuv422p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..5b20a9c42e15db4bc354f4e1a1344764e4a04980 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv422p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170452-373964865 +# @用例名称: fate-pixfmt-yuv444p-yuv422p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv422p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv422p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv422p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv422p10le.sh b/testcase/fate-pixfmt-yuv444p-yuv422p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..31180a84bcaa469f7418017a072b41cf35ef01e6 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv422p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170452-466685251 +# @用例名称: fate-pixfmt-yuv444p-yuv422p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv422p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv422p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv422p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv422p12be.sh b/testcase/fate-pixfmt-yuv444p-yuv422p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..a289f0f9d55c5266cb54a9c0a834feefb3cbeb28 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv422p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170452-553448572 +# @用例名称: fate-pixfmt-yuv444p-yuv422p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv422p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv422p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv422p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv422p12le.sh b/testcase/fate-pixfmt-yuv444p-yuv422p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..4d21d76d13cc82a106b45d61990b0180a1f2f4d5 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv422p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170452-637720092 +# @用例名称: fate-pixfmt-yuv444p-yuv422p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv422p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv422p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv422p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv422p16be.sh b/testcase/fate-pixfmt-yuv444p-yuv422p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..50f64cb3887de2129701462b0532e6f6cc638925 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv422p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170452-728058773 +# @用例名称: fate-pixfmt-yuv444p-yuv422p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv422p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv422p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv422p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv422p16le.sh b/testcase/fate-pixfmt-yuv444p-yuv422p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..dca9c8b8d4c5b2e1eeadd2ac5312daa9b81559d8 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv422p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170452-819007353 +# @用例名称: fate-pixfmt-yuv444p-yuv422p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv422p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv422p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv422p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv440p.sh b/testcase/fate-pixfmt-yuv444p-yuv440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..84a96a64d48d36af4b0ba5f47756821a975ef6c4 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170452-909544101 +# @用例名称: fate-pixfmt-yuv444p-yuv440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv440p10be.sh b/testcase/fate-pixfmt-yuv444p-yuv440p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..ba6ec52d1ead75ca445451eeef1e8bd583f0a54d --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv440p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170452-998409872 +# @用例名称: fate-pixfmt-yuv444p-yuv440p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv440p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv440p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv440p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv440p10le.sh b/testcase/fate-pixfmt-yuv444p-yuv440p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..69213f63b190c60d584f717d4b04fe727068be79 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv440p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170453-084703533 +# @用例名称: fate-pixfmt-yuv444p-yuv440p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv440p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv440p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv440p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv440p12be.sh b/testcase/fate-pixfmt-yuv444p-yuv440p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..88994fb51a74bbd9dc1102fb851498c4fe5e54a4 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv440p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170453-168710849 +# @用例名称: fate-pixfmt-yuv444p-yuv440p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv440p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv440p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv440p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv440p12le.sh b/testcase/fate-pixfmt-yuv444p-yuv440p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..f2bada93af5c96f75324a503c5374e7193241d5e --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv440p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170453-255859522 +# @用例名称: fate-pixfmt-yuv444p-yuv440p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv440p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv440p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv440p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv444p.sh b/testcase/fate-pixfmt-yuv444p-yuv444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..99d00055fe7b6fe691fa87e19ec79192f9c63780 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170453-348089106 +# @用例名称: fate-pixfmt-yuv444p-yuv444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv444p10be.sh b/testcase/fate-pixfmt-yuv444p-yuv444p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..2eea1821bd3d94b55064e550452dbc962d3480ce --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv444p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170453-438703433 +# @用例名称: fate-pixfmt-yuv444p-yuv444p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv444p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv444p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv444p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv444p10le.sh b/testcase/fate-pixfmt-yuv444p-yuv444p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..49c00ddf27dc49da79ca28674ffd96c6516b4fcb --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv444p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170453-528536044 +# @用例名称: fate-pixfmt-yuv444p-yuv444p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv444p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv444p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv444p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv444p10msbbe.sh b/testcase/fate-pixfmt-yuv444p-yuv444p10msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..22d3da845c50f6af94ce0640ea094418482ad1e8 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv444p10msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170453-617738938 +# @用例名称: fate-pixfmt-yuv444p-yuv444p10msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv444p10msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv444p10msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv444p10msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv444p10msble.sh b/testcase/fate-pixfmt-yuv444p-yuv444p10msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..87e76504623ec4d2f44d906166121250d3e5b0d3 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv444p10msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170453-706555489 +# @用例名称: fate-pixfmt-yuv444p-yuv444p10msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv444p10msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv444p10msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv444p10msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv444p12be.sh b/testcase/fate-pixfmt-yuv444p-yuv444p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..00552eeaa588798a1023e67e5e1008c0f8d8d990 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv444p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170453-797204585 +# @用例名称: fate-pixfmt-yuv444p-yuv444p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv444p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv444p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv444p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv444p12le.sh b/testcase/fate-pixfmt-yuv444p-yuv444p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..ccb90d329ffff285653e450da5e2ef8a0e751bd8 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv444p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170453-885404478 +# @用例名称: fate-pixfmt-yuv444p-yuv444p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv444p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv444p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv444p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv444p12msbbe.sh b/testcase/fate-pixfmt-yuv444p-yuv444p12msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..8fa6e108ecdd35f969b5507da540884921c2ff29 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv444p12msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170453-976528035 +# @用例名称: fate-pixfmt-yuv444p-yuv444p12msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv444p12msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv444p12msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv444p12msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv444p12msble.sh b/testcase/fate-pixfmt-yuv444p-yuv444p12msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..85e0f4607e35a9dc749a957b6408e06cca2a3f37 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv444p12msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170454-066832577 +# @用例名称: fate-pixfmt-yuv444p-yuv444p12msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv444p12msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv444p12msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv444p12msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv444p16be.sh b/testcase/fate-pixfmt-yuv444p-yuv444p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..e7ecaaf2933b396b2e952bb9a37524a4d9648bf8 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv444p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170454-159672050 +# @用例名称: fate-pixfmt-yuv444p-yuv444p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv444p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv444p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv444p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuv444p16le.sh b/testcase/fate-pixfmt-yuv444p-yuv444p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..85cfd2939d4a559ea4180fcf00e2f7f14cbf20ca --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuv444p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170454-248915792 +# @用例名称: fate-pixfmt-yuv444p-yuv444p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv444p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuv444p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuv444p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuvj420p.sh b/testcase/fate-pixfmt-yuv444p-yuvj420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..2ab013c868211d2140377ac6fe112e4c14103137 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuvj420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170454-341147477 +# @用例名称: fate-pixfmt-yuv444p-yuvj420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuvj420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuvj420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuvj420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuvj422p.sh b/testcase/fate-pixfmt-yuv444p-yuvj422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..2c7e9ff8880b6df8166136ee1546b7e274bee552 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuvj422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170454-437301194 +# @用例名称: fate-pixfmt-yuv444p-yuvj422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuvj422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuvj422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuvj422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuvj440p.sh b/testcase/fate-pixfmt-yuv444p-yuvj440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..26aae65592a8083af975a49e404e32f6596ffd8a --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuvj440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170454-529459790 +# @用例名称: fate-pixfmt-yuv444p-yuvj440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuvj440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuvj440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuvj440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuvj444p.sh b/testcase/fate-pixfmt-yuv444p-yuvj444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..d6669b584d5e5a1fe5c47347a6d8d121c3fdcac7 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuvj444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170454-613625683 +# @用例名称: fate-pixfmt-yuv444p-yuvj444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuvj444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuvj444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuvj444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yuyv422.sh b/testcase/fate-pixfmt-yuv444p-yuyv422.sh new file mode 100755 index 0000000000000000000000000000000000000000..27a96f9822113a4314baff9f8b4646c958e8398d --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yuyv422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170454-705302258 +# @用例名称: fate-pixfmt-yuv444p-yuyv422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuyv422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yuyv422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yuyv422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p-yvyu422.sh b/testcase/fate-pixfmt-yuv444p-yvyu422.sh new file mode 100755 index 0000000000000000000000000000000000000000..964c747ee9d8946b00367c8587db1dc845cee10b --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p-yvyu422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170454-793455442 +# @用例名称: fate-pixfmt-yuv444p-yvyu422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yvyu422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p-yvyu422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p-yvyu422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p.sh b/testcase/fate-pixfmt-yuv444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..4651182b381641c0891ce0fb5a28ba458bf57294 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170446-252656034 +# @用例名称: fate-pixfmt-yuv444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-bgr24.sh b/testcase/fate-pixfmt-yuv444p10-bgr24.sh new file mode 100755 index 0000000000000000000000000000000000000000..62cc57222f70ea067cd5b3ecaa9f44d9251a7312 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-bgr24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170454-883113387 +# @用例名称: fate-pixfmt-yuv444p10-bgr24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-bgr24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-bgr24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-bgr24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-gbrp10be.sh b/testcase/fate-pixfmt-yuv444p10-gbrp10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..334536705cef334342c6c3c6aa41c4a54103cc63 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-gbrp10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170454-972545596 +# @用例名称: fate-pixfmt-yuv444p10-gbrp10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gbrp10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gbrp10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-gbrp10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-gbrp10le.sh b/testcase/fate-pixfmt-yuv444p10-gbrp10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..9cb9792a81b170070b3533d30d8e7ec6b2256703 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-gbrp10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170455-059770019 +# @用例名称: fate-pixfmt-yuv444p10-gbrp10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gbrp10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gbrp10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-gbrp10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-gbrp12be.sh b/testcase/fate-pixfmt-yuv444p10-gbrp12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..3a918d0cf77009854fcc12e9203e2f0084e841d1 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-gbrp12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170455-146628029 +# @用例名称: fate-pixfmt-yuv444p10-gbrp12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gbrp12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gbrp12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-gbrp12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-gbrp12le.sh b/testcase/fate-pixfmt-yuv444p10-gbrp12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..f027a103c72309dfa931e6107fef640dd5722370 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-gbrp12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170455-234866021 +# @用例名称: fate-pixfmt-yuv444p10-gbrp12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gbrp12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gbrp12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-gbrp12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-gbrp16be.sh b/testcase/fate-pixfmt-yuv444p10-gbrp16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..d3d6bcd0387a2f334abda1a09be11056c3e21591 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-gbrp16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170455-326496648 +# @用例名称: fate-pixfmt-yuv444p10-gbrp16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gbrp16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gbrp16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-gbrp16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-gbrp16le.sh b/testcase/fate-pixfmt-yuv444p10-gbrp16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..2b1b0a4df0463a71e7cbef92c3aa31524b732ef5 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-gbrp16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170455-420421330 +# @用例名称: fate-pixfmt-yuv444p10-gbrp16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gbrp16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gbrp16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-gbrp16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-gray.sh b/testcase/fate-pixfmt-yuv444p10-gray.sh new file mode 100755 index 0000000000000000000000000000000000000000..9d4e3d0be80b68ff5ec258107478009ac3ac20c6 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-gray.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170455-513069106 +# @用例名称: fate-pixfmt-yuv444p10-gray +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gray +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gray + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-gray + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-gray10be.sh b/testcase/fate-pixfmt-yuv444p10-gray10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..a5a4eae3d5ab5a9089b97b572c11afcf59faff5e --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-gray10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170455-598016222 +# @用例名称: fate-pixfmt-yuv444p10-gray10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gray10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gray10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-gray10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-gray10le.sh b/testcase/fate-pixfmt-yuv444p10-gray10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..979476f6996740e51699b626afb8c624bf809613 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-gray10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170455-689945013 +# @用例名称: fate-pixfmt-yuv444p10-gray10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gray10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gray10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-gray10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-gray12be.sh b/testcase/fate-pixfmt-yuv444p10-gray12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..a994483f526e4f97aba58a46d42ce7cafa333c19 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-gray12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170455-783687569 +# @用例名称: fate-pixfmt-yuv444p10-gray12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gray12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gray12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-gray12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-gray12le.sh b/testcase/fate-pixfmt-yuv444p10-gray12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..c31383cdf71c2ddd023b12bde0af219898182b4b --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-gray12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170455-874980321 +# @用例名称: fate-pixfmt-yuv444p10-gray12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gray12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gray12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-gray12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-gray16be.sh b/testcase/fate-pixfmt-yuv444p10-gray16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..214fcb609470dc99e75f761c380d1bcfd30bc1a8 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-gray16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170455-964877131 +# @用例名称: fate-pixfmt-yuv444p10-gray16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gray16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gray16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-gray16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-gray16le.sh b/testcase/fate-pixfmt-yuv444p10-gray16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..8ef3a02fbdd6349d6533ff691d976d80848f203f --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-gray16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170456-055382130 +# @用例名称: fate-pixfmt-yuv444p10-gray16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gray16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-gray16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-gray16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-monob.sh b/testcase/fate-pixfmt-yuv444p10-monob.sh new file mode 100755 index 0000000000000000000000000000000000000000..4d2ecd57e272e781da2b5e2263aa0b2610918865 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-monob.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170456-149237333 +# @用例名称: fate-pixfmt-yuv444p10-monob +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-monob +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-monob + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-monob + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-monow.sh b/testcase/fate-pixfmt-yuv444p10-monow.sh new file mode 100755 index 0000000000000000000000000000000000000000..4d28a8f1a0507e98ec9b942addfa7233d4aefae1 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-monow.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170456-240341609 +# @用例名称: fate-pixfmt-yuv444p10-monow +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-monow +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-monow + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-monow + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-nv12.sh b/testcase/fate-pixfmt-yuv444p10-nv12.sh new file mode 100755 index 0000000000000000000000000000000000000000..9853c1a65895c0a9aa75f2eeb0473dd5c1511056 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-nv12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170456-332087983 +# @用例名称: fate-pixfmt-yuv444p10-nv12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-nv12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-nv12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-nv12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-nv16.sh b/testcase/fate-pixfmt-yuv444p10-nv16.sh new file mode 100755 index 0000000000000000000000000000000000000000..855823decbead313ddc453133a50258213912a58 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-nv16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170456-422208648 +# @用例名称: fate-pixfmt-yuv444p10-nv16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-nv16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-nv16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-nv16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-nv24.sh b/testcase/fate-pixfmt-yuv444p10-nv24.sh new file mode 100755 index 0000000000000000000000000000000000000000..06ef80cd9fd6a410dfe63f8177df9d124f3cd30a --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-nv24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170456-510209956 +# @用例名称: fate-pixfmt-yuv444p10-nv24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-nv24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-nv24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-nv24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-p010be.sh b/testcase/fate-pixfmt-yuv444p10-p010be.sh new file mode 100755 index 0000000000000000000000000000000000000000..5c29e1ad8fdce1a06ee96c88e796058b66b68d34 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-p010be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170456-593596343 +# @用例名称: fate-pixfmt-yuv444p10-p010be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p010be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p010be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-p010be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-p010le.sh b/testcase/fate-pixfmt-yuv444p10-p010le.sh new file mode 100755 index 0000000000000000000000000000000000000000..c3c18098ae7f2d1a2c0c0f9e62150bf18ab7a7f7 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-p010le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170456-676114028 +# @用例名称: fate-pixfmt-yuv444p10-p010le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p010le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p010le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-p010le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-p012be.sh b/testcase/fate-pixfmt-yuv444p10-p012be.sh new file mode 100755 index 0000000000000000000000000000000000000000..92b734932ecacb4d57e41760221fa82d36b0e7ef --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-p012be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170456-756450366 +# @用例名称: fate-pixfmt-yuv444p10-p012be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p012be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p012be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-p012be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-p012le.sh b/testcase/fate-pixfmt-yuv444p10-p012le.sh new file mode 100755 index 0000000000000000000000000000000000000000..7612b46e93bee4a89ea67dbf3ddd1ed2bdb49b25 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-p012le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170456-850948956 +# @用例名称: fate-pixfmt-yuv444p10-p012le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p012le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p012le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-p012le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-p016be.sh b/testcase/fate-pixfmt-yuv444p10-p016be.sh new file mode 100755 index 0000000000000000000000000000000000000000..c42c085852bed5c0e269f25978c038f195813a66 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-p016be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170456-936805875 +# @用例名称: fate-pixfmt-yuv444p10-p016be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p016be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p016be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-p016be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-p016le.sh b/testcase/fate-pixfmt-yuv444p10-p016le.sh new file mode 100755 index 0000000000000000000000000000000000000000..eed31443ed9bec5208a8975ffd5b910eb1cd95f7 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-p016le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170457-028186156 +# @用例名称: fate-pixfmt-yuv444p10-p016le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p016le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p016le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-p016le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-p210be.sh b/testcase/fate-pixfmt-yuv444p10-p210be.sh new file mode 100755 index 0000000000000000000000000000000000000000..f92c6ece1dbe42a50d77a642818f4f2136f2fbc8 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-p210be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170457-137531757 +# @用例名称: fate-pixfmt-yuv444p10-p210be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p210be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p210be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-p210be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-p210le.sh b/testcase/fate-pixfmt-yuv444p10-p210le.sh new file mode 100755 index 0000000000000000000000000000000000000000..be0c0e959fe364e736f5a8609cf6dc94d1b3fd21 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-p210le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170457-244510952 +# @用例名称: fate-pixfmt-yuv444p10-p210le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p210le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p210le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-p210le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-p212be.sh b/testcase/fate-pixfmt-yuv444p10-p212be.sh new file mode 100755 index 0000000000000000000000000000000000000000..6c1ecc9c99b63e3ff7443bd3099805d65d4a0a26 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-p212be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170457-335578789 +# @用例名称: fate-pixfmt-yuv444p10-p212be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p212be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p212be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-p212be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-p212le.sh b/testcase/fate-pixfmt-yuv444p10-p212le.sh new file mode 100755 index 0000000000000000000000000000000000000000..e3845a8aeed9f2c402b16a4a84d5950ed8dec6ca --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-p212le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170457-422935909 +# @用例名称: fate-pixfmt-yuv444p10-p212le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p212le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p212le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-p212le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-p216be.sh b/testcase/fate-pixfmt-yuv444p10-p216be.sh new file mode 100755 index 0000000000000000000000000000000000000000..6eb909e74976c506fe62cbda5384edd751eaba93 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-p216be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170457-513409468 +# @用例名称: fate-pixfmt-yuv444p10-p216be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p216be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p216be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-p216be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-p216le.sh b/testcase/fate-pixfmt-yuv444p10-p216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..302c7f4b1531b10d19d428942a29b29f800089d7 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-p216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170457-604783869 +# @用例名称: fate-pixfmt-yuv444p10-p216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-p216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-p410be.sh b/testcase/fate-pixfmt-yuv444p10-p410be.sh new file mode 100755 index 0000000000000000000000000000000000000000..7d58177f924bf8b4b0191b80aaccd9f034ca52bb --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-p410be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170457-695580952 +# @用例名称: fate-pixfmt-yuv444p10-p410be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p410be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p410be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-p410be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-p410le.sh b/testcase/fate-pixfmt-yuv444p10-p410le.sh new file mode 100755 index 0000000000000000000000000000000000000000..c1ea93c97b3a2a6817fa672745d24d7656698cf0 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-p410le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170457-787155969 +# @用例名称: fate-pixfmt-yuv444p10-p410le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p410le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p410le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-p410le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-p412be.sh b/testcase/fate-pixfmt-yuv444p10-p412be.sh new file mode 100755 index 0000000000000000000000000000000000000000..cc916eef600939040f4649e3a79af44769a9e9bb --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-p412be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170457-880402454 +# @用例名称: fate-pixfmt-yuv444p10-p412be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p412be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p412be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-p412be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-p412le.sh b/testcase/fate-pixfmt-yuv444p10-p412le.sh new file mode 100755 index 0000000000000000000000000000000000000000..2a0fbd95db5c1836c991da0e5e7bd939bebd432f --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-p412le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170457-970857243 +# @用例名称: fate-pixfmt-yuv444p10-p412le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p412le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p412le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-p412le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-p416be.sh b/testcase/fate-pixfmt-yuv444p10-p416be.sh new file mode 100755 index 0000000000000000000000000000000000000000..509b6103079effdabfed226223d090eba1bcc736 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-p416be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170458-061842192 +# @用例名称: fate-pixfmt-yuv444p10-p416be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p416be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p416be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-p416be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-p416le.sh b/testcase/fate-pixfmt-yuv444p10-p416le.sh new file mode 100755 index 0000000000000000000000000000000000000000..5e9eb075d20073242a2a3658ee7070a7e1bd6dce --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-p416le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170458-153369730 +# @用例名称: fate-pixfmt-yuv444p10-p416le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p416le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-p416le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-p416le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-rgb24.sh b/testcase/fate-pixfmt-yuv444p10-rgb24.sh new file mode 100755 index 0000000000000000000000000000000000000000..ed9fd5ec033d6c6337883a0cfd30b22247ae0967 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-rgb24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170458-245209993 +# @用例名称: fate-pixfmt-yuv444p10-rgb24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-rgb24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-rgb24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-rgb24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-rgb32.sh b/testcase/fate-pixfmt-yuv444p10-rgb32.sh new file mode 100755 index 0000000000000000000000000000000000000000..5c5a214a348009db88de080aaf04d9eded8ebe4c --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-rgb32.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170458-337122913 +# @用例名称: fate-pixfmt-yuv444p10-rgb32 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-rgb32 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-rgb32 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-rgb32 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-rgb48.sh b/testcase/fate-pixfmt-yuv444p10-rgb48.sh new file mode 100755 index 0000000000000000000000000000000000000000..8176703581b4e986f833753d518f435db0396ec8 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-rgb48.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170458-425489224 +# @用例名称: fate-pixfmt-yuv444p10-rgb48 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-rgb48 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-rgb48 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-rgb48 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-rgb555.sh b/testcase/fate-pixfmt-yuv444p10-rgb555.sh new file mode 100755 index 0000000000000000000000000000000000000000..fe139297dcd29c65ebf0b2f09cd7f5a39a900f1b --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-rgb555.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170458-519138770 +# @用例名称: fate-pixfmt-yuv444p10-rgb555 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-rgb555 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-rgb555 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-rgb555 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-rgb565.sh b/testcase/fate-pixfmt-yuv444p10-rgb565.sh new file mode 100755 index 0000000000000000000000000000000000000000..08ea95dedcae632b5d488b78574c259c6dd863d4 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-rgb565.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170458-607002290 +# @用例名称: fate-pixfmt-yuv444p10-rgb565 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-rgb565 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-rgb565 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-rgb565 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-uyvy422.sh b/testcase/fate-pixfmt-yuv444p10-uyvy422.sh new file mode 100755 index 0000000000000000000000000000000000000000..a44615582813c47509b490aa6f844414ba15d78e --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-uyvy422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170458-698250334 +# @用例名称: fate-pixfmt-yuv444p10-uyvy422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-uyvy422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-uyvy422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-uyvy422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-v30xle.sh b/testcase/fate-pixfmt-yuv444p10-v30xle.sh new file mode 100755 index 0000000000000000000000000000000000000000..d8cddddc54b769c2cbaec4d7c7c850dd080a4dcb --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-v30xle.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170458-787712343 +# @用例名称: fate-pixfmt-yuv444p10-v30xle +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-v30xle +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-v30xle + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-v30xle + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-vuyx.sh b/testcase/fate-pixfmt-yuv444p10-vuyx.sh new file mode 100755 index 0000000000000000000000000000000000000000..1668dafc8c6ba308ff6d27edd805844b1ba28e3a --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-vuyx.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170458-876897526 +# @用例名称: fate-pixfmt-yuv444p10-vuyx +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-vuyx +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-vuyx + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-vuyx + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-vyu444.sh b/testcase/fate-pixfmt-yuv444p10-vyu444.sh new file mode 100755 index 0000000000000000000000000000000000000000..afe3d2d3bee44ce7a1582855e75f36d60dc76e33 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-vyu444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170458-969207800 +# @用例名称: fate-pixfmt-yuv444p10-vyu444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-vyu444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-vyu444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-vyu444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-x2bgr10le.sh b/testcase/fate-pixfmt-yuv444p10-x2bgr10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..ae11abbe3fc0370ea44a90bf01692f0cdd049859 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-x2bgr10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170459-058452332 +# @用例名称: fate-pixfmt-yuv444p10-x2bgr10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-x2bgr10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-x2bgr10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-x2bgr10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-x2rgb10le.sh b/testcase/fate-pixfmt-yuv444p10-x2rgb10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..28197b3b857a092bfa61cb0d6f857ecf6ad1fcb0 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-x2rgb10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170459-152163538 +# @用例名称: fate-pixfmt-yuv444p10-x2rgb10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-x2rgb10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-x2rgb10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-x2rgb10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-xv30le.sh b/testcase/fate-pixfmt-yuv444p10-xv30le.sh new file mode 100755 index 0000000000000000000000000000000000000000..ccd3e6de7662a10e3d2404f31675e8cd9104f80a --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-xv30le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170459-243863413 +# @用例名称: fate-pixfmt-yuv444p10-xv30le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-xv30le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-xv30le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-xv30le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-xv36be.sh b/testcase/fate-pixfmt-yuv444p10-xv36be.sh new file mode 100755 index 0000000000000000000000000000000000000000..0558425beed05005b1f660a688326051919942ed --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-xv36be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170459-337332624 +# @用例名称: fate-pixfmt-yuv444p10-xv36be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-xv36be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-xv36be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-xv36be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-xv36le.sh b/testcase/fate-pixfmt-yuv444p10-xv36le.sh new file mode 100755 index 0000000000000000000000000000000000000000..2497e63b2da0e43e9961ddddd517940ed22195ca --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-xv36le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170459-432802555 +# @用例名称: fate-pixfmt-yuv444p10-xv36le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-xv36le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-xv36le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-xv36le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-xv48be.sh b/testcase/fate-pixfmt-yuv444p10-xv48be.sh new file mode 100755 index 0000000000000000000000000000000000000000..1d3644ccaf5444cbf970b35db9d4cda212043bbe --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-xv48be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170459-529114950 +# @用例名称: fate-pixfmt-yuv444p10-xv48be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-xv48be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-xv48be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-xv48be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-xv48le.sh b/testcase/fate-pixfmt-yuv444p10-xv48le.sh new file mode 100755 index 0000000000000000000000000000000000000000..f9047fa2d080a460695b40f12ac1a0e4504fe33d --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-xv48le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170459-620323044 +# @用例名称: fate-pixfmt-yuv444p10-xv48le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-xv48le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-xv48le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-xv48le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-xyz12le.sh b/testcase/fate-pixfmt-yuv444p10-xyz12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..1e8e3719a24cecb99f00b32d5d3ccaeef6be3ceb --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-xyz12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170459-713103408 +# @用例名称: fate-pixfmt-yuv444p10-xyz12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-xyz12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-xyz12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-xyz12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-y210le.sh b/testcase/fate-pixfmt-yuv444p10-y210le.sh new file mode 100755 index 0000000000000000000000000000000000000000..6acd90582bafcdac28f770966903a47e97e2ac8e --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-y210le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170459-807490659 +# @用例名称: fate-pixfmt-yuv444p10-y210le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-y210le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-y210le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-y210le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-y212le.sh b/testcase/fate-pixfmt-yuv444p10-y212le.sh new file mode 100755 index 0000000000000000000000000000000000000000..3fd1f3cbd739399a788149140b07c8dda4284e9d --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-y212le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170459-900181306 +# @用例名称: fate-pixfmt-yuv444p10-y212le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-y212le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-y212le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-y212le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-y216le.sh b/testcase/fate-pixfmt-yuv444p10-y216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..94be5c8e28e7c3b29950b46a641b817761bcddc0 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-y216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170459-990597375 +# @用例名称: fate-pixfmt-yuv444p10-y216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-y216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-y216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-y216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv410p.sh b/testcase/fate-pixfmt-yuv444p10-yuv410p.sh new file mode 100755 index 0000000000000000000000000000000000000000..8184b5dfbe774a4b8b5db63fbbadfbc779907f51 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv410p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170500-086304531 +# @用例名称: fate-pixfmt-yuv444p10-yuv410p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv410p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv410p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv410p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv411p.sh b/testcase/fate-pixfmt-yuv444p10-yuv411p.sh new file mode 100755 index 0000000000000000000000000000000000000000..bc24faf40d993d4023690333e1128ffd091f1331 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv411p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170500-178947348 +# @用例名称: fate-pixfmt-yuv444p10-yuv411p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv411p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv411p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv411p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv420p.sh b/testcase/fate-pixfmt-yuv444p10-yuv420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..3d2c4124f37951abc54919bcef0e4088c3471362 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170500-267271700 +# @用例名称: fate-pixfmt-yuv444p10-yuv420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv420p10be.sh b/testcase/fate-pixfmt-yuv444p10-yuv420p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..bf9e1f40983d804d2a54c1696509b8047b366268 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv420p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170500-357048523 +# @用例名称: fate-pixfmt-yuv444p10-yuv420p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv420p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv420p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv420p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv420p10le.sh b/testcase/fate-pixfmt-yuv444p10-yuv420p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..b43fcc463493920932301000c0a36c09298ce77f --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv420p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170500-450678758 +# @用例名称: fate-pixfmt-yuv444p10-yuv420p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv420p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv420p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv420p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv420p12be.sh b/testcase/fate-pixfmt-yuv444p10-yuv420p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..0b900b83f20f0a204a11db7d292adea91a4659c9 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv420p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170500-546171640 +# @用例名称: fate-pixfmt-yuv444p10-yuv420p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv420p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv420p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv420p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv420p12le.sh b/testcase/fate-pixfmt-yuv444p10-yuv420p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..ee4c1cd0d12537b58fec0d7a734ca80ba2f18e6d --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv420p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170500-638790207 +# @用例名称: fate-pixfmt-yuv444p10-yuv420p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv420p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv420p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv420p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv420p16be.sh b/testcase/fate-pixfmt-yuv444p10-yuv420p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..671bbc4383c38e2ce27677bfd6a4dab749510bc8 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv420p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170500-720578726 +# @用例名称: fate-pixfmt-yuv444p10-yuv420p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv420p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv420p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv420p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv420p16le.sh b/testcase/fate-pixfmt-yuv444p10-yuv420p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..416f30d26d9e9b75b1674f84a4aef69e57b55ad0 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv420p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170500-810649692 +# @用例名称: fate-pixfmt-yuv444p10-yuv420p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv420p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv420p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv420p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv422p.sh b/testcase/fate-pixfmt-yuv444p10-yuv422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..422752f30782f218e5ccc9214434171f2c021ce8 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170500-899514063 +# @用例名称: fate-pixfmt-yuv444p10-yuv422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv422p10be.sh b/testcase/fate-pixfmt-yuv444p10-yuv422p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..cf9de1dd4e8d1a4ff64c2b2cfe685d025c751e10 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv422p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170500-984104047 +# @用例名称: fate-pixfmt-yuv444p10-yuv422p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv422p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv422p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv422p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv422p10le.sh b/testcase/fate-pixfmt-yuv444p10-yuv422p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..6600e2b61689d06accc23d0157cbc9e0e25486fe --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv422p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170501-075267103 +# @用例名称: fate-pixfmt-yuv444p10-yuv422p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv422p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv422p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv422p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv422p12be.sh b/testcase/fate-pixfmt-yuv444p10-yuv422p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..17dfd3319c053b028ce8a92269ec1461defae773 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv422p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170501-157277366 +# @用例名称: fate-pixfmt-yuv444p10-yuv422p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv422p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv422p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv422p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv422p12le.sh b/testcase/fate-pixfmt-yuv444p10-yuv422p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..1336b93afae110c8d029b244a1f8d33dc5057f61 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv422p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170501-246874583 +# @用例名称: fate-pixfmt-yuv444p10-yuv422p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv422p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv422p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv422p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv422p16be.sh b/testcase/fate-pixfmt-yuv444p10-yuv422p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..b2af0f8141aa46912ad41dc1631b9b8151244a7e --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv422p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170501-337525899 +# @用例名称: fate-pixfmt-yuv444p10-yuv422p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv422p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv422p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv422p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv422p16le.sh b/testcase/fate-pixfmt-yuv444p10-yuv422p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..edfa714196ae05ebcb08925b1326d2f11d63fb88 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv422p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170501-431588968 +# @用例名称: fate-pixfmt-yuv444p10-yuv422p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv422p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv422p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv422p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv440p.sh b/testcase/fate-pixfmt-yuv444p10-yuv440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..02c6062c0f93432ee269d16691bc86c21fa83417 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170501-524064927 +# @用例名称: fate-pixfmt-yuv444p10-yuv440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv440p10be.sh b/testcase/fate-pixfmt-yuv444p10-yuv440p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..16e0b254acef586cb7b6237b62e9468f25f39a23 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv440p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170501-685056875 +# @用例名称: fate-pixfmt-yuv444p10-yuv440p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv440p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv440p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv440p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv440p10le.sh b/testcase/fate-pixfmt-yuv444p10-yuv440p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..d1476aaa97a3cf8b186f7a9f139e91ba9c41584a --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv440p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170501-803031137 +# @用例名称: fate-pixfmt-yuv444p10-yuv440p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv440p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv440p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv440p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv440p12be.sh b/testcase/fate-pixfmt-yuv444p10-yuv440p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..057f8305479fb9c9019ae68750267d49ee9013ce --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv440p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170501-892943206 +# @用例名称: fate-pixfmt-yuv444p10-yuv440p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv440p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv440p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv440p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv440p12le.sh b/testcase/fate-pixfmt-yuv444p10-yuv440p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..9ba3dbaab471efa59f642513ac40ed6d4717d304 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv440p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170501-981771187 +# @用例名称: fate-pixfmt-yuv444p10-yuv440p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv440p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv440p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv440p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv444p.sh b/testcase/fate-pixfmt-yuv444p10-yuv444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..b317b3ed58fb7ba06deaa8242c7b4862bb930b9e --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170502-070170956 +# @用例名称: fate-pixfmt-yuv444p10-yuv444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv444p10be.sh b/testcase/fate-pixfmt-yuv444p10-yuv444p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..38f466d6ce2a3ccae94340e153e567744b7a5293 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv444p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170502-158049467 +# @用例名称: fate-pixfmt-yuv444p10-yuv444p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv444p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv444p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv444p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv444p10le.sh b/testcase/fate-pixfmt-yuv444p10-yuv444p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..2f94f0fc79669afbcc3259b40f3ef0244aca8a2c --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv444p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170502-243748618 +# @用例名称: fate-pixfmt-yuv444p10-yuv444p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv444p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv444p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv444p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv444p10msbbe.sh b/testcase/fate-pixfmt-yuv444p10-yuv444p10msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..5a317224498bc17681427e04635afb23212233bb --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv444p10msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170502-336919925 +# @用例名称: fate-pixfmt-yuv444p10-yuv444p10msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv444p10msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv444p10msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv444p10msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv444p10msble.sh b/testcase/fate-pixfmt-yuv444p10-yuv444p10msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..bac6a65f3a655ff76476d58da880b9645bbc4fb9 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv444p10msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170502-429393925 +# @用例名称: fate-pixfmt-yuv444p10-yuv444p10msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv444p10msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv444p10msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv444p10msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv444p12be.sh b/testcase/fate-pixfmt-yuv444p10-yuv444p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..bd6e39605240e5f6a4935a6cfe0153b47cb3dce0 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv444p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170502-519235545 +# @用例名称: fate-pixfmt-yuv444p10-yuv444p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv444p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv444p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv444p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv444p12le.sh b/testcase/fate-pixfmt-yuv444p10-yuv444p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..4ffed29d314f2b1c58082051df94a6f54bd43af1 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv444p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170502-611433881 +# @用例名称: fate-pixfmt-yuv444p10-yuv444p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv444p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv444p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv444p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv444p12msbbe.sh b/testcase/fate-pixfmt-yuv444p10-yuv444p12msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..055fc263bbf8f2f1398c4697ac7a9c5ab7d8f4a7 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv444p12msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170502-701333361 +# @用例名称: fate-pixfmt-yuv444p10-yuv444p12msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv444p12msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv444p12msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv444p12msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv444p12msble.sh b/testcase/fate-pixfmt-yuv444p10-yuv444p12msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..2c2ee86ec7c3b84b272c08aae1d4bfb9912eed81 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv444p12msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170502-792941268 +# @用例名称: fate-pixfmt-yuv444p10-yuv444p12msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv444p12msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv444p12msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv444p12msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv444p16be.sh b/testcase/fate-pixfmt-yuv444p10-yuv444p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..639787d2b76728740764eed5de3fd48ce5cf86a9 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv444p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170502-885106004 +# @用例名称: fate-pixfmt-yuv444p10-yuv444p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv444p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv444p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv444p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuv444p16le.sh b/testcase/fate-pixfmt-yuv444p10-yuv444p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..dc033c1bbe6ca4b458659c62a7d5d53e2b12c28c --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuv444p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170502-974955424 +# @用例名称: fate-pixfmt-yuv444p10-yuv444p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv444p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuv444p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuv444p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuvj420p.sh b/testcase/fate-pixfmt-yuv444p10-yuvj420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..fe650df7f3473bfaaab4e01fb06f8023f7ba2255 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuvj420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170503-066849916 +# @用例名称: fate-pixfmt-yuv444p10-yuvj420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuvj420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuvj420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuvj420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuvj422p.sh b/testcase/fate-pixfmt-yuv444p10-yuvj422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..ffd9407db61ecbe3b866c029ea6603a071cbb074 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuvj422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170503-157264146 +# @用例名称: fate-pixfmt-yuv444p10-yuvj422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuvj422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuvj422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuvj422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuvj440p.sh b/testcase/fate-pixfmt-yuv444p10-yuvj440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..50ac1fe7c969bf8c04e7d98100a3b200373b713e --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuvj440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170503-251749566 +# @用例名称: fate-pixfmt-yuv444p10-yuvj440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuvj440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuvj440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuvj440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuvj444p.sh b/testcase/fate-pixfmt-yuv444p10-yuvj444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..3676f37423b71b68d68a7bf0166f79c86fc86765 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuvj444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170503-344199627 +# @用例名称: fate-pixfmt-yuv444p10-yuvj444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuvj444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuvj444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuvj444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yuyv422.sh b/testcase/fate-pixfmt-yuv444p10-yuyv422.sh new file mode 100755 index 0000000000000000000000000000000000000000..5b0b99604fef35964b1cbeb0ff0fabccf8a2a6c1 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yuyv422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170503-434476189 +# @用例名称: fate-pixfmt-yuv444p10-yuyv422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuyv422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yuyv422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yuyv422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p10-yvyu422.sh b/testcase/fate-pixfmt-yuv444p10-yvyu422.sh new file mode 100755 index 0000000000000000000000000000000000000000..005372942ebfddc359c385ce04d838b5a53fa24d --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p10-yvyu422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170503-527757223 +# @用例名称: fate-pixfmt-yuv444p10-yvyu422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yvyu422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p10-yvyu422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p10-yvyu422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-bgr24.sh b/testcase/fate-pixfmt-yuv444p12-bgr24.sh new file mode 100755 index 0000000000000000000000000000000000000000..c08343baa358badc26d23d9e6b6d6d2188cec9b9 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-bgr24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170503-621170585 +# @用例名称: fate-pixfmt-yuv444p12-bgr24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-bgr24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-bgr24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-bgr24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-gbrp10be.sh b/testcase/fate-pixfmt-yuv444p12-gbrp10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..2b48f2e3c22d9344f3923d61b36c07e9c9c06fcd --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-gbrp10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170503-710476577 +# @用例名称: fate-pixfmt-yuv444p12-gbrp10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gbrp10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gbrp10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-gbrp10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-gbrp10le.sh b/testcase/fate-pixfmt-yuv444p12-gbrp10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..7f680f1796a76fe2ffa353a6d074a0d56ac995e3 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-gbrp10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170503-799665451 +# @用例名称: fate-pixfmt-yuv444p12-gbrp10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gbrp10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gbrp10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-gbrp10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-gbrp12be.sh b/testcase/fate-pixfmt-yuv444p12-gbrp12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..2ff138a041da3827327e10c8cdf70b0b8ad6a33c --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-gbrp12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170503-888322015 +# @用例名称: fate-pixfmt-yuv444p12-gbrp12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gbrp12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gbrp12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-gbrp12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-gbrp12le.sh b/testcase/fate-pixfmt-yuv444p12-gbrp12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..beef244e7a0a3e3b25f3382ebc795867285afc7f --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-gbrp12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170503-979934112 +# @用例名称: fate-pixfmt-yuv444p12-gbrp12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gbrp12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gbrp12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-gbrp12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-gbrp16be.sh b/testcase/fate-pixfmt-yuv444p12-gbrp16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..9b2a150c450a46425bb75159746312559d822ea9 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-gbrp16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170504-073165427 +# @用例名称: fate-pixfmt-yuv444p12-gbrp16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gbrp16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gbrp16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-gbrp16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-gbrp16le.sh b/testcase/fate-pixfmt-yuv444p12-gbrp16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..a2c8ac7e80ca260ad6fc387bcd04841a39c855d1 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-gbrp16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170504-166409601 +# @用例名称: fate-pixfmt-yuv444p12-gbrp16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gbrp16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gbrp16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-gbrp16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-gray.sh b/testcase/fate-pixfmt-yuv444p12-gray.sh new file mode 100755 index 0000000000000000000000000000000000000000..f8c390e98845906885a3d5ec8d7a31f5a9d74260 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-gray.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170504-258952100 +# @用例名称: fate-pixfmt-yuv444p12-gray +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gray +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gray + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-gray + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-gray10be.sh b/testcase/fate-pixfmt-yuv444p12-gray10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..f7f71a6563a413a0f5b00e481cb975b2033dba93 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-gray10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170504-351114106 +# @用例名称: fate-pixfmt-yuv444p12-gray10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gray10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gray10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-gray10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-gray10le.sh b/testcase/fate-pixfmt-yuv444p12-gray10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..652e2557ae0c1f7c729128188dffca695bd406e4 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-gray10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170504-447935151 +# @用例名称: fate-pixfmt-yuv444p12-gray10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gray10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gray10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-gray10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-gray12be.sh b/testcase/fate-pixfmt-yuv444p12-gray12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..b94bbbf70c6672c8ee5fc3dbcba3cd45e6d85d7c --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-gray12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170504-539828671 +# @用例名称: fate-pixfmt-yuv444p12-gray12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gray12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gray12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-gray12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-gray12le.sh b/testcase/fate-pixfmt-yuv444p12-gray12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..2f5f126edb03def159c92d71a36a32831974698c --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-gray12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170504-629584135 +# @用例名称: fate-pixfmt-yuv444p12-gray12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gray12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gray12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-gray12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-gray16be.sh b/testcase/fate-pixfmt-yuv444p12-gray16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..d1c64d1b5177020b305458dcf11edc3ce90142d1 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-gray16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170504-719630682 +# @用例名称: fate-pixfmt-yuv444p12-gray16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gray16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gray16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-gray16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-gray16le.sh b/testcase/fate-pixfmt-yuv444p12-gray16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..25e37cd9a7824b12cacb9aaa0057381b98d79568 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-gray16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170504-805711007 +# @用例名称: fate-pixfmt-yuv444p12-gray16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gray16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-gray16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-gray16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-monob.sh b/testcase/fate-pixfmt-yuv444p12-monob.sh new file mode 100755 index 0000000000000000000000000000000000000000..46d7871bccc9eaa15e2ec31bad6b81d1d19e54ca --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-monob.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170504-895328743 +# @用例名称: fate-pixfmt-yuv444p12-monob +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-monob +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-monob + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-monob + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-monow.sh b/testcase/fate-pixfmt-yuv444p12-monow.sh new file mode 100755 index 0000000000000000000000000000000000000000..a661a8ecb5d1eb92e641e609e666a2b0fac1cd2d --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-monow.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170504-985138725 +# @用例名称: fate-pixfmt-yuv444p12-monow +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-monow +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-monow + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-monow + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-nv12.sh b/testcase/fate-pixfmt-yuv444p12-nv12.sh new file mode 100755 index 0000000000000000000000000000000000000000..c81d6c8e5e39b715f0f23e2ab938ba72328df35b --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-nv12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170505-077614204 +# @用例名称: fate-pixfmt-yuv444p12-nv12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-nv12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-nv12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-nv12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-nv16.sh b/testcase/fate-pixfmt-yuv444p12-nv16.sh new file mode 100755 index 0000000000000000000000000000000000000000..8ed4deb47f5de4a5ab479b691702a231e281089b --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-nv16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170505-168300699 +# @用例名称: fate-pixfmt-yuv444p12-nv16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-nv16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-nv16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-nv16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-nv24.sh b/testcase/fate-pixfmt-yuv444p12-nv24.sh new file mode 100755 index 0000000000000000000000000000000000000000..27da9520d8c8869d5efb65ce765985c8f1ee5f61 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-nv24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170505-259709479 +# @用例名称: fate-pixfmt-yuv444p12-nv24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-nv24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-nv24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-nv24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-p010be.sh b/testcase/fate-pixfmt-yuv444p12-p010be.sh new file mode 100755 index 0000000000000000000000000000000000000000..729046c03b640e0a37047f444ff97782babb36d9 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-p010be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170505-348167748 +# @用例名称: fate-pixfmt-yuv444p12-p010be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p010be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p010be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-p010be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-p010le.sh b/testcase/fate-pixfmt-yuv444p12-p010le.sh new file mode 100755 index 0000000000000000000000000000000000000000..65218d7184ae0f96d3d10cc2743c9ed0dc0e31b8 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-p010le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170505-439215076 +# @用例名称: fate-pixfmt-yuv444p12-p010le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p010le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p010le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-p010le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-p012be.sh b/testcase/fate-pixfmt-yuv444p12-p012be.sh new file mode 100755 index 0000000000000000000000000000000000000000..ef538d77a15f2cc4008bfbdd56ef5a951f453c65 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-p012be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170505-531797954 +# @用例名称: fate-pixfmt-yuv444p12-p012be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p012be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p012be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-p012be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-p012le.sh b/testcase/fate-pixfmt-yuv444p12-p012le.sh new file mode 100755 index 0000000000000000000000000000000000000000..5f704c62595ccba90ea4db4ed4fb722dac997523 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-p012le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170505-623057247 +# @用例名称: fate-pixfmt-yuv444p12-p012le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p012le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p012le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-p012le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-p016be.sh b/testcase/fate-pixfmt-yuv444p12-p016be.sh new file mode 100755 index 0000000000000000000000000000000000000000..2590b6bd8c2e22c400128589a3ac8baac0949d70 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-p016be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170505-712782941 +# @用例名称: fate-pixfmt-yuv444p12-p016be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p016be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p016be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-p016be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-p016le.sh b/testcase/fate-pixfmt-yuv444p12-p016le.sh new file mode 100755 index 0000000000000000000000000000000000000000..d2f6fe37009f2a0a4594ef3979ce1b7ed5445b90 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-p016le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170505-806554314 +# @用例名称: fate-pixfmt-yuv444p12-p016le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p016le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p016le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-p016le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-p210be.sh b/testcase/fate-pixfmt-yuv444p12-p210be.sh new file mode 100755 index 0000000000000000000000000000000000000000..049b2e03312ab6621a389aab84d66cfbc59b7539 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-p210be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170505-898612023 +# @用例名称: fate-pixfmt-yuv444p12-p210be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p210be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p210be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-p210be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-p210le.sh b/testcase/fate-pixfmt-yuv444p12-p210le.sh new file mode 100755 index 0000000000000000000000000000000000000000..e0444bf8de3cdff66e94c9fb306834a07ed389f7 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-p210le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170505-990314708 +# @用例名称: fate-pixfmt-yuv444p12-p210le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p210le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p210le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-p210le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-p212be.sh b/testcase/fate-pixfmt-yuv444p12-p212be.sh new file mode 100755 index 0000000000000000000000000000000000000000..c11e0dbfdcf6f6599cb04edd72f2bd074ea9ca9c --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-p212be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170506-081669879 +# @用例名称: fate-pixfmt-yuv444p12-p212be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p212be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p212be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-p212be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-p212le.sh b/testcase/fate-pixfmt-yuv444p12-p212le.sh new file mode 100755 index 0000000000000000000000000000000000000000..e433542913ce7956e07c1bb4d90e2e4d595b9a24 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-p212le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170506-174042430 +# @用例名称: fate-pixfmt-yuv444p12-p212le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p212le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p212le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-p212le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-p216be.sh b/testcase/fate-pixfmt-yuv444p12-p216be.sh new file mode 100755 index 0000000000000000000000000000000000000000..9d02197092b9555fbd1be4e9a098f2d377b4abdd --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-p216be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170506-264966432 +# @用例名称: fate-pixfmt-yuv444p12-p216be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p216be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p216be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-p216be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-p216le.sh b/testcase/fate-pixfmt-yuv444p12-p216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..df56c213103e67fddac1fe4ac14e167a636dbb38 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-p216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170506-356779104 +# @用例名称: fate-pixfmt-yuv444p12-p216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-p216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-p410be.sh b/testcase/fate-pixfmt-yuv444p12-p410be.sh new file mode 100755 index 0000000000000000000000000000000000000000..1e4858c4f8f02eda5d8896e0a1b1a18f978edf53 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-p410be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170506-448759243 +# @用例名称: fate-pixfmt-yuv444p12-p410be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p410be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p410be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-p410be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-p410le.sh b/testcase/fate-pixfmt-yuv444p12-p410le.sh new file mode 100755 index 0000000000000000000000000000000000000000..2cc23cc82cf1469518a3758826c7c9dfaa545722 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-p410le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170506-541132675 +# @用例名称: fate-pixfmt-yuv444p12-p410le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p410le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p410le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-p410le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-p412be.sh b/testcase/fate-pixfmt-yuv444p12-p412be.sh new file mode 100755 index 0000000000000000000000000000000000000000..627699897eb6c487708912e6589955509a02f9fc --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-p412be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170506-631140713 +# @用例名称: fate-pixfmt-yuv444p12-p412be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p412be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p412be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-p412be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-p412le.sh b/testcase/fate-pixfmt-yuv444p12-p412le.sh new file mode 100755 index 0000000000000000000000000000000000000000..91802edaa28797a0af121a15c05e7a8d9c2dbcdc --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-p412le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170506-720671911 +# @用例名称: fate-pixfmt-yuv444p12-p412le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p412le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p412le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-p412le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-p416be.sh b/testcase/fate-pixfmt-yuv444p12-p416be.sh new file mode 100755 index 0000000000000000000000000000000000000000..634df3184abe6cf3bdce88ee449423a71f0bb630 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-p416be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170506-810468412 +# @用例名称: fate-pixfmt-yuv444p12-p416be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p416be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p416be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-p416be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-p416le.sh b/testcase/fate-pixfmt-yuv444p12-p416le.sh new file mode 100755 index 0000000000000000000000000000000000000000..a14dc37a4d2d7fcdc58262115c342a54eb989fd8 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-p416le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170506-903005770 +# @用例名称: fate-pixfmt-yuv444p12-p416le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p416le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-p416le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-p416le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-rgb24.sh b/testcase/fate-pixfmt-yuv444p12-rgb24.sh new file mode 100755 index 0000000000000000000000000000000000000000..b45d34c52b1a78dcbfc36fe17a2c90b922b93542 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-rgb24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170506-999466733 +# @用例名称: fate-pixfmt-yuv444p12-rgb24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-rgb24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-rgb24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-rgb24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-rgb32.sh b/testcase/fate-pixfmt-yuv444p12-rgb32.sh new file mode 100755 index 0000000000000000000000000000000000000000..89bb0d68f0362bfef56e250358416cf15b4d1db1 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-rgb32.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170507-094898875 +# @用例名称: fate-pixfmt-yuv444p12-rgb32 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-rgb32 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-rgb32 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-rgb32 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-rgb48.sh b/testcase/fate-pixfmt-yuv444p12-rgb48.sh new file mode 100755 index 0000000000000000000000000000000000000000..4da8371f0e00e58e437e1c91fecff45ee442776f --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-rgb48.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170507-188143349 +# @用例名称: fate-pixfmt-yuv444p12-rgb48 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-rgb48 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-rgb48 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-rgb48 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-rgb555.sh b/testcase/fate-pixfmt-yuv444p12-rgb555.sh new file mode 100755 index 0000000000000000000000000000000000000000..4c810e10df9b6ad57edaa39b7f6399d2eb0c7eb0 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-rgb555.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170507-280521111 +# @用例名称: fate-pixfmt-yuv444p12-rgb555 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-rgb555 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-rgb555 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-rgb555 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-rgb565.sh b/testcase/fate-pixfmt-yuv444p12-rgb565.sh new file mode 100755 index 0000000000000000000000000000000000000000..135fa17b2308a15d0c836cb5a513fcd89f094282 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-rgb565.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170507-373550419 +# @用例名称: fate-pixfmt-yuv444p12-rgb565 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-rgb565 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-rgb565 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-rgb565 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-uyvy422.sh b/testcase/fate-pixfmt-yuv444p12-uyvy422.sh new file mode 100755 index 0000000000000000000000000000000000000000..4548306b6b1d5eede3ebb41364c561bce2ba5ff8 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-uyvy422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170507-463995680 +# @用例名称: fate-pixfmt-yuv444p12-uyvy422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-uyvy422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-uyvy422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-uyvy422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-v30xle.sh b/testcase/fate-pixfmt-yuv444p12-v30xle.sh new file mode 100755 index 0000000000000000000000000000000000000000..d35ee3721377d94e24a1584134b301853c1cf5c7 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-v30xle.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170507-557729855 +# @用例名称: fate-pixfmt-yuv444p12-v30xle +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-v30xle +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-v30xle + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-v30xle + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-vuyx.sh b/testcase/fate-pixfmt-yuv444p12-vuyx.sh new file mode 100755 index 0000000000000000000000000000000000000000..2c79b6b6e26ea8e9571bd9fcb5aab8f75de3071d --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-vuyx.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170507-650145195 +# @用例名称: fate-pixfmt-yuv444p12-vuyx +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-vuyx +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-vuyx + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-vuyx + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-vyu444.sh b/testcase/fate-pixfmt-yuv444p12-vyu444.sh new file mode 100755 index 0000000000000000000000000000000000000000..6aa6d6f40b0e8224a015440443689d3b4df43f5b --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-vyu444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170507-746149086 +# @用例名称: fate-pixfmt-yuv444p12-vyu444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-vyu444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-vyu444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-vyu444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-x2bgr10le.sh b/testcase/fate-pixfmt-yuv444p12-x2bgr10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..2bb03e423082af919990193c51e2989c4326331f --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-x2bgr10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170507-843501531 +# @用例名称: fate-pixfmt-yuv444p12-x2bgr10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-x2bgr10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-x2bgr10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-x2bgr10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-x2rgb10le.sh b/testcase/fate-pixfmt-yuv444p12-x2rgb10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..5b967c812e1f9fd9e5c240407365e9f9e7eac69f --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-x2rgb10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170507-936027469 +# @用例名称: fate-pixfmt-yuv444p12-x2rgb10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-x2rgb10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-x2rgb10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-x2rgb10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-xv30le.sh b/testcase/fate-pixfmt-yuv444p12-xv30le.sh new file mode 100755 index 0000000000000000000000000000000000000000..3251fa91ee21a8922af0f407a179ff4878cbce8b --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-xv30le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170508-024913779 +# @用例名称: fate-pixfmt-yuv444p12-xv30le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-xv30le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-xv30le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-xv30le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-xv36be.sh b/testcase/fate-pixfmt-yuv444p12-xv36be.sh new file mode 100755 index 0000000000000000000000000000000000000000..c332b4da0927b724866cdd2a0bdbe8285dfb24ee --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-xv36be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170508-119355300 +# @用例名称: fate-pixfmt-yuv444p12-xv36be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-xv36be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-xv36be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-xv36be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-xv36le.sh b/testcase/fate-pixfmt-yuv444p12-xv36le.sh new file mode 100755 index 0000000000000000000000000000000000000000..6b5d7f19a0bb094f72f03850a061092ff4c12f6a --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-xv36le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170508-212649644 +# @用例名称: fate-pixfmt-yuv444p12-xv36le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-xv36le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-xv36le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-xv36le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-xv48be.sh b/testcase/fate-pixfmt-yuv444p12-xv48be.sh new file mode 100755 index 0000000000000000000000000000000000000000..d3331d5c14a6dd28ff9c43be2f3b3f16f852b794 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-xv48be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170508-304662732 +# @用例名称: fate-pixfmt-yuv444p12-xv48be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-xv48be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-xv48be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-xv48be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-xv48le.sh b/testcase/fate-pixfmt-yuv444p12-xv48le.sh new file mode 100755 index 0000000000000000000000000000000000000000..85b51000c7dcf4dcaa875109429cda51e4a54850 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-xv48le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170508-393530893 +# @用例名称: fate-pixfmt-yuv444p12-xv48le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-xv48le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-xv48le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-xv48le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-xyz12le.sh b/testcase/fate-pixfmt-yuv444p12-xyz12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..c285264e342bdab0fc53d87317b209176d2015a3 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-xyz12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170508-481206676 +# @用例名称: fate-pixfmt-yuv444p12-xyz12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-xyz12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-xyz12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-xyz12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-y210le.sh b/testcase/fate-pixfmt-yuv444p12-y210le.sh new file mode 100755 index 0000000000000000000000000000000000000000..81e81a7d67099d91c1ac90795d7df1efedbd829a --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-y210le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170508-570969939 +# @用例名称: fate-pixfmt-yuv444p12-y210le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-y210le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-y210le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-y210le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-y212le.sh b/testcase/fate-pixfmt-yuv444p12-y212le.sh new file mode 100755 index 0000000000000000000000000000000000000000..97b192ca44cc9c00207a086b56639dacacbfb0f5 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-y212le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170508-663768434 +# @用例名称: fate-pixfmt-yuv444p12-y212le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-y212le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-y212le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-y212le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-y216le.sh b/testcase/fate-pixfmt-yuv444p12-y216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..0f95cf2625378a4dc0ba9c6b25919807da95f293 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-y216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170508-756522007 +# @用例名称: fate-pixfmt-yuv444p12-y216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-y216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-y216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-y216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv410p.sh b/testcase/fate-pixfmt-yuv444p12-yuv410p.sh new file mode 100755 index 0000000000000000000000000000000000000000..a5892d14bbded1c4e2c94dd5b0a4cc1a5c52f7b6 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv410p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170508-846027765 +# @用例名称: fate-pixfmt-yuv444p12-yuv410p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv410p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv410p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv410p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv411p.sh b/testcase/fate-pixfmt-yuv444p12-yuv411p.sh new file mode 100755 index 0000000000000000000000000000000000000000..a67353fe0fcd5a0d06073dd0253a22cab0b159c4 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv411p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170508-938061034 +# @用例名称: fate-pixfmt-yuv444p12-yuv411p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv411p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv411p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv411p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv420p.sh b/testcase/fate-pixfmt-yuv444p12-yuv420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..38fc54dd1f3ca8d63dc226389997b534e4b65db6 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170509-027995203 +# @用例名称: fate-pixfmt-yuv444p12-yuv420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv420p10be.sh b/testcase/fate-pixfmt-yuv444p12-yuv420p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..7dd159688ffbb49a45798784bd218167ca3d4089 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv420p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170509-120340125 +# @用例名称: fate-pixfmt-yuv444p12-yuv420p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv420p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv420p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv420p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv420p10le.sh b/testcase/fate-pixfmt-yuv444p12-yuv420p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..b28a2ac1257bb8ddbb78c371a6dd7ad5616bd025 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv420p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170509-210989901 +# @用例名称: fate-pixfmt-yuv444p12-yuv420p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv420p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv420p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv420p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv420p12be.sh b/testcase/fate-pixfmt-yuv444p12-yuv420p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..7affb6f0796bb6db0e0b63433db2e6a151c4d774 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv420p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170509-300760423 +# @用例名称: fate-pixfmt-yuv444p12-yuv420p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv420p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv420p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv420p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv420p12le.sh b/testcase/fate-pixfmt-yuv444p12-yuv420p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..ffad736d650f8b4837bafba80b2a9474c7883ccf --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv420p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170509-385578873 +# @用例名称: fate-pixfmt-yuv444p12-yuv420p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv420p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv420p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv420p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv420p16be.sh b/testcase/fate-pixfmt-yuv444p12-yuv420p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..23cc4711c438b305281e6ab2a591ce14c8747132 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv420p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170509-472595860 +# @用例名称: fate-pixfmt-yuv444p12-yuv420p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv420p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv420p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv420p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv420p16le.sh b/testcase/fate-pixfmt-yuv444p12-yuv420p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..aa610b4763c13b808aa6a1f4a1a674002375e7be --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv420p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170509-564570539 +# @用例名称: fate-pixfmt-yuv444p12-yuv420p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv420p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv420p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv420p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv422p.sh b/testcase/fate-pixfmt-yuv444p12-yuv422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..29d7aac800d5e4d95407ae708feddd0e3306f008 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170509-654671406 +# @用例名称: fate-pixfmt-yuv444p12-yuv422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv422p10be.sh b/testcase/fate-pixfmt-yuv444p12-yuv422p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..fc42d6b3e7b997b7034b3f2e4015588bd40d4474 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv422p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170509-749903141 +# @用例名称: fate-pixfmt-yuv444p12-yuv422p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv422p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv422p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv422p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv422p10le.sh b/testcase/fate-pixfmt-yuv444p12-yuv422p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..e01d38313757e3e373534430da51e51747208885 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv422p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170509-841269993 +# @用例名称: fate-pixfmt-yuv444p12-yuv422p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv422p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv422p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv422p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv422p12be.sh b/testcase/fate-pixfmt-yuv444p12-yuv422p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..ca9a3774133abb19a1e1cffa9547c0963e984755 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv422p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170509-933277801 +# @用例名称: fate-pixfmt-yuv444p12-yuv422p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv422p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv422p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv422p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv422p12le.sh b/testcase/fate-pixfmt-yuv444p12-yuv422p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..5e33c62903621c991a08c705b7071ef6931d74da --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv422p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170510-025330519 +# @用例名称: fate-pixfmt-yuv444p12-yuv422p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv422p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv422p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv422p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv422p16be.sh b/testcase/fate-pixfmt-yuv444p12-yuv422p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..e99e84b580b1111c80ffbeaa7b176dd6de946a17 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv422p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170510-116213251 +# @用例名称: fate-pixfmt-yuv444p12-yuv422p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv422p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv422p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv422p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv422p16le.sh b/testcase/fate-pixfmt-yuv444p12-yuv422p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..a9e41261527db0ae2032e55d8f60bfc01ce5682e --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv422p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170510-210935776 +# @用例名称: fate-pixfmt-yuv444p12-yuv422p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv422p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv422p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv422p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv440p.sh b/testcase/fate-pixfmt-yuv444p12-yuv440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..487795ba7c9c33640e287ecda5d74987777e6589 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170510-303546303 +# @用例名称: fate-pixfmt-yuv444p12-yuv440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv440p10be.sh b/testcase/fate-pixfmt-yuv444p12-yuv440p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..b517cd54c25b9e95251d7abef6a92c1870015e7e --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv440p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170510-397879047 +# @用例名称: fate-pixfmt-yuv444p12-yuv440p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv440p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv440p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv440p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv440p10le.sh b/testcase/fate-pixfmt-yuv444p12-yuv440p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..6ebaa352d05ad1621af70293de90adc6b04f5959 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv440p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170510-490769349 +# @用例名称: fate-pixfmt-yuv444p12-yuv440p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv440p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv440p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv440p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv440p12be.sh b/testcase/fate-pixfmt-yuv444p12-yuv440p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..fc8537a60fdcd85b32213f1d4e6f14d0b26c7eb2 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv440p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170510-586024193 +# @用例名称: fate-pixfmt-yuv444p12-yuv440p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv440p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv440p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv440p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv440p12le.sh b/testcase/fate-pixfmt-yuv444p12-yuv440p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..0f2933b70bc4bd424a0662059e6c3f3c21fcd095 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv440p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170510-679931436 +# @用例名称: fate-pixfmt-yuv444p12-yuv440p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv440p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv440p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv440p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv444p.sh b/testcase/fate-pixfmt-yuv444p12-yuv444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..b343ca81020a123ad87a3499ae880774ec43db3d --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170510-773888076 +# @用例名称: fate-pixfmt-yuv444p12-yuv444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv444p10be.sh b/testcase/fate-pixfmt-yuv444p12-yuv444p10be.sh new file mode 100755 index 0000000000000000000000000000000000000000..748c9eb0eed913abb068c00164a0f96f772bbb70 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv444p10be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170510-869408457 +# @用例名称: fate-pixfmt-yuv444p12-yuv444p10be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv444p10be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv444p10be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv444p10be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv444p10le.sh b/testcase/fate-pixfmt-yuv444p12-yuv444p10le.sh new file mode 100755 index 0000000000000000000000000000000000000000..6f2fea01c34764f2f7adbf296c53608091beb2cb --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv444p10le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170510-962167861 +# @用例名称: fate-pixfmt-yuv444p12-yuv444p10le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv444p10le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv444p10le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv444p10le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv444p10msbbe.sh b/testcase/fate-pixfmt-yuv444p12-yuv444p10msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..960ed891836e0b4a57181f51aa63bb28b7fcfbed --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv444p10msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170511-053396864 +# @用例名称: fate-pixfmt-yuv444p12-yuv444p10msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv444p10msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv444p10msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv444p10msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv444p10msble.sh b/testcase/fate-pixfmt-yuv444p12-yuv444p10msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..24e5f2c8d02239bc7c165aececa3dbbc561670c9 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv444p10msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170511-135700724 +# @用例名称: fate-pixfmt-yuv444p12-yuv444p10msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv444p10msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv444p10msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv444p10msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv444p12be.sh b/testcase/fate-pixfmt-yuv444p12-yuv444p12be.sh new file mode 100755 index 0000000000000000000000000000000000000000..31f3c68954593cf13f1582a825096210f48897e6 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv444p12be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170511-217454513 +# @用例名称: fate-pixfmt-yuv444p12-yuv444p12be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv444p12be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv444p12be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv444p12be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv444p12le.sh b/testcase/fate-pixfmt-yuv444p12-yuv444p12le.sh new file mode 100755 index 0000000000000000000000000000000000000000..609c85254fb6b8809aab76065f68674d7aaecd40 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv444p12le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170511-304990490 +# @用例名称: fate-pixfmt-yuv444p12-yuv444p12le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv444p12le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv444p12le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv444p12le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv444p12msbbe.sh b/testcase/fate-pixfmt-yuv444p12-yuv444p12msbbe.sh new file mode 100755 index 0000000000000000000000000000000000000000..834eb1040e8cc0372445a3b2d274f548b4539843 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv444p12msbbe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170511-390044825 +# @用例名称: fate-pixfmt-yuv444p12-yuv444p12msbbe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv444p12msbbe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv444p12msbbe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv444p12msbbe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv444p12msble.sh b/testcase/fate-pixfmt-yuv444p12-yuv444p12msble.sh new file mode 100755 index 0000000000000000000000000000000000000000..64df3a0fa3ab07d17f3926d8dc801ff6089b9dc6 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv444p12msble.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170511-478974574 +# @用例名称: fate-pixfmt-yuv444p12-yuv444p12msble +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv444p12msble +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv444p12msble + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv444p12msble + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv444p16be.sh b/testcase/fate-pixfmt-yuv444p12-yuv444p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..71f9f88285ea44d7fab9c6f1520287c35440b477 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv444p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170511-570985022 +# @用例名称: fate-pixfmt-yuv444p12-yuv444p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv444p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv444p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv444p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuv444p16le.sh b/testcase/fate-pixfmt-yuv444p12-yuv444p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..f23dfefd6674095c2c5064a7ea4abc9836d05c98 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuv444p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170511-663760896 +# @用例名称: fate-pixfmt-yuv444p12-yuv444p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv444p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuv444p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuv444p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuvj420p.sh b/testcase/fate-pixfmt-yuv444p12-yuvj420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..3a3bb82da6cb90653ecc0af446513160b5c7aa23 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuvj420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170511-752993149 +# @用例名称: fate-pixfmt-yuv444p12-yuvj420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuvj420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuvj420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuvj420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuvj422p.sh b/testcase/fate-pixfmt-yuv444p12-yuvj422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..465bb61388dddaabfdf87baf9b6e3e0f790d4281 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuvj422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170511-843265653 +# @用例名称: fate-pixfmt-yuv444p12-yuvj422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuvj422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuvj422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuvj422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuvj440p.sh b/testcase/fate-pixfmt-yuv444p12-yuvj440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..dbadbcefe4b7726f9629c5428a3e1b5ff9431dad --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuvj440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170511-932615384 +# @用例名称: fate-pixfmt-yuv444p12-yuvj440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuvj440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuvj440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuvj440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuvj444p.sh b/testcase/fate-pixfmt-yuv444p12-yuvj444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..15f42274e34b43bbc59d700dba91824bae59b585 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuvj444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170512-025618313 +# @用例名称: fate-pixfmt-yuv444p12-yuvj444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuvj444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuvj444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuvj444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yuyv422.sh b/testcase/fate-pixfmt-yuv444p12-yuyv422.sh new file mode 100755 index 0000000000000000000000000000000000000000..5bd2e56eeec83689a8b665b738399fc61b1ab8f9 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yuyv422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170512-118395417 +# @用例名称: fate-pixfmt-yuv444p12-yuyv422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuyv422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yuyv422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yuyv422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p12-yvyu422.sh b/testcase/fate-pixfmt-yuv444p12-yvyu422.sh new file mode 100755 index 0000000000000000000000000000000000000000..c3ed118549a6dd5980164872892b02bb0453a179 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p12-yvyu422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170512-205808485 +# @用例名称: fate-pixfmt-yuv444p12-yvyu422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yvyu422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p12-yvyu422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p12-yvyu422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p16-gbrp16be.sh b/testcase/fate-pixfmt-yuv444p16-gbrp16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..d3c2e6f94c6548d61ee1ca8d10720dc5116441ab --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p16-gbrp16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170512-296537669 +# @用例名称: fate-pixfmt-yuv444p16-gbrp16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-gbrp16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-gbrp16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p16-gbrp16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p16-gbrp16le.sh b/testcase/fate-pixfmt-yuv444p16-gbrp16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..9e1068af7705fd021c34c278a92cf4bb3d2f616a --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p16-gbrp16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170512-388124906 +# @用例名称: fate-pixfmt-yuv444p16-gbrp16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-gbrp16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-gbrp16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p16-gbrp16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p16-gray16be.sh b/testcase/fate-pixfmt-yuv444p16-gray16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..739ee2537e562f67818d971152048421f3b5d0cf --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p16-gray16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170512-474483116 +# @用例名称: fate-pixfmt-yuv444p16-gray16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-gray16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-gray16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p16-gray16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p16-gray16le.sh b/testcase/fate-pixfmt-yuv444p16-gray16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..ab79273dcada4e027221cc098305ba8d785f9648 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p16-gray16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170512-560089100 +# @用例名称: fate-pixfmt-yuv444p16-gray16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-gray16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-gray16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p16-gray16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p16-p016be.sh b/testcase/fate-pixfmt-yuv444p16-p016be.sh new file mode 100755 index 0000000000000000000000000000000000000000..5eee7e7fb2458f9a67557168049ccf78306f2967 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p16-p016be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170512-651480241 +# @用例名称: fate-pixfmt-yuv444p16-p016be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-p016be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-p016be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p16-p016be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p16-p016le.sh b/testcase/fate-pixfmt-yuv444p16-p016le.sh new file mode 100755 index 0000000000000000000000000000000000000000..64d155c2ddbdb6b37972fea078e7e380ba36f3d0 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p16-p016le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170512-741890022 +# @用例名称: fate-pixfmt-yuv444p16-p016le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-p016le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-p016le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p16-p016le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p16-p216be.sh b/testcase/fate-pixfmt-yuv444p16-p216be.sh new file mode 100755 index 0000000000000000000000000000000000000000..246ce97a038787bf879331475cc2046699df8779 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p16-p216be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170512-833292162 +# @用例名称: fate-pixfmt-yuv444p16-p216be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-p216be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-p216be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p16-p216be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p16-p216le.sh b/testcase/fate-pixfmt-yuv444p16-p216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..ee40af23849bd309780f7e1fbdac367394fa69f1 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p16-p216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170512-925258162 +# @用例名称: fate-pixfmt-yuv444p16-p216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-p216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-p216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p16-p216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p16-p416be.sh b/testcase/fate-pixfmt-yuv444p16-p416be.sh new file mode 100755 index 0000000000000000000000000000000000000000..3a81ec586c96d082926a443e29c5d51cab1684ad --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p16-p416be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170513-019998328 +# @用例名称: fate-pixfmt-yuv444p16-p416be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-p416be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-p416be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p16-p416be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p16-p416le.sh b/testcase/fate-pixfmt-yuv444p16-p416le.sh new file mode 100755 index 0000000000000000000000000000000000000000..6ffe38161568ac2bd13fbe37bc0016dd841480b6 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p16-p416le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170513-114469238 +# @用例名称: fate-pixfmt-yuv444p16-p416le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-p416le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-p416le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p16-p416le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p16-rgb48.sh b/testcase/fate-pixfmt-yuv444p16-rgb48.sh new file mode 100755 index 0000000000000000000000000000000000000000..d4fdc6acce019b75582056c5cca1aa69ced83a15 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p16-rgb48.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170513-206139403 +# @用例名称: fate-pixfmt-yuv444p16-rgb48 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-rgb48 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-rgb48 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p16-rgb48 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p16-xv48be.sh b/testcase/fate-pixfmt-yuv444p16-xv48be.sh new file mode 100755 index 0000000000000000000000000000000000000000..1fd98b1cb05dd9bbc1f580126324aa8054b23aef --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p16-xv48be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170513-297086813 +# @用例名称: fate-pixfmt-yuv444p16-xv48be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-xv48be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-xv48be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p16-xv48be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p16-xv48le.sh b/testcase/fate-pixfmt-yuv444p16-xv48le.sh new file mode 100755 index 0000000000000000000000000000000000000000..3c4560fae0ac7cc12e7403e368070b0e01b3f9ea --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p16-xv48le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170513-389338967 +# @用例名称: fate-pixfmt-yuv444p16-xv48le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-xv48le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-xv48le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p16-xv48le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p16-y216le.sh b/testcase/fate-pixfmt-yuv444p16-y216le.sh new file mode 100755 index 0000000000000000000000000000000000000000..4a28ac2d767ccf68be68e6f575094d93f3ed1bf4 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p16-y216le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170513-479578711 +# @用例名称: fate-pixfmt-yuv444p16-y216le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-y216le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-y216le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p16-y216le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p16-yuv420p16be.sh b/testcase/fate-pixfmt-yuv444p16-yuv420p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..9e07f62f0f049f0eebed9a5f9eb46952fa3ab678 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p16-yuv420p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170513-574729708 +# @用例名称: fate-pixfmt-yuv444p16-yuv420p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-yuv420p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-yuv420p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p16-yuv420p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p16-yuv420p16le.sh b/testcase/fate-pixfmt-yuv444p16-yuv420p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..b877cfdbe3456110bd7b5fd9a1a9ea4c97090016 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p16-yuv420p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170513-667969182 +# @用例名称: fate-pixfmt-yuv444p16-yuv420p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-yuv420p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-yuv420p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p16-yuv420p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p16-yuv422p16be.sh b/testcase/fate-pixfmt-yuv444p16-yuv422p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..16e21e9675dcf2f16d7b009ff8a175350b5aa5b0 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p16-yuv422p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170513-760538121 +# @用例名称: fate-pixfmt-yuv444p16-yuv422p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-yuv422p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-yuv422p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p16-yuv422p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p16-yuv422p16le.sh b/testcase/fate-pixfmt-yuv444p16-yuv422p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..c58301d7c3a9044d6fe58b9a4042136dfdcc0597 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p16-yuv422p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170513-852181737 +# @用例名称: fate-pixfmt-yuv444p16-yuv422p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-yuv422p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-yuv422p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p16-yuv422p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p16-yuv444p16be.sh b/testcase/fate-pixfmt-yuv444p16-yuv444p16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..58aaa6c6118b7a8fcdce7e3a65b73c3a7f2ed746 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p16-yuv444p16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170513-943675205 +# @用例名称: fate-pixfmt-yuv444p16-yuv444p16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-yuv444p16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-yuv444p16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p16-yuv444p16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuv444p16-yuv444p16le.sh b/testcase/fate-pixfmt-yuv444p16-yuv444p16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..d6034a8a12f65c2f455d6d83d164d2f46ef41576 --- /dev/null +++ b/testcase/fate-pixfmt-yuv444p16-yuv444p16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170514-033034546 +# @用例名称: fate-pixfmt-yuv444p16-yuv444p16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-yuv444p16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuv444p16-yuv444p16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuv444p16-yuv444p16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuvj420p.sh b/testcase/fate-pixfmt-yuvj420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..94cda953179378a9441214b8557c535d5fc62a6f --- /dev/null +++ b/testcase/fate-pixfmt-yuvj420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170514-120681470 +# @用例名称: fate-pixfmt-yuvj420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuvj420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuvj420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuvj420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuvj422p.sh b/testcase/fate-pixfmt-yuvj422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..fe8cbb13eb55e5d6231781c3f16bf1e1a2d99e33 --- /dev/null +++ b/testcase/fate-pixfmt-yuvj422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170514-208120079 +# @用例名称: fate-pixfmt-yuvj422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuvj422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuvj422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuvj422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuvj440p.sh b/testcase/fate-pixfmt-yuvj440p.sh new file mode 100755 index 0000000000000000000000000000000000000000..574a15f5da7f7d235b837d29f201e7e93c2ef02a --- /dev/null +++ b/testcase/fate-pixfmt-yuvj440p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170514-295867931 +# @用例名称: fate-pixfmt-yuvj440p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuvj440p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuvj440p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuvj440p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuvj444p.sh b/testcase/fate-pixfmt-yuvj444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..3df1ab8b1c790c81e87e8095db4f4dcb6ede1144 --- /dev/null +++ b/testcase/fate-pixfmt-yuvj444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170514-382695592 +# @用例名称: fate-pixfmt-yuvj444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuvj444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuvj444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuvj444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yuyv422.sh b/testcase/fate-pixfmt-yuyv422.sh new file mode 100755 index 0000000000000000000000000000000000000000..f6488a576ca61823f8ed1c2400ee4ab5eb180cc8 --- /dev/null +++ b/testcase/fate-pixfmt-yuyv422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170514-471897785 +# @用例名称: fate-pixfmt-yuyv422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yuyv422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yuyv422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yuyv422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-pixfmt-yvyu422.sh b/testcase/fate-pixfmt-yvyu422.sh new file mode 100755 index 0000000000000000000000000000000000000000..df484673d6e3461ad5b9acfa5ab55342cab0657b --- /dev/null +++ b/testcase/fate-pixfmt-yvyu422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170514-565310937 +# @用例名称: fate-pixfmt-yvyu422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-pixfmt-yvyu422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-pixfmt-yvyu422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-pixfmt-yvyu422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-adpcm-ima_qt-trellis.sh b/testcase/fate-seek-acodec-adpcm-ima_qt-trellis.sh new file mode 100755 index 0000000000000000000000000000000000000000..c5d36011ba4317490427109cee63acf56fd12a2f --- /dev/null +++ b/testcase/fate-seek-acodec-adpcm-ima_qt-trellis.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170514-736453656 +# @用例名称: fate-seek-acodec-adpcm-ima_qt-trellis +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-adpcm-ima_qt-trellis +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-adpcm-ima_qt-trellis + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-adpcm-ima_qt-trellis + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-adpcm-ima_qt.sh b/testcase/fate-seek-acodec-adpcm-ima_qt.sh new file mode 100755 index 0000000000000000000000000000000000000000..6e1347469c73435b1e170c83bce3c2f68bb3cba1 --- /dev/null +++ b/testcase/fate-seek-acodec-adpcm-ima_qt.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170514-651602567 +# @用例名称: fate-seek-acodec-adpcm-ima_qt +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-adpcm-ima_qt +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-adpcm-ima_qt + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-adpcm-ima_qt + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-adpcm-ima_wav-trellis.sh b/testcase/fate-seek-acodec-adpcm-ima_wav-trellis.sh new file mode 100755 index 0000000000000000000000000000000000000000..417c57e33456d83c6406592c04b62944beac7ae0 --- /dev/null +++ b/testcase/fate-seek-acodec-adpcm-ima_wav-trellis.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170514-917625100 +# @用例名称: fate-seek-acodec-adpcm-ima_wav-trellis +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-adpcm-ima_wav-trellis +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-adpcm-ima_wav-trellis + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-adpcm-ima_wav-trellis + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-adpcm-ima_wav.sh b/testcase/fate-seek-acodec-adpcm-ima_wav.sh new file mode 100755 index 0000000000000000000000000000000000000000..db84d799392957586e3d6bc8d049604db9f074a4 --- /dev/null +++ b/testcase/fate-seek-acodec-adpcm-ima_wav.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170514-827994254 +# @用例名称: fate-seek-acodec-adpcm-ima_wav +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-adpcm-ima_wav +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-adpcm-ima_wav + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-adpcm-ima_wav + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-adpcm-ms-trellis.sh b/testcase/fate-seek-acodec-adpcm-ms-trellis.sh new file mode 100755 index 0000000000000000000000000000000000000000..65bf18428bdbe7b97dda0b704df17d389f76a8a6 --- /dev/null +++ b/testcase/fate-seek-acodec-adpcm-ms-trellis.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170515-093472178 +# @用例名称: fate-seek-acodec-adpcm-ms-trellis +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-adpcm-ms-trellis +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-adpcm-ms-trellis + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-adpcm-ms-trellis + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-adpcm-ms.sh b/testcase/fate-seek-acodec-adpcm-ms.sh new file mode 100755 index 0000000000000000000000000000000000000000..d422a71dbaa192f799c046a3ceff265c8dee81aa --- /dev/null +++ b/testcase/fate-seek-acodec-adpcm-ms.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170515-007714796 +# @用例名称: fate-seek-acodec-adpcm-ms +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-adpcm-ms +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-adpcm-ms + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-adpcm-ms + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-adpcm-swf-trellis.sh b/testcase/fate-seek-acodec-adpcm-swf-trellis.sh new file mode 100755 index 0000000000000000000000000000000000000000..a3bb6e9d95689b065d5b1aa69af31ca81dedfb28 --- /dev/null +++ b/testcase/fate-seek-acodec-adpcm-swf-trellis.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170515-278451757 +# @用例名称: fate-seek-acodec-adpcm-swf-trellis +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-adpcm-swf-trellis +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-adpcm-swf-trellis + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-adpcm-swf-trellis + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-adpcm-swf.sh b/testcase/fate-seek-acodec-adpcm-swf.sh new file mode 100755 index 0000000000000000000000000000000000000000..a3e952af2f2e7e497b2d07eb36a105922289c68d --- /dev/null +++ b/testcase/fate-seek-acodec-adpcm-swf.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170515-191279254 +# @用例名称: fate-seek-acodec-adpcm-swf +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-adpcm-swf +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-adpcm-swf + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-adpcm-swf + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-adpcm-yamaha-trellis.sh b/testcase/fate-seek-acodec-adpcm-yamaha-trellis.sh new file mode 100755 index 0000000000000000000000000000000000000000..adddda0fc60896beccacfc8ed29d810eed8db06a --- /dev/null +++ b/testcase/fate-seek-acodec-adpcm-yamaha-trellis.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170515-455439592 +# @用例名称: fate-seek-acodec-adpcm-yamaha-trellis +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-adpcm-yamaha-trellis +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-adpcm-yamaha-trellis + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-adpcm-yamaha-trellis + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-adpcm-yamaha.sh b/testcase/fate-seek-acodec-adpcm-yamaha.sh new file mode 100755 index 0000000000000000000000000000000000000000..4028af3bdbb84319b58ab9153d3bd4db8f8b6a33 --- /dev/null +++ b/testcase/fate-seek-acodec-adpcm-yamaha.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170515-365931794 +# @用例名称: fate-seek-acodec-adpcm-yamaha +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-adpcm-yamaha +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-adpcm-yamaha + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-adpcm-yamaha + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-alac.sh b/testcase/fate-seek-acodec-alac.sh new file mode 100755 index 0000000000000000000000000000000000000000..12d8faa92b03618b509b779f26e24bf597a9f9fc --- /dev/null +++ b/testcase/fate-seek-acodec-alac.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170515-543815003 +# @用例名称: fate-seek-acodec-alac +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-alac +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-alac + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-alac + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-flac.sh b/testcase/fate-seek-acodec-flac.sh new file mode 100755 index 0000000000000000000000000000000000000000..ea1c8af13e2352fe484b3e33fb7cc79283e13e8a --- /dev/null +++ b/testcase/fate-seek-acodec-flac.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170515-631096484 +# @用例名称: fate-seek-acodec-flac +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-flac +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-flac + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-flac + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-mp2.sh b/testcase/fate-seek-acodec-mp2.sh new file mode 100755 index 0000000000000000000000000000000000000000..1d4054f204764296e386c67849624f256dae93d9 --- /dev/null +++ b/testcase/fate-seek-acodec-mp2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170515-718633800 +# @用例名称: fate-seek-acodec-mp2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-mp2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-mp2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-mp2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-pcm-alaw.sh b/testcase/fate-seek-acodec-pcm-alaw.sh new file mode 100755 index 0000000000000000000000000000000000000000..1d9ead0ad83a20e224e8342479afeaae93a1aa65 --- /dev/null +++ b/testcase/fate-seek-acodec-pcm-alaw.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170515-806445492 +# @用例名称: fate-seek-acodec-pcm-alaw +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-alaw +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-alaw + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-pcm-alaw + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-pcm-f32be.sh b/testcase/fate-seek-acodec-pcm-f32be.sh new file mode 100755 index 0000000000000000000000000000000000000000..d6d8208eb88d5b30af6842451bdc190afa52e6f3 --- /dev/null +++ b/testcase/fate-seek-acodec-pcm-f32be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170515-895559916 +# @用例名称: fate-seek-acodec-pcm-f32be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-f32be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-f32be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-pcm-f32be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-pcm-f32le.sh b/testcase/fate-seek-acodec-pcm-f32le.sh new file mode 100755 index 0000000000000000000000000000000000000000..89dae1e15c1f1c843c6066b9d52757749514dd70 --- /dev/null +++ b/testcase/fate-seek-acodec-pcm-f32le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170515-985532615 +# @用例名称: fate-seek-acodec-pcm-f32le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-f32le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-f32le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-pcm-f32le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-pcm-f64be.sh b/testcase/fate-seek-acodec-pcm-f64be.sh new file mode 100755 index 0000000000000000000000000000000000000000..84bf2c104aae93965c4d15162d72faf90ca81b0d --- /dev/null +++ b/testcase/fate-seek-acodec-pcm-f64be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170516-076397847 +# @用例名称: fate-seek-acodec-pcm-f64be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-f64be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-f64be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-pcm-f64be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-pcm-f64le.sh b/testcase/fate-seek-acodec-pcm-f64le.sh new file mode 100755 index 0000000000000000000000000000000000000000..42dfd166f02f8a39b72f1e7b4df46ed11a37e0bf --- /dev/null +++ b/testcase/fate-seek-acodec-pcm-f64le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170516-167925655 +# @用例名称: fate-seek-acodec-pcm-f64le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-f64le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-f64le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-pcm-f64le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-pcm-mulaw.sh b/testcase/fate-seek-acodec-pcm-mulaw.sh new file mode 100755 index 0000000000000000000000000000000000000000..efa33c8fdafed551a5880dbbf793d97e4cb3ace4 --- /dev/null +++ b/testcase/fate-seek-acodec-pcm-mulaw.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170516-254008170 +# @用例名称: fate-seek-acodec-pcm-mulaw +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-mulaw +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-mulaw + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-pcm-mulaw + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-pcm-s16be.sh b/testcase/fate-seek-acodec-pcm-s16be.sh new file mode 100755 index 0000000000000000000000000000000000000000..42a0bd1f70ff6bb593b5bce2d01207ff345ee3c1 --- /dev/null +++ b/testcase/fate-seek-acodec-pcm-s16be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170516-336253829 +# @用例名称: fate-seek-acodec-pcm-s16be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-s16be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-s16be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-pcm-s16be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-pcm-s16le.sh b/testcase/fate-seek-acodec-pcm-s16le.sh new file mode 100755 index 0000000000000000000000000000000000000000..4271d172e5cf175ecf1e85b579aefcfd397e0292 --- /dev/null +++ b/testcase/fate-seek-acodec-pcm-s16le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170516-415917330 +# @用例名称: fate-seek-acodec-pcm-s16le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-s16le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-s16le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-pcm-s16le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-pcm-s24be.sh b/testcase/fate-seek-acodec-pcm-s24be.sh new file mode 100755 index 0000000000000000000000000000000000000000..6654dc3a809ee757745ea130c7a3b030fdac40dd --- /dev/null +++ b/testcase/fate-seek-acodec-pcm-s24be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170516-499567853 +# @用例名称: fate-seek-acodec-pcm-s24be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-s24be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-s24be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-pcm-s24be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-pcm-s24le.sh b/testcase/fate-seek-acodec-pcm-s24le.sh new file mode 100755 index 0000000000000000000000000000000000000000..27f5917e25433b01529f034e409b8d3abb7de6d3 --- /dev/null +++ b/testcase/fate-seek-acodec-pcm-s24le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170516-589805986 +# @用例名称: fate-seek-acodec-pcm-s24le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-s24le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-s24le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-pcm-s24le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-pcm-s32be.sh b/testcase/fate-seek-acodec-pcm-s32be.sh new file mode 100755 index 0000000000000000000000000000000000000000..3fe1df7f7aac88435759c6974875115d3b009c06 --- /dev/null +++ b/testcase/fate-seek-acodec-pcm-s32be.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170516-681034480 +# @用例名称: fate-seek-acodec-pcm-s32be +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-s32be +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-s32be + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-pcm-s32be + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-pcm-s32le.sh b/testcase/fate-seek-acodec-pcm-s32le.sh new file mode 100755 index 0000000000000000000000000000000000000000..5608de1002075adbbf54b52028dc3d180b92ad6a --- /dev/null +++ b/testcase/fate-seek-acodec-pcm-s32le.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170516-772510070 +# @用例名称: fate-seek-acodec-pcm-s32le +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-s32le +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-s32le + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-pcm-s32le + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-pcm-s8.sh b/testcase/fate-seek-acodec-pcm-s8.sh new file mode 100755 index 0000000000000000000000000000000000000000..7ca0b8843855846ccb3086e6ff44fc34aa6dcd7c --- /dev/null +++ b/testcase/fate-seek-acodec-pcm-s8.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170516-866824813 +# @用例名称: fate-seek-acodec-pcm-s8 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-s8 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-s8 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-pcm-s8 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-acodec-pcm-u8.sh b/testcase/fate-seek-acodec-pcm-u8.sh new file mode 100755 index 0000000000000000000000000000000000000000..7d0ecfe2b0f1b63cae3732d82f31710f8a2cf182 --- /dev/null +++ b/testcase/fate-seek-acodec-pcm-u8.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170516-957866282 +# @用例名称: fate-seek-acodec-pcm-u8 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-u8 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-acodec-pcm-u8 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-acodec-pcm-u8 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-aiff.sh b/testcase/fate-seek-lavf-aiff.sh new file mode 100755 index 0000000000000000000000000000000000000000..0e1d9f1e228779940073e9e8f99f395919d2eb89 --- /dev/null +++ b/testcase/fate-seek-lavf-aiff.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170517-060766007 +# @用例名称: fate-seek-lavf-aiff +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-aiff +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-aiff + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-aiff + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-al.sh b/testcase/fate-seek-lavf-al.sh new file mode 100755 index 0000000000000000000000000000000000000000..6cea4ddfd101b22117e9272fa8e07d1829a481cc --- /dev/null +++ b/testcase/fate-seek-lavf-al.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170517-152382463 +# @用例名称: fate-seek-lavf-al +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-al +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-al + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-al + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-asf.sh b/testcase/fate-seek-lavf-asf.sh new file mode 100755 index 0000000000000000000000000000000000000000..63ae973008de73a6886751b3134ced4f5ee27e0e --- /dev/null +++ b/testcase/fate-seek-lavf-asf.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170517-246774576 +# @用例名称: fate-seek-lavf-asf +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-asf +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-asf + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-asf + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-au.sh b/testcase/fate-seek-lavf-au.sh new file mode 100755 index 0000000000000000000000000000000000000000..59fcc9552706e2219743a7f2bc7cfbdcc1575c3b --- /dev/null +++ b/testcase/fate-seek-lavf-au.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170517-337779794 +# @用例名称: fate-seek-lavf-au +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-au +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-au + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-au + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-avi.sh b/testcase/fate-seek-lavf-avi.sh new file mode 100755 index 0000000000000000000000000000000000000000..6c457154223e111ec2a448cc96c3e7e8381d4885 --- /dev/null +++ b/testcase/fate-seek-lavf-avi.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170517-429835492 +# @用例名称: fate-seek-lavf-avi +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-avi +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-avi + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-avi + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-bmp.sh b/testcase/fate-seek-lavf-bmp.sh new file mode 100755 index 0000000000000000000000000000000000000000..5dbd560e03ff06293a617b5f677c21049aa7ab35 --- /dev/null +++ b/testcase/fate-seek-lavf-bmp.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170517-515538244 +# @用例名称: fate-seek-lavf-bmp +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-bmp +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-bmp + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-bmp + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-dv.sh b/testcase/fate-seek-lavf-dv.sh new file mode 100755 index 0000000000000000000000000000000000000000..cf8b5de6d367ac21344038e58f9182cf9b76e16e --- /dev/null +++ b/testcase/fate-seek-lavf-dv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170517-598629008 +# @用例名称: fate-seek-lavf-dv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-dv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-dv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-dv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-flv.sh b/testcase/fate-seek-lavf-flv.sh new file mode 100755 index 0000000000000000000000000000000000000000..ce769c108adf40c29226fa941f8033ed7efa9bba --- /dev/null +++ b/testcase/fate-seek-lavf-flv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170517-693259285 +# @用例名称: fate-seek-lavf-flv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-flv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-flv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-flv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-gif.sh b/testcase/fate-seek-lavf-gif.sh new file mode 100755 index 0000000000000000000000000000000000000000..03cfb950929c143ad136664bb29adf07e7bd99a3 --- /dev/null +++ b/testcase/fate-seek-lavf-gif.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170517-783392100 +# @用例名称: fate-seek-lavf-gif +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-gif +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-gif + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-gif + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-gxf.sh b/testcase/fate-seek-lavf-gxf.sh new file mode 100755 index 0000000000000000000000000000000000000000..225f5c398e52de0b71028fb3829aaa5c45f60c3b --- /dev/null +++ b/testcase/fate-seek-lavf-gxf.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170517-871796111 +# @用例名称: fate-seek-lavf-gxf +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-gxf +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-gxf + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-gxf + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-jpg.sh b/testcase/fate-seek-lavf-jpg.sh new file mode 100755 index 0000000000000000000000000000000000000000..32cce2d9961b60eec387799a39b126e7698e4348 --- /dev/null +++ b/testcase/fate-seek-lavf-jpg.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170517-964557765 +# @用例名称: fate-seek-lavf-jpg +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-jpg +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-jpg + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-jpg + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-mkv.sh b/testcase/fate-seek-lavf-mkv.sh new file mode 100755 index 0000000000000000000000000000000000000000..a471b5cd7e16014e009067ac3ad99d670f6f5f60 --- /dev/null +++ b/testcase/fate-seek-lavf-mkv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170518-059787501 +# @用例名称: fate-seek-lavf-mkv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-mkv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-mkv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-mkv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-mmf.sh b/testcase/fate-seek-lavf-mmf.sh new file mode 100755 index 0000000000000000000000000000000000000000..f22f4a84a6803e24ee3fd017746e1e099049b6fa --- /dev/null +++ b/testcase/fate-seek-lavf-mmf.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170518-155012496 +# @用例名称: fate-seek-lavf-mmf +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-mmf +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-mmf + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-mmf + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-mov.sh b/testcase/fate-seek-lavf-mov.sh new file mode 100755 index 0000000000000000000000000000000000000000..2e4f9424f07183f03dbeaef94ae8c75ab821b98b --- /dev/null +++ b/testcase/fate-seek-lavf-mov.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170518-241473304 +# @用例名称: fate-seek-lavf-mov +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-mov +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-mov + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-mov + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-mpg.sh b/testcase/fate-seek-lavf-mpg.sh new file mode 100755 index 0000000000000000000000000000000000000000..797f09136ed7a684caf566b7c5ec7a7fab98dcf5 --- /dev/null +++ b/testcase/fate-seek-lavf-mpg.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170518-332752167 +# @用例名称: fate-seek-lavf-mpg +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-mpg +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-mpg + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-mpg + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-mxf.sh b/testcase/fate-seek-lavf-mxf.sh new file mode 100755 index 0000000000000000000000000000000000000000..34d2a35e8b48155fb65f64be3f19fa1a3176ea73 --- /dev/null +++ b/testcase/fate-seek-lavf-mxf.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170518-427117190 +# @用例名称: fate-seek-lavf-mxf +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-mxf +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-mxf + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-mxf + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-mxf_d10.sh b/testcase/fate-seek-lavf-mxf_d10.sh new file mode 100755 index 0000000000000000000000000000000000000000..e91ab0f7ee9b68ac60588cb931f637fd338df591 --- /dev/null +++ b/testcase/fate-seek-lavf-mxf_d10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170518-523101321 +# @用例名称: fate-seek-lavf-mxf_d10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-mxf_d10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-mxf_d10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-mxf_d10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-mxf_dv25.sh b/testcase/fate-seek-lavf-mxf_dv25.sh new file mode 100755 index 0000000000000000000000000000000000000000..2acd8ad3356b085e99247a8bbf7880b934d3e8bd --- /dev/null +++ b/testcase/fate-seek-lavf-mxf_dv25.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170518-611106038 +# @用例名称: fate-seek-lavf-mxf_dv25 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-mxf_dv25 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-mxf_dv25 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-mxf_dv25 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-mxf_dvcpro50.sh b/testcase/fate-seek-lavf-mxf_dvcpro50.sh new file mode 100755 index 0000000000000000000000000000000000000000..252491960aae04353979f5e8d83a2daa920b34d3 --- /dev/null +++ b/testcase/fate-seek-lavf-mxf_dvcpro50.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170518-695919617 +# @用例名称: fate-seek-lavf-mxf_dvcpro50 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-mxf_dvcpro50 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-mxf_dvcpro50 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-mxf_dvcpro50 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-mxf_opatom.sh b/testcase/fate-seek-lavf-mxf_opatom.sh new file mode 100755 index 0000000000000000000000000000000000000000..3dd0ca985c095ac5f077d9c2a7a4d8f7ab6b0bd3 --- /dev/null +++ b/testcase/fate-seek-lavf-mxf_opatom.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170518-776024109 +# @用例名称: fate-seek-lavf-mxf_opatom +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-mxf_opatom +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-mxf_opatom + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-mxf_opatom + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-mxf_opatom_audio.sh b/testcase/fate-seek-lavf-mxf_opatom_audio.sh new file mode 100755 index 0000000000000000000000000000000000000000..90c8a41d34215d10cabe8b7c5ee1cf643c778047 --- /dev/null +++ b/testcase/fate-seek-lavf-mxf_opatom_audio.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170518-863939049 +# @用例名称: fate-seek-lavf-mxf_opatom_audio +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-mxf_opatom_audio +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-mxf_opatom_audio + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-mxf_opatom_audio + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-nut.sh b/testcase/fate-seek-lavf-nut.sh new file mode 100755 index 0000000000000000000000000000000000000000..522399c067566a3e7db12f186d20908aa8ddf6f0 --- /dev/null +++ b/testcase/fate-seek-lavf-nut.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170518-958647115 +# @用例名称: fate-seek-lavf-nut +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-nut +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-nut + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-nut + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-ogg.sh b/testcase/fate-seek-lavf-ogg.sh new file mode 100755 index 0000000000000000000000000000000000000000..02e5856699524f016448441d83363c736350a6ed --- /dev/null +++ b/testcase/fate-seek-lavf-ogg.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170519-050990667 +# @用例名称: fate-seek-lavf-ogg +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-ogg +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-ogg + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-ogg + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-pbmpipe.sh b/testcase/fate-seek-lavf-pbmpipe.sh new file mode 100755 index 0000000000000000000000000000000000000000..d92d50f6bd879135fa575a4b8f2d0c786f8c6652 --- /dev/null +++ b/testcase/fate-seek-lavf-pbmpipe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170519-142769410 +# @用例名称: fate-seek-lavf-pbmpipe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-pbmpipe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-pbmpipe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-pbmpipe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-pcx.sh b/testcase/fate-seek-lavf-pcx.sh new file mode 100755 index 0000000000000000000000000000000000000000..851c2dd84bdd1855b32a19d5dfec3993819a2ffb --- /dev/null +++ b/testcase/fate-seek-lavf-pcx.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170519-232920786 +# @用例名称: fate-seek-lavf-pcx +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-pcx +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-pcx + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-pcx + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-pgm.sh b/testcase/fate-seek-lavf-pgm.sh new file mode 100755 index 0000000000000000000000000000000000000000..4637113ad7249c531ab06579bbb6f08d8d23b41c --- /dev/null +++ b/testcase/fate-seek-lavf-pgm.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170519-321734297 +# @用例名称: fate-seek-lavf-pgm +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-pgm +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-pgm + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-pgm + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-pgmpipe.sh b/testcase/fate-seek-lavf-pgmpipe.sh new file mode 100755 index 0000000000000000000000000000000000000000..df7de53f922187eed81f6a7afa8b81a031c14eaa --- /dev/null +++ b/testcase/fate-seek-lavf-pgmpipe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170519-412893293 +# @用例名称: fate-seek-lavf-pgmpipe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-pgmpipe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-pgmpipe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-pgmpipe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-ppm.sh b/testcase/fate-seek-lavf-ppm.sh new file mode 100755 index 0000000000000000000000000000000000000000..bac4bbaccbbe8c5be7ccc9479b229c9fa1c9482f --- /dev/null +++ b/testcase/fate-seek-lavf-ppm.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170519-506253445 +# @用例名称: fate-seek-lavf-ppm +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-ppm +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-ppm + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-ppm + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-ppmpipe.sh b/testcase/fate-seek-lavf-ppmpipe.sh new file mode 100755 index 0000000000000000000000000000000000000000..e4f73a1aea665519554febc44382813ef5b1b557 --- /dev/null +++ b/testcase/fate-seek-lavf-ppmpipe.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170519-598366042 +# @用例名称: fate-seek-lavf-ppmpipe +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-ppmpipe +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-ppmpipe + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-ppmpipe + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-rm.sh b/testcase/fate-seek-lavf-rm.sh new file mode 100755 index 0000000000000000000000000000000000000000..f2a38f11d4476c754dbedb74ffcb4b56529dd6bc --- /dev/null +++ b/testcase/fate-seek-lavf-rm.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170519-691278822 +# @用例名称: fate-seek-lavf-rm +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-rm +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-rm + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-rm + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-sgi.sh b/testcase/fate-seek-lavf-sgi.sh new file mode 100755 index 0000000000000000000000000000000000000000..23dc337331fbaae843107edf0b7190dc26a9e934 --- /dev/null +++ b/testcase/fate-seek-lavf-sgi.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170519-783641805 +# @用例名称: fate-seek-lavf-sgi +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-sgi +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-sgi + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-sgi + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-swf.sh b/testcase/fate-seek-lavf-swf.sh new file mode 100755 index 0000000000000000000000000000000000000000..2c2721df205c85f2ce01a16529bf428a3f687ce1 --- /dev/null +++ b/testcase/fate-seek-lavf-swf.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170519-877362730 +# @用例名称: fate-seek-lavf-swf +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-swf +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-swf + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-swf + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-tga.sh b/testcase/fate-seek-lavf-tga.sh new file mode 100755 index 0000000000000000000000000000000000000000..a17e049b7c369772da65d0adf982dd07fdd4b985 --- /dev/null +++ b/testcase/fate-seek-lavf-tga.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170519-970260602 +# @用例名称: fate-seek-lavf-tga +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-tga +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-tga + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-tga + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-tiff.sh b/testcase/fate-seek-lavf-tiff.sh new file mode 100755 index 0000000000000000000000000000000000000000..72d257891fc5deaa5c626b313bb7529345660a81 --- /dev/null +++ b/testcase/fate-seek-lavf-tiff.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170520-062422558 +# @用例名称: fate-seek-lavf-tiff +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-tiff +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-tiff + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-tiff + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-ts.sh b/testcase/fate-seek-lavf-ts.sh new file mode 100755 index 0000000000000000000000000000000000000000..148597f3eb01c3df329f18ff680f2e3da1e291c7 --- /dev/null +++ b/testcase/fate-seek-lavf-ts.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170520-155444597 +# @用例名称: fate-seek-lavf-ts +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-ts +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-ts + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-ts + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-ul.sh b/testcase/fate-seek-lavf-ul.sh new file mode 100755 index 0000000000000000000000000000000000000000..bd9a120bc202bc12492d4be5a0b5e0ac727b09bd --- /dev/null +++ b/testcase/fate-seek-lavf-ul.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170520-250750621 +# @用例名称: fate-seek-lavf-ul +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-ul +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-ul + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-ul + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-voc.sh b/testcase/fate-seek-lavf-voc.sh new file mode 100755 index 0000000000000000000000000000000000000000..795ae9ebf80e67dbbc82480a5d09cf04a3790482 --- /dev/null +++ b/testcase/fate-seek-lavf-voc.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170520-347774612 +# @用例名称: fate-seek-lavf-voc +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-voc +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-voc + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-voc + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-wav.sh b/testcase/fate-seek-lavf-wav.sh new file mode 100755 index 0000000000000000000000000000000000000000..cfd2c7a24667c24b64b1b849a8be2fccbc37100a --- /dev/null +++ b/testcase/fate-seek-lavf-wav.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170520-442894930 +# @用例名称: fate-seek-lavf-wav +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-wav +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-wav + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-wav + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-wtv.sh b/testcase/fate-seek-lavf-wtv.sh new file mode 100755 index 0000000000000000000000000000000000000000..83944b7d0ef1a8a14139a34b4d92ecc423fb4e1e --- /dev/null +++ b/testcase/fate-seek-lavf-wtv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170520-538023067 +# @用例名称: fate-seek-lavf-wtv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-wtv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-wtv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-wtv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-seek-lavf-y4m.sh b/testcase/fate-seek-lavf-y4m.sh new file mode 100755 index 0000000000000000000000000000000000000000..f705c98ae6b18934ac427b987cee88ee69f92f3e --- /dev/null +++ b/testcase/fate-seek-lavf-y4m.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170520-632937940 +# @用例名称: fate-seek-lavf-y4m +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-seek-lavf-y4m +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-seek-lavf-y4m + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-seek-lavf-y4m + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-shortest.sh b/testcase/fate-shortest.sh new file mode 100755 index 0000000000000000000000000000000000000000..0a34ca5265e7d2c5818da53537cf3e6c1798db78 --- /dev/null +++ b/testcase/fate-shortest.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170520-723935778 +# @用例名称: fate-shortest +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-shortest +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-shortest + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-shortest + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-source.sh b/testcase/fate-source.sh new file mode 100755 index 0000000000000000000000000000000000000000..b631f4738fc7846cb720808ebc050a8c54edca31 --- /dev/null +++ b/testcase/fate-source.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170520-814810980 +# @用例名称: fate-source +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-source +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-source + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-source + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-async-firstpts.sh b/testcase/fate-swr-async-firstpts.sh new file mode 100755 index 0000000000000000000000000000000000000000..fedc618c8a848bc6b665b7ff3271748fcb04ea8a --- /dev/null +++ b/testcase/fate-swr-async-firstpts.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170520-904485304 +# @用例名称: fate-swr-async-firstpts +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-async-firstpts +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-async-firstpts + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-async-firstpts + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-audioconvert.sh b/testcase/fate-swr-audioconvert.sh new file mode 100755 index 0000000000000000000000000000000000000000..e87148626505891996f43567d5160c09ea70e63e --- /dev/null +++ b/testcase/fate-swr-audioconvert.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170520-995838585 +# @用例名称: fate-swr-audioconvert +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-audioconvert +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-audioconvert + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-audioconvert + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-custom-rematrix.sh b/testcase/fate-swr-custom-rematrix.sh new file mode 100755 index 0000000000000000000000000000000000000000..54595d583a666e00cc0b4d17be28d6c947041d92 --- /dev/null +++ b/testcase/fate-swr-custom-rematrix.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170521-087627198 +# @用例名称: fate-swr-custom-rematrix +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-custom-rematrix +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-custom-rematrix + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-custom-rematrix + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-dblp-2626-44100.sh b/testcase/fate-swr-resample-dblp-2626-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..e98e673449a6a228ead60e726020c3b0a4e1a7c8 --- /dev/null +++ b/testcase/fate-swr-resample-dblp-2626-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170521-181910732 +# @用例名称: fate-swr-resample-dblp-2626-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-dblp-2626-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-dblp-2626-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-dblp-2626-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-dblp-2626-48000.sh b/testcase/fate-swr-resample-dblp-2626-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..c5f04eb22fb3c8855ceae9f524f4a66d6ae3eed8 --- /dev/null +++ b/testcase/fate-swr-resample-dblp-2626-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170521-273654028 +# @用例名称: fate-swr-resample-dblp-2626-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-dblp-2626-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-dblp-2626-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-dblp-2626-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-dblp-2626-8000.sh b/testcase/fate-swr-resample-dblp-2626-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..480c33e1f99fe74e11cfd419f6eb7149fd28b2a7 --- /dev/null +++ b/testcase/fate-swr-resample-dblp-2626-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170521-364145236 +# @用例名称: fate-swr-resample-dblp-2626-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-dblp-2626-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-dblp-2626-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-dblp-2626-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-dblp-2626-96000.sh b/testcase/fate-swr-resample-dblp-2626-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..15d44fbb257b9851491d1ac23fbfb87eeba4afac --- /dev/null +++ b/testcase/fate-swr-resample-dblp-2626-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170521-455109805 +# @用例名称: fate-swr-resample-dblp-2626-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-dblp-2626-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-dblp-2626-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-dblp-2626-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-dblp-44100-2626.sh b/testcase/fate-swr-resample-dblp-44100-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..0a95d55d039cec40758d4ae20a4867e39d9a5a89 --- /dev/null +++ b/testcase/fate-swr-resample-dblp-44100-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170521-545669251 +# @用例名称: fate-swr-resample-dblp-44100-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-dblp-44100-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-dblp-44100-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-dblp-44100-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-dblp-44100-48000.sh b/testcase/fate-swr-resample-dblp-44100-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..05313c7984ca4cd49c61d07a913a02a220176a5a --- /dev/null +++ b/testcase/fate-swr-resample-dblp-44100-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170521-636087262 +# @用例名称: fate-swr-resample-dblp-44100-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-dblp-44100-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-dblp-44100-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-dblp-44100-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-dblp-44100-8000.sh b/testcase/fate-swr-resample-dblp-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..689809973600f43b23b152637b3f86b85d47f416 --- /dev/null +++ b/testcase/fate-swr-resample-dblp-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170521-722843814 +# @用例名称: fate-swr-resample-dblp-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-dblp-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-dblp-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-dblp-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-dblp-44100-96000.sh b/testcase/fate-swr-resample-dblp-44100-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..a3b6ee059b3b20175abf837e5802335cc1655ea1 --- /dev/null +++ b/testcase/fate-swr-resample-dblp-44100-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170521-814113617 +# @用例名称: fate-swr-resample-dblp-44100-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-dblp-44100-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-dblp-44100-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-dblp-44100-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-dblp-48000-2626.sh b/testcase/fate-swr-resample-dblp-48000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..8912720a36eef3d9e1d7bac65be4c3325e8a923e --- /dev/null +++ b/testcase/fate-swr-resample-dblp-48000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170521-904256472 +# @用例名称: fate-swr-resample-dblp-48000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-dblp-48000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-dblp-48000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-dblp-48000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-dblp-48000-44100.sh b/testcase/fate-swr-resample-dblp-48000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..5d0a07b7ea138f1cb40795d14ff63be3f54c7765 --- /dev/null +++ b/testcase/fate-swr-resample-dblp-48000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170521-994472227 +# @用例名称: fate-swr-resample-dblp-48000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-dblp-48000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-dblp-48000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-dblp-48000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-dblp-48000-8000.sh b/testcase/fate-swr-resample-dblp-48000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..d3a2063bd27e90d4c95d02fa24d298c1ccf7d8e0 --- /dev/null +++ b/testcase/fate-swr-resample-dblp-48000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170522-082854327 +# @用例名称: fate-swr-resample-dblp-48000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-dblp-48000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-dblp-48000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-dblp-48000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-dblp-48000-96000.sh b/testcase/fate-swr-resample-dblp-48000-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..bd796a3aaaf5a6ab9fd2c07641b20162167cf21b --- /dev/null +++ b/testcase/fate-swr-resample-dblp-48000-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170522-177665520 +# @用例名称: fate-swr-resample-dblp-48000-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-dblp-48000-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-dblp-48000-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-dblp-48000-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-dblp-8000-2626.sh b/testcase/fate-swr-resample-dblp-8000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..2ef1dcd4c94c70514e28c4c3e6eaa9fad8d10a00 --- /dev/null +++ b/testcase/fate-swr-resample-dblp-8000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170522-272067102 +# @用例名称: fate-swr-resample-dblp-8000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-dblp-8000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-dblp-8000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-dblp-8000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-dblp-8000-44100.sh b/testcase/fate-swr-resample-dblp-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..d352f4d91166726e620426f4eeacfd5110104eac --- /dev/null +++ b/testcase/fate-swr-resample-dblp-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170522-365210079 +# @用例名称: fate-swr-resample-dblp-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-dblp-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-dblp-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-dblp-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-dblp-8000-48000.sh b/testcase/fate-swr-resample-dblp-8000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..6669529dc1e101b19cf6780d5e3b57b61aadb6c3 --- /dev/null +++ b/testcase/fate-swr-resample-dblp-8000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170522-458714949 +# @用例名称: fate-swr-resample-dblp-8000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-dblp-8000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-dblp-8000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-dblp-8000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-dblp-8000-96000.sh b/testcase/fate-swr-resample-dblp-8000-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..ccdcf1a0a9ed1750be222e5c6628c39c90b44fb6 --- /dev/null +++ b/testcase/fate-swr-resample-dblp-8000-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170522-549597839 +# @用例名称: fate-swr-resample-dblp-8000-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-dblp-8000-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-dblp-8000-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-dblp-8000-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-dblp-96000-2626.sh b/testcase/fate-swr-resample-dblp-96000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..fcc4573442301e6abdb55b7f3017d12e04ac1df7 --- /dev/null +++ b/testcase/fate-swr-resample-dblp-96000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170522-640077319 +# @用例名称: fate-swr-resample-dblp-96000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-dblp-96000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-dblp-96000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-dblp-96000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-dblp-96000-44100.sh b/testcase/fate-swr-resample-dblp-96000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..1c53ada1dca1062c68c3bec2d0cffc16d375f155 --- /dev/null +++ b/testcase/fate-swr-resample-dblp-96000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170522-733790634 +# @用例名称: fate-swr-resample-dblp-96000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-dblp-96000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-dblp-96000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-dblp-96000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-dblp-96000-48000.sh b/testcase/fate-swr-resample-dblp-96000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..73c1194a8d4d75b9d95a8011b6e8c5cea2aa7482 --- /dev/null +++ b/testcase/fate-swr-resample-dblp-96000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170522-824716384 +# @用例名称: fate-swr-resample-dblp-96000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-dblp-96000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-dblp-96000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-dblp-96000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-dblp-96000-8000.sh b/testcase/fate-swr-resample-dblp-96000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..b1bc7a699d11e5b9b33429080daac54a16947b08 --- /dev/null +++ b/testcase/fate-swr-resample-dblp-96000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170522-916936439 +# @用例名称: fate-swr-resample-dblp-96000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-dblp-96000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-dblp-96000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-dblp-96000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-fltp-2626-44100.sh b/testcase/fate-swr-resample-fltp-2626-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..d1f6aa1c39bc094bcbb352a8ac420949fb15f1e9 --- /dev/null +++ b/testcase/fate-swr-resample-fltp-2626-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170523-009552866 +# @用例名称: fate-swr-resample-fltp-2626-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-fltp-2626-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-fltp-2626-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-fltp-2626-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-fltp-2626-48000.sh b/testcase/fate-swr-resample-fltp-2626-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..567bca73c1af69bff33445d46cda1246cd319c9e --- /dev/null +++ b/testcase/fate-swr-resample-fltp-2626-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170523-100612593 +# @用例名称: fate-swr-resample-fltp-2626-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-fltp-2626-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-fltp-2626-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-fltp-2626-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-fltp-2626-8000.sh b/testcase/fate-swr-resample-fltp-2626-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..89321c46943785938eaddb214ec0b20a3bab6521 --- /dev/null +++ b/testcase/fate-swr-resample-fltp-2626-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170523-192901707 +# @用例名称: fate-swr-resample-fltp-2626-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-fltp-2626-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-fltp-2626-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-fltp-2626-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-fltp-2626-96000.sh b/testcase/fate-swr-resample-fltp-2626-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..d263ff79963727be60e220953106d881213ef7c4 --- /dev/null +++ b/testcase/fate-swr-resample-fltp-2626-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170523-284355176 +# @用例名称: fate-swr-resample-fltp-2626-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-fltp-2626-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-fltp-2626-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-fltp-2626-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-fltp-44100-2626.sh b/testcase/fate-swr-resample-fltp-44100-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..5d86c21ac682ac1ef157f434578a0f695aeefc96 --- /dev/null +++ b/testcase/fate-swr-resample-fltp-44100-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170523-376164080 +# @用例名称: fate-swr-resample-fltp-44100-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-fltp-44100-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-fltp-44100-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-fltp-44100-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-fltp-44100-48000.sh b/testcase/fate-swr-resample-fltp-44100-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..193686a820e020e951dc290e44a94e6838093af4 --- /dev/null +++ b/testcase/fate-swr-resample-fltp-44100-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170523-462802353 +# @用例名称: fate-swr-resample-fltp-44100-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-fltp-44100-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-fltp-44100-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-fltp-44100-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-fltp-44100-8000.sh b/testcase/fate-swr-resample-fltp-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..aa93e185c09726f6f5cab63b4955dab92285392a --- /dev/null +++ b/testcase/fate-swr-resample-fltp-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170523-553612985 +# @用例名称: fate-swr-resample-fltp-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-fltp-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-fltp-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-fltp-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-fltp-44100-96000.sh b/testcase/fate-swr-resample-fltp-44100-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..f171624f5b7de0ef565adb702e1a014a0d662c44 --- /dev/null +++ b/testcase/fate-swr-resample-fltp-44100-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170523-642615303 +# @用例名称: fate-swr-resample-fltp-44100-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-fltp-44100-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-fltp-44100-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-fltp-44100-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-fltp-48000-2626.sh b/testcase/fate-swr-resample-fltp-48000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..25eae27569ed88ec26332ca4bd50bfc6d812af3d --- /dev/null +++ b/testcase/fate-swr-resample-fltp-48000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170523-732749708 +# @用例名称: fate-swr-resample-fltp-48000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-fltp-48000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-fltp-48000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-fltp-48000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-fltp-48000-44100.sh b/testcase/fate-swr-resample-fltp-48000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..b4c54fadcfcc333bca0cdb687e497a5c697f5203 --- /dev/null +++ b/testcase/fate-swr-resample-fltp-48000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170523-824047812 +# @用例名称: fate-swr-resample-fltp-48000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-fltp-48000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-fltp-48000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-fltp-48000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-fltp-48000-8000.sh b/testcase/fate-swr-resample-fltp-48000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..f8bf47e7c9ad8e02a9fd15b604a398e1f0aedd90 --- /dev/null +++ b/testcase/fate-swr-resample-fltp-48000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170523-914947982 +# @用例名称: fate-swr-resample-fltp-48000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-fltp-48000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-fltp-48000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-fltp-48000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-fltp-48000-96000.sh b/testcase/fate-swr-resample-fltp-48000-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..84dbe43ce4dba473318697791d6bc732722c40f5 --- /dev/null +++ b/testcase/fate-swr-resample-fltp-48000-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170524-004063278 +# @用例名称: fate-swr-resample-fltp-48000-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-fltp-48000-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-fltp-48000-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-fltp-48000-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-fltp-8000-2626.sh b/testcase/fate-swr-resample-fltp-8000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..921f53c2cf94ee8da600dc0877882b1b81549d2d --- /dev/null +++ b/testcase/fate-swr-resample-fltp-8000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170524-095128285 +# @用例名称: fate-swr-resample-fltp-8000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-fltp-8000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-fltp-8000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-fltp-8000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-fltp-8000-44100.sh b/testcase/fate-swr-resample-fltp-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..f8c235f490e715d08ed6d96a4c5ebc0d11ae9b47 --- /dev/null +++ b/testcase/fate-swr-resample-fltp-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170524-184561014 +# @用例名称: fate-swr-resample-fltp-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-fltp-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-fltp-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-fltp-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-fltp-8000-48000.sh b/testcase/fate-swr-resample-fltp-8000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..b784c2bd82fa2f13210727084dbca7bbd59f277d --- /dev/null +++ b/testcase/fate-swr-resample-fltp-8000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170524-270511362 +# @用例名称: fate-swr-resample-fltp-8000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-fltp-8000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-fltp-8000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-fltp-8000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-fltp-8000-96000.sh b/testcase/fate-swr-resample-fltp-8000-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..64163c729a816a2af58515e035dfe2d07479087f --- /dev/null +++ b/testcase/fate-swr-resample-fltp-8000-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170524-362960672 +# @用例名称: fate-swr-resample-fltp-8000-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-fltp-8000-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-fltp-8000-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-fltp-8000-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-fltp-96000-2626.sh b/testcase/fate-swr-resample-fltp-96000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..656636cecd856af7519f1e0dd1f23dcc19d825c2 --- /dev/null +++ b/testcase/fate-swr-resample-fltp-96000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170524-457850815 +# @用例名称: fate-swr-resample-fltp-96000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-fltp-96000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-fltp-96000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-fltp-96000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-fltp-96000-44100.sh b/testcase/fate-swr-resample-fltp-96000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..4d5721809ba8d37f7afc92f72e406e2377137bb4 --- /dev/null +++ b/testcase/fate-swr-resample-fltp-96000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170524-548806434 +# @用例名称: fate-swr-resample-fltp-96000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-fltp-96000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-fltp-96000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-fltp-96000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-fltp-96000-48000.sh b/testcase/fate-swr-resample-fltp-96000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..c375bcb9ff5729219efc5e16ddad11d8772e5525 --- /dev/null +++ b/testcase/fate-swr-resample-fltp-96000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170524-637940820 +# @用例名称: fate-swr-resample-fltp-96000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-fltp-96000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-fltp-96000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-fltp-96000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-fltp-96000-8000.sh b/testcase/fate-swr-resample-fltp-96000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..6aeeb763be49163cd47c9b182a2638372d519399 --- /dev/null +++ b/testcase/fate-swr-resample-fltp-96000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170524-728854799 +# @用例名称: fate-swr-resample-fltp-96000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-fltp-96000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-fltp-96000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-fltp-96000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s16p-2626-44100.sh b/testcase/fate-swr-resample-s16p-2626-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..c5df159737611c82453f4da4ee30df86b6bf7fc5 --- /dev/null +++ b/testcase/fate-swr-resample-s16p-2626-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170524-821734461 +# @用例名称: fate-swr-resample-s16p-2626-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s16p-2626-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s16p-2626-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s16p-2626-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s16p-2626-48000.sh b/testcase/fate-swr-resample-s16p-2626-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..78439d6ebd0d52ad3f6c951e46e9c2bae689a5ed --- /dev/null +++ b/testcase/fate-swr-resample-s16p-2626-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170524-913617382 +# @用例名称: fate-swr-resample-s16p-2626-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s16p-2626-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s16p-2626-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s16p-2626-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s16p-2626-8000.sh b/testcase/fate-swr-resample-s16p-2626-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..76fb773041447e6c90b05043206ee3acec4b94f9 --- /dev/null +++ b/testcase/fate-swr-resample-s16p-2626-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170525-006130802 +# @用例名称: fate-swr-resample-s16p-2626-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s16p-2626-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s16p-2626-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s16p-2626-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s16p-2626-96000.sh b/testcase/fate-swr-resample-s16p-2626-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..e5488007d7fc39bf2ae28f6789749bba3d69a04f --- /dev/null +++ b/testcase/fate-swr-resample-s16p-2626-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170525-097183889 +# @用例名称: fate-swr-resample-s16p-2626-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s16p-2626-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s16p-2626-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s16p-2626-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s16p-44100-2626.sh b/testcase/fate-swr-resample-s16p-44100-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..0f95bbe9d4c334de1e56a96d0982d9b9167c664d --- /dev/null +++ b/testcase/fate-swr-resample-s16p-44100-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170525-189447553 +# @用例名称: fate-swr-resample-s16p-44100-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s16p-44100-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s16p-44100-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s16p-44100-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s16p-44100-48000.sh b/testcase/fate-swr-resample-s16p-44100-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..69f8848da1e5f7276e381ada32c486f799c763d1 --- /dev/null +++ b/testcase/fate-swr-resample-s16p-44100-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170525-280124658 +# @用例名称: fate-swr-resample-s16p-44100-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s16p-44100-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s16p-44100-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s16p-44100-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s16p-44100-8000.sh b/testcase/fate-swr-resample-s16p-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..4684d51b5fac9659625f8f45a73609d9106dc989 --- /dev/null +++ b/testcase/fate-swr-resample-s16p-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170525-372741915 +# @用例名称: fate-swr-resample-s16p-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s16p-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s16p-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s16p-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s16p-44100-96000.sh b/testcase/fate-swr-resample-s16p-44100-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..152e9580842f0241298932c9c76667e8ac123fdb --- /dev/null +++ b/testcase/fate-swr-resample-s16p-44100-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170525-466643646 +# @用例名称: fate-swr-resample-s16p-44100-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s16p-44100-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s16p-44100-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s16p-44100-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s16p-48000-2626.sh b/testcase/fate-swr-resample-s16p-48000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..27592f842f3b64a0734fcdaa38697a50acfe146c --- /dev/null +++ b/testcase/fate-swr-resample-s16p-48000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170525-560639797 +# @用例名称: fate-swr-resample-s16p-48000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s16p-48000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s16p-48000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s16p-48000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s16p-48000-44100.sh b/testcase/fate-swr-resample-s16p-48000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..ab0f11b24ff6446bdb1ab09fd69e7b499b699142 --- /dev/null +++ b/testcase/fate-swr-resample-s16p-48000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170525-649464208 +# @用例名称: fate-swr-resample-s16p-48000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s16p-48000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s16p-48000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s16p-48000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s16p-48000-8000.sh b/testcase/fate-swr-resample-s16p-48000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..52d33291119900a3cac7d4ae0af71f9418ee44b0 --- /dev/null +++ b/testcase/fate-swr-resample-s16p-48000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170525-737851488 +# @用例名称: fate-swr-resample-s16p-48000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s16p-48000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s16p-48000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s16p-48000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s16p-48000-96000.sh b/testcase/fate-swr-resample-s16p-48000-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..007c58b0aede112acf819693d6f23abe6a6a7a35 --- /dev/null +++ b/testcase/fate-swr-resample-s16p-48000-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170525-828564942 +# @用例名称: fate-swr-resample-s16p-48000-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s16p-48000-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s16p-48000-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s16p-48000-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s16p-8000-2626.sh b/testcase/fate-swr-resample-s16p-8000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..3c1a5cf33fe73a8a2219d53afdb505da2743f664 --- /dev/null +++ b/testcase/fate-swr-resample-s16p-8000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170525-920637180 +# @用例名称: fate-swr-resample-s16p-8000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s16p-8000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s16p-8000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s16p-8000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s16p-8000-44100.sh b/testcase/fate-swr-resample-s16p-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..67ea2c5f0e590e4e115e7a1d18720eb6e9c48b42 --- /dev/null +++ b/testcase/fate-swr-resample-s16p-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170526-011207327 +# @用例名称: fate-swr-resample-s16p-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s16p-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s16p-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s16p-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s16p-8000-48000.sh b/testcase/fate-swr-resample-s16p-8000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..7f8c4945498f7b3f0b0e1b2b12352ce1d299a7b4 --- /dev/null +++ b/testcase/fate-swr-resample-s16p-8000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170526-098427239 +# @用例名称: fate-swr-resample-s16p-8000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s16p-8000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s16p-8000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s16p-8000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s16p-8000-96000.sh b/testcase/fate-swr-resample-s16p-8000-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..35255abc8f7ead9160ec6bc94651c98e7221c63f --- /dev/null +++ b/testcase/fate-swr-resample-s16p-8000-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170526-180728298 +# @用例名称: fate-swr-resample-s16p-8000-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s16p-8000-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s16p-8000-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s16p-8000-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s16p-96000-2626.sh b/testcase/fate-swr-resample-s16p-96000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..2b5721b9ad08c1d55ff90d3737d19e8e58c61eca --- /dev/null +++ b/testcase/fate-swr-resample-s16p-96000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170526-266426461 +# @用例名称: fate-swr-resample-s16p-96000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s16p-96000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s16p-96000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s16p-96000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s16p-96000-44100.sh b/testcase/fate-swr-resample-s16p-96000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..88b94e46682614af1b036407727ea5846c13690d --- /dev/null +++ b/testcase/fate-swr-resample-s16p-96000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170526-353047036 +# @用例名称: fate-swr-resample-s16p-96000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s16p-96000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s16p-96000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s16p-96000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s16p-96000-48000.sh b/testcase/fate-swr-resample-s16p-96000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..76bc6222eca9106131ebbec2ac4dfa7bf29c8ef9 --- /dev/null +++ b/testcase/fate-swr-resample-s16p-96000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170526-440514092 +# @用例名称: fate-swr-resample-s16p-96000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s16p-96000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s16p-96000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s16p-96000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s16p-96000-8000.sh b/testcase/fate-swr-resample-s16p-96000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..32ed8d70830dbf7f7406be1d7b1468377cbfd66f --- /dev/null +++ b/testcase/fate-swr-resample-s16p-96000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170526-531294716 +# @用例名称: fate-swr-resample-s16p-96000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s16p-96000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s16p-96000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s16p-96000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s32p-2626-44100.sh b/testcase/fate-swr-resample-s32p-2626-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..e0c74a8adb857749365c4329078f74645f0c48b7 --- /dev/null +++ b/testcase/fate-swr-resample-s32p-2626-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170526-624931473 +# @用例名称: fate-swr-resample-s32p-2626-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s32p-2626-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s32p-2626-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s32p-2626-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s32p-2626-48000.sh b/testcase/fate-swr-resample-s32p-2626-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..45bedc387ab33104fbb3605dc394d38ddafdafb0 --- /dev/null +++ b/testcase/fate-swr-resample-s32p-2626-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170526-714953190 +# @用例名称: fate-swr-resample-s32p-2626-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s32p-2626-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s32p-2626-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s32p-2626-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s32p-2626-8000.sh b/testcase/fate-swr-resample-s32p-2626-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..e1afaf4723e38e7cc49ae8298137420b1b8a5744 --- /dev/null +++ b/testcase/fate-swr-resample-s32p-2626-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170526-808159447 +# @用例名称: fate-swr-resample-s32p-2626-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s32p-2626-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s32p-2626-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s32p-2626-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s32p-2626-96000.sh b/testcase/fate-swr-resample-s32p-2626-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..e58a7a588dc2350ec6e5155c26b259982058c6a2 --- /dev/null +++ b/testcase/fate-swr-resample-s32p-2626-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170526-898564345 +# @用例名称: fate-swr-resample-s32p-2626-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s32p-2626-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s32p-2626-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s32p-2626-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s32p-44100-2626.sh b/testcase/fate-swr-resample-s32p-44100-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..9b49c01c6e91454db30dd316e456a1f40c43694c --- /dev/null +++ b/testcase/fate-swr-resample-s32p-44100-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170526-990166283 +# @用例名称: fate-swr-resample-s32p-44100-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s32p-44100-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s32p-44100-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s32p-44100-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s32p-44100-48000.sh b/testcase/fate-swr-resample-s32p-44100-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..85aef6de84debbf339f1acf170dca3c74705ea48 --- /dev/null +++ b/testcase/fate-swr-resample-s32p-44100-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170527-079759239 +# @用例名称: fate-swr-resample-s32p-44100-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s32p-44100-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s32p-44100-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s32p-44100-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s32p-44100-8000.sh b/testcase/fate-swr-resample-s32p-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..65a71380dc8a4440dabc9092eaed72fe3eb071aa --- /dev/null +++ b/testcase/fate-swr-resample-s32p-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170527-169084831 +# @用例名称: fate-swr-resample-s32p-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s32p-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s32p-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s32p-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s32p-44100-96000.sh b/testcase/fate-swr-resample-s32p-44100-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..fb63b2055488425c0092c55185a696fb68b99e07 --- /dev/null +++ b/testcase/fate-swr-resample-s32p-44100-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170527-258591279 +# @用例名称: fate-swr-resample-s32p-44100-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s32p-44100-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s32p-44100-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s32p-44100-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s32p-48000-2626.sh b/testcase/fate-swr-resample-s32p-48000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..94e322a2456f9e29bd7b34384ca2707422956838 --- /dev/null +++ b/testcase/fate-swr-resample-s32p-48000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170527-351213096 +# @用例名称: fate-swr-resample-s32p-48000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s32p-48000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s32p-48000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s32p-48000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s32p-48000-44100.sh b/testcase/fate-swr-resample-s32p-48000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..54c7cd46e61de9fddab29c7918dc7b0002585b3e --- /dev/null +++ b/testcase/fate-swr-resample-s32p-48000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170527-442973648 +# @用例名称: fate-swr-resample-s32p-48000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s32p-48000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s32p-48000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s32p-48000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s32p-48000-8000.sh b/testcase/fate-swr-resample-s32p-48000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..5eac3f94524d6732daa21e2716c32d04190a5842 --- /dev/null +++ b/testcase/fate-swr-resample-s32p-48000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170527-531767301 +# @用例名称: fate-swr-resample-s32p-48000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s32p-48000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s32p-48000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s32p-48000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s32p-48000-96000.sh b/testcase/fate-swr-resample-s32p-48000-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..bae876818db6b32666aaaa72457809c4984e0b1a --- /dev/null +++ b/testcase/fate-swr-resample-s32p-48000-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170527-619987594 +# @用例名称: fate-swr-resample-s32p-48000-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s32p-48000-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s32p-48000-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s32p-48000-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s32p-8000-2626.sh b/testcase/fate-swr-resample-s32p-8000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..9b86838bcd3942f8ed98e211eab12a5fa311ced4 --- /dev/null +++ b/testcase/fate-swr-resample-s32p-8000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170527-705455231 +# @用例名称: fate-swr-resample-s32p-8000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s32p-8000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s32p-8000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s32p-8000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s32p-8000-44100.sh b/testcase/fate-swr-resample-s32p-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..ba5fdad05ecab676a259d5dcea13a3e1c5794f34 --- /dev/null +++ b/testcase/fate-swr-resample-s32p-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170527-792556005 +# @用例名称: fate-swr-resample-s32p-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s32p-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s32p-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s32p-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s32p-8000-48000.sh b/testcase/fate-swr-resample-s32p-8000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..5cad0f710956f20b838bd7fe70923f76dc6cc086 --- /dev/null +++ b/testcase/fate-swr-resample-s32p-8000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170527-881198091 +# @用例名称: fate-swr-resample-s32p-8000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s32p-8000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s32p-8000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s32p-8000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s32p-8000-96000.sh b/testcase/fate-swr-resample-s32p-8000-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..c9cc085d5ed8d4f31fc34e3a99a29553e9e41771 --- /dev/null +++ b/testcase/fate-swr-resample-s32p-8000-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170527-974053252 +# @用例名称: fate-swr-resample-s32p-8000-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s32p-8000-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s32p-8000-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s32p-8000-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s32p-96000-2626.sh b/testcase/fate-swr-resample-s32p-96000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..005dd4cac7955789fc4afb479180cf2b66d537ed --- /dev/null +++ b/testcase/fate-swr-resample-s32p-96000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170528-064461983 +# @用例名称: fate-swr-resample-s32p-96000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s32p-96000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s32p-96000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s32p-96000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s32p-96000-44100.sh b/testcase/fate-swr-resample-s32p-96000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..dc334d9e2f3081864c5fe032749c8c83032c653d --- /dev/null +++ b/testcase/fate-swr-resample-s32p-96000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170528-152868223 +# @用例名称: fate-swr-resample-s32p-96000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s32p-96000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s32p-96000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s32p-96000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s32p-96000-48000.sh b/testcase/fate-swr-resample-s32p-96000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..0f18fe77b81c24a0669b281e0e5ec69693a2a989 --- /dev/null +++ b/testcase/fate-swr-resample-s32p-96000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170528-235652722 +# @用例名称: fate-swr-resample-s32p-96000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s32p-96000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s32p-96000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s32p-96000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample-s32p-96000-8000.sh b/testcase/fate-swr-resample-s32p-96000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..4d87d21b489a9247165c3b83a88a1efb335b9201 --- /dev/null +++ b/testcase/fate-swr-resample-s32p-96000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170528-320681737 +# @用例名称: fate-swr-resample-s32p-96000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample-s32p-96000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample-s32p-96000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample-s32p-96000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_async-fltp-44100-8000.sh b/testcase/fate-swr-resample_async-fltp-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..99c694c4a75785b45121dc67536b32a4c4b4dc65 --- /dev/null +++ b/testcase/fate-swr-resample_async-fltp-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170528-411004249 +# @用例名称: fate-swr-resample_async-fltp-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_async-fltp-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_async-fltp-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_async-fltp-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_async-fltp-8000-44100.sh b/testcase/fate-swr-resample_async-fltp-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..a27c60995c1cc1dcccbe4830ec31108b2a5f2dd6 --- /dev/null +++ b/testcase/fate-swr-resample_async-fltp-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170528-499993727 +# @用例名称: fate-swr-resample_async-fltp-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_async-fltp-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_async-fltp-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_async-fltp-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_async-s16p-44100-8000.sh b/testcase/fate-swr-resample_async-s16p-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..1d2d147054fcc59d67ca1ddf63becc6e0a47e374 --- /dev/null +++ b/testcase/fate-swr-resample_async-s16p-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170528-589710151 +# @用例名称: fate-swr-resample_async-s16p-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_async-s16p-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_async-s16p-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_async-s16p-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_async-s16p-8000-44100.sh b/testcase/fate-swr-resample_async-s16p-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..3b1601f014683bbda793ea8eb7a7faf422ba11ca --- /dev/null +++ b/testcase/fate-swr-resample_async-s16p-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170528-679424925 +# @用例名称: fate-swr-resample_async-s16p-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_async-s16p-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_async-s16p-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_async-s16p-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-dblp-2626-44100.sh b/testcase/fate-swr-resample_exact-dblp-2626-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..da6884a2cc6d34c5640ba58928ab02d35f37bf23 --- /dev/null +++ b/testcase/fate-swr-resample_exact-dblp-2626-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170528-771348176 +# @用例名称: fate-swr-resample_exact-dblp-2626-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-2626-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-2626-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-dblp-2626-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-dblp-2626-48000.sh b/testcase/fate-swr-resample_exact-dblp-2626-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..e66b10a58597f7d7a3026896821f6b67cd8c13f0 --- /dev/null +++ b/testcase/fate-swr-resample_exact-dblp-2626-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170528-863937743 +# @用例名称: fate-swr-resample_exact-dblp-2626-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-2626-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-2626-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-dblp-2626-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-dblp-2626-8000.sh b/testcase/fate-swr-resample_exact-dblp-2626-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..f8d390193c17b4f2f622b629be2bc566b8cef5a1 --- /dev/null +++ b/testcase/fate-swr-resample_exact-dblp-2626-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170528-949686294 +# @用例名称: fate-swr-resample_exact-dblp-2626-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-2626-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-2626-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-dblp-2626-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-dblp-2626-96000.sh b/testcase/fate-swr-resample_exact-dblp-2626-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..1f77fc9bbcbc7cc316789728b742b191615beded --- /dev/null +++ b/testcase/fate-swr-resample_exact-dblp-2626-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170529-039932257 +# @用例名称: fate-swr-resample_exact-dblp-2626-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-2626-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-2626-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-dblp-2626-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-dblp-44100-2626.sh b/testcase/fate-swr-resample_exact-dblp-44100-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..700b5186845af44c585752790e7429f938930e8b --- /dev/null +++ b/testcase/fate-swr-resample_exact-dblp-44100-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170529-120971491 +# @用例名称: fate-swr-resample_exact-dblp-44100-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-44100-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-44100-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-dblp-44100-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-dblp-44100-48000.sh b/testcase/fate-swr-resample_exact-dblp-44100-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..e283763358bd62b7e01152a1782d8652ac638aa2 --- /dev/null +++ b/testcase/fate-swr-resample_exact-dblp-44100-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170529-201462326 +# @用例名称: fate-swr-resample_exact-dblp-44100-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-44100-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-44100-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-dblp-44100-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-dblp-44100-8000.sh b/testcase/fate-swr-resample_exact-dblp-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..894bb2443c609c7f06141a285cb94eb79a432a42 --- /dev/null +++ b/testcase/fate-swr-resample_exact-dblp-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170529-286758496 +# @用例名称: fate-swr-resample_exact-dblp-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-dblp-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-dblp-44100-96000.sh b/testcase/fate-swr-resample_exact-dblp-44100-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..d6d2bdd949fc8d1e3f2723290c9510e62aa0f70b --- /dev/null +++ b/testcase/fate-swr-resample_exact-dblp-44100-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170529-378928092 +# @用例名称: fate-swr-resample_exact-dblp-44100-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-44100-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-44100-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-dblp-44100-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-dblp-48000-2626.sh b/testcase/fate-swr-resample_exact-dblp-48000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..a3d6d813b080f0864d4c3c280a84209d51314030 --- /dev/null +++ b/testcase/fate-swr-resample_exact-dblp-48000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170529-471026948 +# @用例名称: fate-swr-resample_exact-dblp-48000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-48000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-48000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-dblp-48000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-dblp-48000-44100.sh b/testcase/fate-swr-resample_exact-dblp-48000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..2314ab54cc601a5568d9069d5b912acc4f338a0a --- /dev/null +++ b/testcase/fate-swr-resample_exact-dblp-48000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170529-564310023 +# @用例名称: fate-swr-resample_exact-dblp-48000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-48000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-48000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-dblp-48000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-dblp-48000-8000.sh b/testcase/fate-swr-resample_exact-dblp-48000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..7d1f3eb3fc970a379242d0b8d3fa5355eef233da --- /dev/null +++ b/testcase/fate-swr-resample_exact-dblp-48000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170529-653519837 +# @用例名称: fate-swr-resample_exact-dblp-48000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-48000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-48000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-dblp-48000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-dblp-48000-96000.sh b/testcase/fate-swr-resample_exact-dblp-48000-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..7991f4d17409423f177b78c13f035ec5f3523d69 --- /dev/null +++ b/testcase/fate-swr-resample_exact-dblp-48000-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170529-744800280 +# @用例名称: fate-swr-resample_exact-dblp-48000-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-48000-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-48000-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-dblp-48000-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-dblp-8000-2626.sh b/testcase/fate-swr-resample_exact-dblp-8000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..3c63050f284fa6cc249044e64da7321a44e0957b --- /dev/null +++ b/testcase/fate-swr-resample_exact-dblp-8000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170529-840852459 +# @用例名称: fate-swr-resample_exact-dblp-8000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-8000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-8000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-dblp-8000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-dblp-8000-44100.sh b/testcase/fate-swr-resample_exact-dblp-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..37d5d90d70f6db9f60e42bef9af707d96f06bef3 --- /dev/null +++ b/testcase/fate-swr-resample_exact-dblp-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170529-934726412 +# @用例名称: fate-swr-resample_exact-dblp-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-dblp-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-dblp-8000-48000.sh b/testcase/fate-swr-resample_exact-dblp-8000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..7c41f7914d720add18eb153e5a226e4f5da5dfce --- /dev/null +++ b/testcase/fate-swr-resample_exact-dblp-8000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170530-025330698 +# @用例名称: fate-swr-resample_exact-dblp-8000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-8000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-8000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-dblp-8000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-dblp-8000-96000.sh b/testcase/fate-swr-resample_exact-dblp-8000-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..1aabcca4d7d0a2138d9c26dc8847d5400fd95f37 --- /dev/null +++ b/testcase/fate-swr-resample_exact-dblp-8000-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170530-117039392 +# @用例名称: fate-swr-resample_exact-dblp-8000-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-8000-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-8000-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-dblp-8000-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-dblp-96000-2626.sh b/testcase/fate-swr-resample_exact-dblp-96000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..2604ead87f078cb26a0720a7ddb823134dbc7c33 --- /dev/null +++ b/testcase/fate-swr-resample_exact-dblp-96000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170530-209788286 +# @用例名称: fate-swr-resample_exact-dblp-96000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-96000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-96000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-dblp-96000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-dblp-96000-44100.sh b/testcase/fate-swr-resample_exact-dblp-96000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..a64e0a57a75329d7f872de4f7cd01ddc1b55a699 --- /dev/null +++ b/testcase/fate-swr-resample_exact-dblp-96000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170530-302557801 +# @用例名称: fate-swr-resample_exact-dblp-96000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-96000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-96000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-dblp-96000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-dblp-96000-48000.sh b/testcase/fate-swr-resample_exact-dblp-96000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..84710900324e5da6227f3fb83fb26e7a97c48130 --- /dev/null +++ b/testcase/fate-swr-resample_exact-dblp-96000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170530-396342005 +# @用例名称: fate-swr-resample_exact-dblp-96000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-96000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-96000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-dblp-96000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-dblp-96000-8000.sh b/testcase/fate-swr-resample_exact-dblp-96000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..b4be0aa6b54309c549449ddb3c8638fee64993a9 --- /dev/null +++ b/testcase/fate-swr-resample_exact-dblp-96000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170530-487970752 +# @用例名称: fate-swr-resample_exact-dblp-96000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-96000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-dblp-96000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-dblp-96000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-fltp-2626-44100.sh b/testcase/fate-swr-resample_exact-fltp-2626-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..2e195a40790067b0acdfecbb9186efb81edba99b --- /dev/null +++ b/testcase/fate-swr-resample_exact-fltp-2626-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170530-580637937 +# @用例名称: fate-swr-resample_exact-fltp-2626-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-2626-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-2626-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-fltp-2626-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-fltp-2626-48000.sh b/testcase/fate-swr-resample_exact-fltp-2626-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..f7e981b1739c390532b9f7d99474877dc8c731d8 --- /dev/null +++ b/testcase/fate-swr-resample_exact-fltp-2626-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170530-670893550 +# @用例名称: fate-swr-resample_exact-fltp-2626-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-2626-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-2626-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-fltp-2626-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-fltp-2626-8000.sh b/testcase/fate-swr-resample_exact-fltp-2626-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..46f30b2fc4372355292d00e8a973adcfc9ec1e7d --- /dev/null +++ b/testcase/fate-swr-resample_exact-fltp-2626-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170530-753663371 +# @用例名称: fate-swr-resample_exact-fltp-2626-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-2626-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-2626-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-fltp-2626-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-fltp-2626-96000.sh b/testcase/fate-swr-resample_exact-fltp-2626-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..9587660a4333421a20680749e94bd4b53d1be5e6 --- /dev/null +++ b/testcase/fate-swr-resample_exact-fltp-2626-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170530-844482913 +# @用例名称: fate-swr-resample_exact-fltp-2626-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-2626-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-2626-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-fltp-2626-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-fltp-44100-2626.sh b/testcase/fate-swr-resample_exact-fltp-44100-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..5f924a058449d8f50b94065d81468933cac977ee --- /dev/null +++ b/testcase/fate-swr-resample_exact-fltp-44100-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170530-936907363 +# @用例名称: fate-swr-resample_exact-fltp-44100-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-44100-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-44100-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-fltp-44100-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-fltp-44100-48000.sh b/testcase/fate-swr-resample_exact-fltp-44100-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..f498d06e42154d06a62bcc66ce32d923d8501d60 --- /dev/null +++ b/testcase/fate-swr-resample_exact-fltp-44100-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170531-027471840 +# @用例名称: fate-swr-resample_exact-fltp-44100-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-44100-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-44100-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-fltp-44100-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-fltp-44100-8000.sh b/testcase/fate-swr-resample_exact-fltp-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..b4ae8dfa1f1a51bdd78c8947bc4c90008e6ece44 --- /dev/null +++ b/testcase/fate-swr-resample_exact-fltp-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170531-118390551 +# @用例名称: fate-swr-resample_exact-fltp-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-fltp-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-fltp-44100-96000.sh b/testcase/fate-swr-resample_exact-fltp-44100-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..c6f2fa76fe854113f3a66c8e7a6fabd18cdbccb8 --- /dev/null +++ b/testcase/fate-swr-resample_exact-fltp-44100-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170531-209288000 +# @用例名称: fate-swr-resample_exact-fltp-44100-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-44100-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-44100-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-fltp-44100-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-fltp-48000-2626.sh b/testcase/fate-swr-resample_exact-fltp-48000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..278bc30764ea1ebc2e58cb4577f2ab42097b68e2 --- /dev/null +++ b/testcase/fate-swr-resample_exact-fltp-48000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170531-302914718 +# @用例名称: fate-swr-resample_exact-fltp-48000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-48000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-48000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-fltp-48000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-fltp-48000-44100.sh b/testcase/fate-swr-resample_exact-fltp-48000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..3cf5c0741008023a9bde1045d4c46ff9205a376d --- /dev/null +++ b/testcase/fate-swr-resample_exact-fltp-48000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170531-395838669 +# @用例名称: fate-swr-resample_exact-fltp-48000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-48000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-48000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-fltp-48000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-fltp-48000-8000.sh b/testcase/fate-swr-resample_exact-fltp-48000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..76433ffb79b2e926c35eca38a2fc4d4a836080c1 --- /dev/null +++ b/testcase/fate-swr-resample_exact-fltp-48000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170531-491758471 +# @用例名称: fate-swr-resample_exact-fltp-48000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-48000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-48000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-fltp-48000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-fltp-48000-96000.sh b/testcase/fate-swr-resample_exact-fltp-48000-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..cd6a9bbe61ba23ab53b1aa2968a6f2f248bb11ab --- /dev/null +++ b/testcase/fate-swr-resample_exact-fltp-48000-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170531-578807948 +# @用例名称: fate-swr-resample_exact-fltp-48000-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-48000-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-48000-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-fltp-48000-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-fltp-8000-2626.sh b/testcase/fate-swr-resample_exact-fltp-8000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..e2a5066f55f166deb4a77ba487289fb4fef4e5c9 --- /dev/null +++ b/testcase/fate-swr-resample_exact-fltp-8000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170531-669267236 +# @用例名称: fate-swr-resample_exact-fltp-8000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-8000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-8000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-fltp-8000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-fltp-8000-44100.sh b/testcase/fate-swr-resample_exact-fltp-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..573be4b1d74fb2afde061eade4e86ab26b9acb4c --- /dev/null +++ b/testcase/fate-swr-resample_exact-fltp-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170531-754119226 +# @用例名称: fate-swr-resample_exact-fltp-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-fltp-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-fltp-8000-48000.sh b/testcase/fate-swr-resample_exact-fltp-8000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..c722ed6140c2ad96296146288e9ea1d78c841734 --- /dev/null +++ b/testcase/fate-swr-resample_exact-fltp-8000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170531-838886956 +# @用例名称: fate-swr-resample_exact-fltp-8000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-8000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-8000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-fltp-8000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-fltp-8000-96000.sh b/testcase/fate-swr-resample_exact-fltp-8000-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..d162979881d0e8aa8799deae875722ce7d567fb3 --- /dev/null +++ b/testcase/fate-swr-resample_exact-fltp-8000-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170531-925868434 +# @用例名称: fate-swr-resample_exact-fltp-8000-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-8000-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-8000-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-fltp-8000-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-fltp-96000-2626.sh b/testcase/fate-swr-resample_exact-fltp-96000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..7eb2d04853d41835def369b1cad623fc130f926e --- /dev/null +++ b/testcase/fate-swr-resample_exact-fltp-96000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170532-005507195 +# @用例名称: fate-swr-resample_exact-fltp-96000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-96000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-96000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-fltp-96000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-fltp-96000-44100.sh b/testcase/fate-swr-resample_exact-fltp-96000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..3da888fd16f3cf89a80b481e565115fe1b24ce9d --- /dev/null +++ b/testcase/fate-swr-resample_exact-fltp-96000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170532-094072271 +# @用例名称: fate-swr-resample_exact-fltp-96000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-96000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-96000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-fltp-96000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-fltp-96000-48000.sh b/testcase/fate-swr-resample_exact-fltp-96000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..8eb2d28dced5547f42ed554c1b2fdd431e1867e8 --- /dev/null +++ b/testcase/fate-swr-resample_exact-fltp-96000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170532-180979690 +# @用例名称: fate-swr-resample_exact-fltp-96000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-96000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-96000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-fltp-96000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-fltp-96000-8000.sh b/testcase/fate-swr-resample_exact-fltp-96000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..663b81ab02546f254f304051e05d807433ada35a --- /dev/null +++ b/testcase/fate-swr-resample_exact-fltp-96000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170532-272638236 +# @用例名称: fate-swr-resample_exact-fltp-96000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-96000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-fltp-96000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-fltp-96000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s16p-2626-44100.sh b/testcase/fate-swr-resample_exact-s16p-2626-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..8ce1dad2c54891e15c373fceac6f099c9049e9eb --- /dev/null +++ b/testcase/fate-swr-resample_exact-s16p-2626-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170532-362930488 +# @用例名称: fate-swr-resample_exact-s16p-2626-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-2626-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-2626-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s16p-2626-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s16p-2626-48000.sh b/testcase/fate-swr-resample_exact-s16p-2626-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..00f1b24f2403e8c3b36bf0216544d9591f2307a5 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s16p-2626-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170532-446450923 +# @用例名称: fate-swr-resample_exact-s16p-2626-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-2626-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-2626-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s16p-2626-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s16p-2626-8000.sh b/testcase/fate-swr-resample_exact-s16p-2626-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..96ef9b5b44355e997f84d0b360708c24dd0d6588 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s16p-2626-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170532-539141788 +# @用例名称: fate-swr-resample_exact-s16p-2626-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-2626-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-2626-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s16p-2626-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s16p-2626-96000.sh b/testcase/fate-swr-resample_exact-s16p-2626-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..025cb8bd74d28e9ba9d22b95bca85517fc4f284d --- /dev/null +++ b/testcase/fate-swr-resample_exact-s16p-2626-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170532-631205746 +# @用例名称: fate-swr-resample_exact-s16p-2626-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-2626-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-2626-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s16p-2626-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s16p-44100-2626.sh b/testcase/fate-swr-resample_exact-s16p-44100-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..8e0312bf4881133c6c5cd3e3342e81aa1ed7ad34 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s16p-44100-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170532-725133548 +# @用例名称: fate-swr-resample_exact-s16p-44100-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-44100-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-44100-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s16p-44100-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s16p-44100-48000.sh b/testcase/fate-swr-resample_exact-s16p-44100-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..3817c810f5fe0765ddd6438e6ea60959bee0c3bf --- /dev/null +++ b/testcase/fate-swr-resample_exact-s16p-44100-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170532-814601467 +# @用例名称: fate-swr-resample_exact-s16p-44100-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-44100-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-44100-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s16p-44100-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s16p-44100-8000.sh b/testcase/fate-swr-resample_exact-s16p-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..d5fd4fbbae5bcc6e155a70c6db569c4c95afa3e1 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s16p-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170532-906898149 +# @用例名称: fate-swr-resample_exact-s16p-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s16p-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s16p-44100-96000.sh b/testcase/fate-swr-resample_exact-s16p-44100-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..75d57ea745a8f7458329979400f4ccd965305e04 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s16p-44100-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170532-996178372 +# @用例名称: fate-swr-resample_exact-s16p-44100-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-44100-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-44100-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s16p-44100-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s16p-48000-2626.sh b/testcase/fate-swr-resample_exact-s16p-48000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..653b1c488acebbec68617a9801b843a705ca7e59 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s16p-48000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170533-090156472 +# @用例名称: fate-swr-resample_exact-s16p-48000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-48000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-48000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s16p-48000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s16p-48000-44100.sh b/testcase/fate-swr-resample_exact-s16p-48000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..aa9b1fc802256b77f81b3fff13d774c00516e962 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s16p-48000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170533-252958735 +# @用例名称: fate-swr-resample_exact-s16p-48000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-48000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-48000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s16p-48000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s16p-48000-8000.sh b/testcase/fate-swr-resample_exact-s16p-48000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..86700bf916fad4b5b224fe064b809af308d4c094 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s16p-48000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170533-344919745 +# @用例名称: fate-swr-resample_exact-s16p-48000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-48000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-48000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s16p-48000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s16p-48000-96000.sh b/testcase/fate-swr-resample_exact-s16p-48000-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..1a9e73830f107530bfff56d73c37030f19aa2332 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s16p-48000-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170533-430468581 +# @用例名称: fate-swr-resample_exact-s16p-48000-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-48000-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-48000-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s16p-48000-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s16p-8000-2626.sh b/testcase/fate-swr-resample_exact-s16p-8000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..3e0b3a21cdadd89ff04fd1b716b2cf7bc78c5e7a --- /dev/null +++ b/testcase/fate-swr-resample_exact-s16p-8000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170533-591419210 +# @用例名称: fate-swr-resample_exact-s16p-8000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-8000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-8000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s16p-8000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s16p-8000-44100.sh b/testcase/fate-swr-resample_exact-s16p-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..3c64d01f648bfa8b560a602302d470fa723c81ba --- /dev/null +++ b/testcase/fate-swr-resample_exact-s16p-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170533-678174541 +# @用例名称: fate-swr-resample_exact-s16p-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s16p-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s16p-8000-48000.sh b/testcase/fate-swr-resample_exact-s16p-8000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..70289c9c4571aaba5b43e6229694fd586e8e4775 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s16p-8000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170533-764946523 +# @用例名称: fate-swr-resample_exact-s16p-8000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-8000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-8000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s16p-8000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s16p-8000-96000.sh b/testcase/fate-swr-resample_exact-s16p-8000-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..3145ab24b6cba0cd9a6cb82b436bcb54d72288ab --- /dev/null +++ b/testcase/fate-swr-resample_exact-s16p-8000-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170533-937894638 +# @用例名称: fate-swr-resample_exact-s16p-8000-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-8000-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-8000-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s16p-8000-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s16p-96000-2626.sh b/testcase/fate-swr-resample_exact-s16p-96000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..1fd23c83e1899a1872194131d458d57cccf70ad9 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s16p-96000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170534-340918838 +# @用例名称: fate-swr-resample_exact-s16p-96000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-96000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-96000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s16p-96000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s16p-96000-44100.sh b/testcase/fate-swr-resample_exact-s16p-96000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..d666c1de574e89b0c709ddb175d6cd301d26db09 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s16p-96000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170534-431029094 +# @用例名称: fate-swr-resample_exact-s16p-96000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-96000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-96000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s16p-96000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s16p-96000-48000.sh b/testcase/fate-swr-resample_exact-s16p-96000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..0413485a9d595eed46ba3d8ba9e3c3928d231721 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s16p-96000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170534-638215088 +# @用例名称: fate-swr-resample_exact-s16p-96000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-96000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-96000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s16p-96000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s16p-96000-8000.sh b/testcase/fate-swr-resample_exact-s16p-96000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..143ce8202150d442f20b12005655707e31cb7061 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s16p-96000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170534-886022958 +# @用例名称: fate-swr-resample_exact-s16p-96000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-96000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s16p-96000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s16p-96000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s32p-2626-44100.sh b/testcase/fate-swr-resample_exact-s32p-2626-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..8d01d1ac553b1c7bc0f62617950b2fd693938d69 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s32p-2626-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170534-976236521 +# @用例名称: fate-swr-resample_exact-s32p-2626-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-2626-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-2626-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s32p-2626-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s32p-2626-48000.sh b/testcase/fate-swr-resample_exact-s32p-2626-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..fdc7f723d55e82c187c433c7f9b9ce909351954c --- /dev/null +++ b/testcase/fate-swr-resample_exact-s32p-2626-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170535-067383497 +# @用例名称: fate-swr-resample_exact-s32p-2626-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-2626-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-2626-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s32p-2626-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s32p-2626-8000.sh b/testcase/fate-swr-resample_exact-s32p-2626-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..da545fbafbff0f37802264acdd4aebea919cfa34 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s32p-2626-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170535-159816077 +# @用例名称: fate-swr-resample_exact-s32p-2626-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-2626-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-2626-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s32p-2626-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s32p-2626-96000.sh b/testcase/fate-swr-resample_exact-s32p-2626-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..8fc20a268683c49130edbabffd89b425844236dd --- /dev/null +++ b/testcase/fate-swr-resample_exact-s32p-2626-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170535-251900655 +# @用例名称: fate-swr-resample_exact-s32p-2626-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-2626-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-2626-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s32p-2626-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s32p-44100-2626.sh b/testcase/fate-swr-resample_exact-s32p-44100-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..dcd29324a95ba572e07c8859379f16d4c8a60be0 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s32p-44100-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170535-341698707 +# @用例名称: fate-swr-resample_exact-s32p-44100-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-44100-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-44100-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s32p-44100-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s32p-44100-48000.sh b/testcase/fate-swr-resample_exact-s32p-44100-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..d1fe6224520dc5be700fbf8c91c7032756ae2d87 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s32p-44100-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170535-432459160 +# @用例名称: fate-swr-resample_exact-s32p-44100-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-44100-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-44100-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s32p-44100-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s32p-44100-8000.sh b/testcase/fate-swr-resample_exact-s32p-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..b15f517a717c2d84aa10c765a6eac0716b8d3ad0 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s32p-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170535-519171413 +# @用例名称: fate-swr-resample_exact-s32p-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s32p-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s32p-44100-96000.sh b/testcase/fate-swr-resample_exact-s32p-44100-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..d7dc94713683f220b2c14f9008b6394ff0b7228a --- /dev/null +++ b/testcase/fate-swr-resample_exact-s32p-44100-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170535-609009464 +# @用例名称: fate-swr-resample_exact-s32p-44100-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-44100-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-44100-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s32p-44100-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s32p-48000-2626.sh b/testcase/fate-swr-resample_exact-s32p-48000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..8a432a586eff1199de5a47b8de11211b108f1c8a --- /dev/null +++ b/testcase/fate-swr-resample_exact-s32p-48000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170535-698781807 +# @用例名称: fate-swr-resample_exact-s32p-48000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-48000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-48000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s32p-48000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s32p-48000-44100.sh b/testcase/fate-swr-resample_exact-s32p-48000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..adf86999f3b17da7c72b8992c399f3e083929480 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s32p-48000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170535-789245246 +# @用例名称: fate-swr-resample_exact-s32p-48000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-48000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-48000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s32p-48000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s32p-48000-8000.sh b/testcase/fate-swr-resample_exact-s32p-48000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..1b0107cb598da130d3427a4dc4b07de7ede6eecd --- /dev/null +++ b/testcase/fate-swr-resample_exact-s32p-48000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170535-877490698 +# @用例名称: fate-swr-resample_exact-s32p-48000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-48000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-48000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s32p-48000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s32p-48000-96000.sh b/testcase/fate-swr-resample_exact-s32p-48000-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..70a372aca0830387ece93032817bdd99413c6dc0 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s32p-48000-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170535-963814558 +# @用例名称: fate-swr-resample_exact-s32p-48000-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-48000-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-48000-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s32p-48000-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s32p-8000-2626.sh b/testcase/fate-swr-resample_exact-s32p-8000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..a570b5e6a6193fcfdfc9269546374c758ebc53f8 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s32p-8000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170536-054514832 +# @用例名称: fate-swr-resample_exact-s32p-8000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-8000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-8000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s32p-8000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s32p-8000-44100.sh b/testcase/fate-swr-resample_exact-s32p-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..a4bf4fd7f5512d81c933f32482c190da7c3e575e --- /dev/null +++ b/testcase/fate-swr-resample_exact-s32p-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170536-144062590 +# @用例名称: fate-swr-resample_exact-s32p-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s32p-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s32p-8000-48000.sh b/testcase/fate-swr-resample_exact-s32p-8000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..bfba7212afee8ff17bf62624aedd988998135eb7 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s32p-8000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170536-232263993 +# @用例名称: fate-swr-resample_exact-s32p-8000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-8000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-8000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s32p-8000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s32p-8000-96000.sh b/testcase/fate-swr-resample_exact-s32p-8000-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..fb439b942a63cfd1172c68c2d25068c95e465980 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s32p-8000-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170536-321016366 +# @用例名称: fate-swr-resample_exact-s32p-8000-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-8000-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-8000-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s32p-8000-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s32p-96000-2626.sh b/testcase/fate-swr-resample_exact-s32p-96000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..ae2f1a2247223848f26c1f41119799f4f248f199 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s32p-96000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170536-411892076 +# @用例名称: fate-swr-resample_exact-s32p-96000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-96000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-96000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s32p-96000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s32p-96000-44100.sh b/testcase/fate-swr-resample_exact-s32p-96000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..3fae27a036a03b2cb916cdb01bbadb2123bb429b --- /dev/null +++ b/testcase/fate-swr-resample_exact-s32p-96000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170536-500855035 +# @用例名称: fate-swr-resample_exact-s32p-96000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-96000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-96000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s32p-96000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s32p-96000-48000.sh b/testcase/fate-swr-resample_exact-s32p-96000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..c77459402b5e63e3fa44479dc1e129e8afe87d51 --- /dev/null +++ b/testcase/fate-swr-resample_exact-s32p-96000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170536-590748066 +# @用例名称: fate-swr-resample_exact-s32p-96000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-96000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-96000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s32p-96000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact-s32p-96000-8000.sh b/testcase/fate-swr-resample_exact-s32p-96000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..93da319314d13b929cb1c76e83820a91c07017cb --- /dev/null +++ b/testcase/fate-swr-resample_exact-s32p-96000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170536-684616618 +# @用例名称: fate-swr-resample_exact-s32p-96000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-96000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact-s32p-96000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact-s32p-96000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_async-dblp-44100-48000.sh b/testcase/fate-swr-resample_exact_async-dblp-44100-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..d1144f1345fb6609c74985f716c46a891bb42acc --- /dev/null +++ b/testcase/fate-swr-resample_exact_async-dblp-44100-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170536-775708366 +# @用例名称: fate-swr-resample_exact_async-dblp-44100-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-dblp-44100-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-dblp-44100-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_async-dblp-44100-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_async-dblp-44100-8000.sh b/testcase/fate-swr-resample_exact_async-dblp-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..f1bf83e571374d818b6a6bc43d7c419b0788c5d5 --- /dev/null +++ b/testcase/fate-swr-resample_exact_async-dblp-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170536-859556694 +# @用例名称: fate-swr-resample_exact_async-dblp-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-dblp-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-dblp-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_async-dblp-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_async-dblp-48000-44100.sh b/testcase/fate-swr-resample_exact_async-dblp-48000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..25836e9f1cc4ec650e8c813506a88bb4a112510b --- /dev/null +++ b/testcase/fate-swr-resample_exact_async-dblp-48000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170536-938063367 +# @用例名称: fate-swr-resample_exact_async-dblp-48000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-dblp-48000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-dblp-48000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_async-dblp-48000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_async-dblp-48000-8000.sh b/testcase/fate-swr-resample_exact_async-dblp-48000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..8a621c422d30b91281a2f21681097b0a377ecb12 --- /dev/null +++ b/testcase/fate-swr-resample_exact_async-dblp-48000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170537-028661034 +# @用例名称: fate-swr-resample_exact_async-dblp-48000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-dblp-48000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-dblp-48000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_async-dblp-48000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_async-dblp-8000-44100.sh b/testcase/fate-swr-resample_exact_async-dblp-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..8d27df8a0ed8185df7b68a45dc8d563aaa94a5fe --- /dev/null +++ b/testcase/fate-swr-resample_exact_async-dblp-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170537-119839669 +# @用例名称: fate-swr-resample_exact_async-dblp-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-dblp-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-dblp-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_async-dblp-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_async-dblp-8000-48000.sh b/testcase/fate-swr-resample_exact_async-dblp-8000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..d47522465a73b79206b6ef7e0f1b1dcdd597b05b --- /dev/null +++ b/testcase/fate-swr-resample_exact_async-dblp-8000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170537-209001723 +# @用例名称: fate-swr-resample_exact_async-dblp-8000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-dblp-8000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-dblp-8000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_async-dblp-8000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_async-fltp-44100-48000.sh b/testcase/fate-swr-resample_exact_async-fltp-44100-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..8ab11de8bdeaf67e3c3d6cef6323e42104052d0d --- /dev/null +++ b/testcase/fate-swr-resample_exact_async-fltp-44100-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170537-298507412 +# @用例名称: fate-swr-resample_exact_async-fltp-44100-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-fltp-44100-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-fltp-44100-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_async-fltp-44100-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_async-fltp-44100-8000.sh b/testcase/fate-swr-resample_exact_async-fltp-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..d2f377e87f1a733c7f5c528b80e52802dfe20af9 --- /dev/null +++ b/testcase/fate-swr-resample_exact_async-fltp-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170537-387564038 +# @用例名称: fate-swr-resample_exact_async-fltp-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-fltp-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-fltp-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_async-fltp-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_async-fltp-48000-44100.sh b/testcase/fate-swr-resample_exact_async-fltp-48000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..ce3d2d63278d8abd15ada9d8cf97b93af6af16a1 --- /dev/null +++ b/testcase/fate-swr-resample_exact_async-fltp-48000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170537-478461289 +# @用例名称: fate-swr-resample_exact_async-fltp-48000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-fltp-48000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-fltp-48000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_async-fltp-48000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_async-fltp-48000-8000.sh b/testcase/fate-swr-resample_exact_async-fltp-48000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..c4accacde0bd2d79e7469d7958c10e4570b69994 --- /dev/null +++ b/testcase/fate-swr-resample_exact_async-fltp-48000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170537-569077085 +# @用例名称: fate-swr-resample_exact_async-fltp-48000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-fltp-48000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-fltp-48000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_async-fltp-48000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_async-fltp-8000-44100.sh b/testcase/fate-swr-resample_exact_async-fltp-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..a7afee1b3571f3e4c8bc043ca8ce7548e1c44c67 --- /dev/null +++ b/testcase/fate-swr-resample_exact_async-fltp-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170537-660723241 +# @用例名称: fate-swr-resample_exact_async-fltp-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-fltp-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-fltp-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_async-fltp-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_async-fltp-8000-48000.sh b/testcase/fate-swr-resample_exact_async-fltp-8000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..5c593710106e775a077d66d126feddb62d72c3df --- /dev/null +++ b/testcase/fate-swr-resample_exact_async-fltp-8000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170537-749448204 +# @用例名称: fate-swr-resample_exact_async-fltp-8000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-fltp-8000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-fltp-8000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_async-fltp-8000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_async-s16p-44100-48000.sh b/testcase/fate-swr-resample_exact_async-s16p-44100-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..ae07931b5886b5b2e87df4ba9e9e860ecd0ee90b --- /dev/null +++ b/testcase/fate-swr-resample_exact_async-s16p-44100-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170537-836065778 +# @用例名称: fate-swr-resample_exact_async-s16p-44100-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-s16p-44100-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-s16p-44100-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_async-s16p-44100-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_async-s16p-44100-8000.sh b/testcase/fate-swr-resample_exact_async-s16p-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..fd04b87cdf81d3877baa3090e0a470efcf4c7ef2 --- /dev/null +++ b/testcase/fate-swr-resample_exact_async-s16p-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170537-928003269 +# @用例名称: fate-swr-resample_exact_async-s16p-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-s16p-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-s16p-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_async-s16p-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_async-s16p-48000-44100.sh b/testcase/fate-swr-resample_exact_async-s16p-48000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..f954c1a054653168e870a60e59cf2c624a6918a5 --- /dev/null +++ b/testcase/fate-swr-resample_exact_async-s16p-48000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170538-018685433 +# @用例名称: fate-swr-resample_exact_async-s16p-48000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-s16p-48000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-s16p-48000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_async-s16p-48000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_async-s16p-48000-8000.sh b/testcase/fate-swr-resample_exact_async-s16p-48000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..399b61129415e5a0424e77866c4a0514beed3ff8 --- /dev/null +++ b/testcase/fate-swr-resample_exact_async-s16p-48000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170538-110248011 +# @用例名称: fate-swr-resample_exact_async-s16p-48000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-s16p-48000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-s16p-48000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_async-s16p-48000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_async-s16p-8000-44100.sh b/testcase/fate-swr-resample_exact_async-s16p-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..c9bc6db1eb2fa18406e848366602dc422e2d55f5 --- /dev/null +++ b/testcase/fate-swr-resample_exact_async-s16p-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170538-202561144 +# @用例名称: fate-swr-resample_exact_async-s16p-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-s16p-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-s16p-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_async-s16p-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_async-s16p-8000-48000.sh b/testcase/fate-swr-resample_exact_async-s16p-8000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..9caf75a3cdbd0256b4d7ef9c5a3a5e1450735a33 --- /dev/null +++ b/testcase/fate-swr-resample_exact_async-s16p-8000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170538-294797738 +# @用例名称: fate-swr-resample_exact_async-s16p-8000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-s16p-8000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-s16p-8000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_async-s16p-8000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_async-s32p-44100-48000.sh b/testcase/fate-swr-resample_exact_async-s32p-44100-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..1f70c7b9058b6f1d0a87350600d2d9414db43f07 --- /dev/null +++ b/testcase/fate-swr-resample_exact_async-s32p-44100-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170538-389456576 +# @用例名称: fate-swr-resample_exact_async-s32p-44100-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-s32p-44100-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-s32p-44100-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_async-s32p-44100-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_async-s32p-44100-8000.sh b/testcase/fate-swr-resample_exact_async-s32p-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..af70a316dafd1555f7e5f7f98120f42e365348d4 --- /dev/null +++ b/testcase/fate-swr-resample_exact_async-s32p-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170538-482153570 +# @用例名称: fate-swr-resample_exact_async-s32p-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-s32p-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-s32p-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_async-s32p-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_async-s32p-48000-44100.sh b/testcase/fate-swr-resample_exact_async-s32p-48000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..6d9b0736cf3b1332ca4488f19dde9506b061f68a --- /dev/null +++ b/testcase/fate-swr-resample_exact_async-s32p-48000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170538-572814766 +# @用例名称: fate-swr-resample_exact_async-s32p-48000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-s32p-48000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-s32p-48000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_async-s32p-48000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_async-s32p-48000-8000.sh b/testcase/fate-swr-resample_exact_async-s32p-48000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..aafc74bcf4b8608e389ab0b5b2149973e05884df --- /dev/null +++ b/testcase/fate-swr-resample_exact_async-s32p-48000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170538-659360172 +# @用例名称: fate-swr-resample_exact_async-s32p-48000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-s32p-48000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-s32p-48000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_async-s32p-48000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_async-s32p-8000-44100.sh b/testcase/fate-swr-resample_exact_async-s32p-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..be210e8415a7782670b186132dd66aea34711570 --- /dev/null +++ b/testcase/fate-swr-resample_exact_async-s32p-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170538-748278392 +# @用例名称: fate-swr-resample_exact_async-s32p-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-s32p-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-s32p-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_async-s32p-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_async-s32p-8000-48000.sh b/testcase/fate-swr-resample_exact_async-s32p-8000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..f5ea6e6f62d29685d11ff4432accc8bb06146147 --- /dev/null +++ b/testcase/fate-swr-resample_exact_async-s32p-8000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170538-839205361 +# @用例名称: fate-swr-resample_exact_async-s32p-8000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-s32p-8000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_async-s32p-8000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_async-s32p-8000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-dblp-2626-44100.sh b/testcase/fate-swr-resample_exact_lin-dblp-2626-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..0d49779021162b615423f6e1383e4bed2a01bb45 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-dblp-2626-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170538-927012093 +# @用例名称: fate-swr-resample_exact_lin-dblp-2626-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-2626-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-2626-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-dblp-2626-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-dblp-2626-48000.sh b/testcase/fate-swr-resample_exact_lin-dblp-2626-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..3503d36cb846f77356b180a97b3b2991e777127b --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-dblp-2626-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170539-019501471 +# @用例名称: fate-swr-resample_exact_lin-dblp-2626-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-2626-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-2626-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-dblp-2626-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-dblp-2626-8000.sh b/testcase/fate-swr-resample_exact_lin-dblp-2626-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..8faaac6a7a6f8d95a990265a1f1d20e7dcc635c5 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-dblp-2626-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170539-112993592 +# @用例名称: fate-swr-resample_exact_lin-dblp-2626-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-2626-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-2626-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-dblp-2626-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-dblp-2626-96000.sh b/testcase/fate-swr-resample_exact_lin-dblp-2626-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..d0a8529444472fac763838bb038d9049794579c4 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-dblp-2626-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170539-206182078 +# @用例名称: fate-swr-resample_exact_lin-dblp-2626-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-2626-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-2626-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-dblp-2626-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-dblp-44100-2626.sh b/testcase/fate-swr-resample_exact_lin-dblp-44100-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..0d08b573c29839204d05e0dcac7cb00aa9594c70 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-dblp-44100-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170539-296528608 +# @用例名称: fate-swr-resample_exact_lin-dblp-44100-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-44100-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-44100-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-dblp-44100-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-dblp-44100-48000.sh b/testcase/fate-swr-resample_exact_lin-dblp-44100-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..ea999ef0561e19c290628de31b97ab99ea823c51 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-dblp-44100-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170539-387409440 +# @用例名称: fate-swr-resample_exact_lin-dblp-44100-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-44100-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-44100-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-dblp-44100-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-dblp-44100-8000.sh b/testcase/fate-swr-resample_exact_lin-dblp-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..5f870fa6917dbe4193da456461d9cd6265cda030 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-dblp-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170539-476482976 +# @用例名称: fate-swr-resample_exact_lin-dblp-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-dblp-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-dblp-44100-96000.sh b/testcase/fate-swr-resample_exact_lin-dblp-44100-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..6b7bc81aabacee4b132da6d88a2317295fcb26ca --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-dblp-44100-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170539-571691482 +# @用例名称: fate-swr-resample_exact_lin-dblp-44100-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-44100-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-44100-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-dblp-44100-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-dblp-48000-2626.sh b/testcase/fate-swr-resample_exact_lin-dblp-48000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..8385d1351edee579f967f44170261f74ce5ea6b2 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-dblp-48000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170539-661372807 +# @用例名称: fate-swr-resample_exact_lin-dblp-48000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-48000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-48000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-dblp-48000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-dblp-48000-44100.sh b/testcase/fate-swr-resample_exact_lin-dblp-48000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..4f2645c0ef2ef47242159f201ea1e3bfa02b55b1 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-dblp-48000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170539-752564341 +# @用例名称: fate-swr-resample_exact_lin-dblp-48000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-48000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-48000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-dblp-48000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-dblp-48000-8000.sh b/testcase/fate-swr-resample_exact_lin-dblp-48000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..cb87afbcfc064d0487140e2bbc082470a2287cb5 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-dblp-48000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170539-844074850 +# @用例名称: fate-swr-resample_exact_lin-dblp-48000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-48000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-48000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-dblp-48000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-dblp-48000-96000.sh b/testcase/fate-swr-resample_exact_lin-dblp-48000-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..a4c1f3a872954af1e74eb1fb9dce786b4a929759 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-dblp-48000-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170539-934642968 +# @用例名称: fate-swr-resample_exact_lin-dblp-48000-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-48000-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-48000-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-dblp-48000-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-dblp-8000-2626.sh b/testcase/fate-swr-resample_exact_lin-dblp-8000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..ad44ddde480a4d8b5c809abbab4a97390d44c481 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-dblp-8000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170540-024546117 +# @用例名称: fate-swr-resample_exact_lin-dblp-8000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-8000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-8000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-dblp-8000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-dblp-8000-44100.sh b/testcase/fate-swr-resample_exact_lin-dblp-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..150152fcafb374f6e8784773180f51acfde20478 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-dblp-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170540-117491078 +# @用例名称: fate-swr-resample_exact_lin-dblp-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-dblp-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-dblp-8000-48000.sh b/testcase/fate-swr-resample_exact_lin-dblp-8000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..076491971312ce49e9d7b4817e4b3bffb0289486 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-dblp-8000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170540-210250572 +# @用例名称: fate-swr-resample_exact_lin-dblp-8000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-8000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-8000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-dblp-8000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-dblp-8000-96000.sh b/testcase/fate-swr-resample_exact_lin-dblp-8000-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..b35bd2b83def07b646aa55a491410751a0345059 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-dblp-8000-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170540-302742671 +# @用例名称: fate-swr-resample_exact_lin-dblp-8000-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-8000-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-8000-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-dblp-8000-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-dblp-96000-2626.sh b/testcase/fate-swr-resample_exact_lin-dblp-96000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..bd91ebcf0ef1491650bd495ae240eacb461aac65 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-dblp-96000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170540-391934485 +# @用例名称: fate-swr-resample_exact_lin-dblp-96000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-96000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-96000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-dblp-96000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-dblp-96000-44100.sh b/testcase/fate-swr-resample_exact_lin-dblp-96000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..da76bebd2c29861dcb001a35af74bab7323a4ac6 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-dblp-96000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170540-482585691 +# @用例名称: fate-swr-resample_exact_lin-dblp-96000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-96000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-96000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-dblp-96000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-dblp-96000-48000.sh b/testcase/fate-swr-resample_exact_lin-dblp-96000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..ff9ce66beb9ea28fa8c94816059e45270b978ae8 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-dblp-96000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170540-577464674 +# @用例名称: fate-swr-resample_exact_lin-dblp-96000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-96000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-96000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-dblp-96000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-dblp-96000-8000.sh b/testcase/fate-swr-resample_exact_lin-dblp-96000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..f467724c5c92a5527b47c7caf499a305dc54f3b6 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-dblp-96000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170540-669750757 +# @用例名称: fate-swr-resample_exact_lin-dblp-96000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-96000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-dblp-96000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-dblp-96000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-fltp-2626-44100.sh b/testcase/fate-swr-resample_exact_lin-fltp-2626-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..50cea1b12873058ec87cb1902013040a7f11de3b --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-fltp-2626-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170540-761012070 +# @用例名称: fate-swr-resample_exact_lin-fltp-2626-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-2626-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-2626-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-fltp-2626-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-fltp-2626-48000.sh b/testcase/fate-swr-resample_exact_lin-fltp-2626-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..ab3d6498382366003f72d083fedaaffbddf36ec0 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-fltp-2626-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170540-853092928 +# @用例名称: fate-swr-resample_exact_lin-fltp-2626-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-2626-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-2626-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-fltp-2626-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-fltp-2626-8000.sh b/testcase/fate-swr-resample_exact_lin-fltp-2626-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..5318da3e493b42295cf56f2a2e9ad87a1526b8af --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-fltp-2626-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170540-943444679 +# @用例名称: fate-swr-resample_exact_lin-fltp-2626-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-2626-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-2626-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-fltp-2626-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-fltp-2626-96000.sh b/testcase/fate-swr-resample_exact_lin-fltp-2626-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..4b656f8d1bee2afdac9359dc6b1874bd7131a9f5 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-fltp-2626-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170541-034000407 +# @用例名称: fate-swr-resample_exact_lin-fltp-2626-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-2626-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-2626-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-fltp-2626-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-fltp-44100-2626.sh b/testcase/fate-swr-resample_exact_lin-fltp-44100-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..2753e8f4dc951cd0da97a1dd2318fb8cdd1e64be --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-fltp-44100-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170541-127141803 +# @用例名称: fate-swr-resample_exact_lin-fltp-44100-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-44100-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-44100-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-fltp-44100-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-fltp-44100-48000.sh b/testcase/fate-swr-resample_exact_lin-fltp-44100-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..0b5a504d9ac83b84ee324f7d050fd9617fd0b636 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-fltp-44100-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170541-217212280 +# @用例名称: fate-swr-resample_exact_lin-fltp-44100-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-44100-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-44100-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-fltp-44100-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-fltp-44100-8000.sh b/testcase/fate-swr-resample_exact_lin-fltp-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..e22f79d57bc1593c2de4dcc54b4fde14a6a728eb --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-fltp-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170541-303842424 +# @用例名称: fate-swr-resample_exact_lin-fltp-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-fltp-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-fltp-44100-96000.sh b/testcase/fate-swr-resample_exact_lin-fltp-44100-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..23893b580c34d071ce88d5a4ca86c84ebd93ea58 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-fltp-44100-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170541-388028686 +# @用例名称: fate-swr-resample_exact_lin-fltp-44100-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-44100-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-44100-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-fltp-44100-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-fltp-48000-2626.sh b/testcase/fate-swr-resample_exact_lin-fltp-48000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..ac150189274deb2965135ce29c700749f96ae20e --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-fltp-48000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170541-476370237 +# @用例名称: fate-swr-resample_exact_lin-fltp-48000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-48000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-48000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-fltp-48000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-fltp-48000-44100.sh b/testcase/fate-swr-resample_exact_lin-fltp-48000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..8fe764418e0fe8e1536c85b3beb8adca607eaa54 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-fltp-48000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170541-568686470 +# @用例名称: fate-swr-resample_exact_lin-fltp-48000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-48000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-48000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-fltp-48000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-fltp-48000-8000.sh b/testcase/fate-swr-resample_exact_lin-fltp-48000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..79f25a4c4129473e981c75d21105d92f1728f02b --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-fltp-48000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170541-656935882 +# @用例名称: fate-swr-resample_exact_lin-fltp-48000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-48000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-48000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-fltp-48000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-fltp-48000-96000.sh b/testcase/fate-swr-resample_exact_lin-fltp-48000-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..bdb895f158b73056b641b536393e778a85a8fc67 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-fltp-48000-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170541-747538418 +# @用例名称: fate-swr-resample_exact_lin-fltp-48000-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-48000-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-48000-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-fltp-48000-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-fltp-8000-2626.sh b/testcase/fate-swr-resample_exact_lin-fltp-8000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..17792486581414ad89410d679f0d6513a4ca1c45 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-fltp-8000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170541-836835140 +# @用例名称: fate-swr-resample_exact_lin-fltp-8000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-8000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-8000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-fltp-8000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-fltp-8000-44100.sh b/testcase/fate-swr-resample_exact_lin-fltp-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..2cbeedcd3473dd87f31fe4fb62fd66440f0bf13e --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-fltp-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170541-927169222 +# @用例名称: fate-swr-resample_exact_lin-fltp-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-fltp-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-fltp-8000-48000.sh b/testcase/fate-swr-resample_exact_lin-fltp-8000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..c1c379faa104e93a9468cbdc7b98b14ca110f51b --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-fltp-8000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170542-015299537 +# @用例名称: fate-swr-resample_exact_lin-fltp-8000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-8000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-8000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-fltp-8000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-fltp-8000-96000.sh b/testcase/fate-swr-resample_exact_lin-fltp-8000-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..9ea8a6aee7eb3b874d1408601ec8f806024e735f --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-fltp-8000-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170542-109077221 +# @用例名称: fate-swr-resample_exact_lin-fltp-8000-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-8000-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-8000-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-fltp-8000-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-fltp-96000-2626.sh b/testcase/fate-swr-resample_exact_lin-fltp-96000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..6eeee066bd2091854f9c2553df68ac0767c28fa3 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-fltp-96000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170542-202599100 +# @用例名称: fate-swr-resample_exact_lin-fltp-96000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-96000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-96000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-fltp-96000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-fltp-96000-44100.sh b/testcase/fate-swr-resample_exact_lin-fltp-96000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..b6da94598f100497a88f17f1cd274f4b90bfec9c --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-fltp-96000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170542-295819445 +# @用例名称: fate-swr-resample_exact_lin-fltp-96000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-96000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-96000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-fltp-96000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-fltp-96000-48000.sh b/testcase/fate-swr-resample_exact_lin-fltp-96000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..45358e67fbbd8cf8b53879113e3eb4207b5c5bba --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-fltp-96000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170542-386482131 +# @用例名称: fate-swr-resample_exact_lin-fltp-96000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-96000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-96000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-fltp-96000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-fltp-96000-8000.sh b/testcase/fate-swr-resample_exact_lin-fltp-96000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..e7a9a82f052afe50594c8f5313bc02a2ff4251a3 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-fltp-96000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170542-471209083 +# @用例名称: fate-swr-resample_exact_lin-fltp-96000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-96000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-fltp-96000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-fltp-96000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s16p-2626-44100.sh b/testcase/fate-swr-resample_exact_lin-s16p-2626-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..ab7295fd9b5eb94f27c1c2733beaee9ec2127aeb --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s16p-2626-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170542-555632169 +# @用例名称: fate-swr-resample_exact_lin-s16p-2626-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-2626-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-2626-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s16p-2626-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s16p-2626-48000.sh b/testcase/fate-swr-resample_exact_lin-s16p-2626-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..eada1eaa7f6701fc0396e1b6fa9e049d3b7f3d6b --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s16p-2626-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170542-651025902 +# @用例名称: fate-swr-resample_exact_lin-s16p-2626-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-2626-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-2626-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s16p-2626-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s16p-2626-8000.sh b/testcase/fate-swr-resample_exact_lin-s16p-2626-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..5c23b0d5745678c633f42708b6ec270e8cce1c94 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s16p-2626-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170542-744099691 +# @用例名称: fate-swr-resample_exact_lin-s16p-2626-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-2626-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-2626-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s16p-2626-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s16p-2626-96000.sh b/testcase/fate-swr-resample_exact_lin-s16p-2626-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..4ac7eb3b4cf75dd86393c8fa9605dcde0402061d --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s16p-2626-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170542-834588919 +# @用例名称: fate-swr-resample_exact_lin-s16p-2626-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-2626-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-2626-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s16p-2626-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s16p-44100-2626.sh b/testcase/fate-swr-resample_exact_lin-s16p-44100-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..25ed36615969ed936a1ea9dbc7f371ea201a2d25 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s16p-44100-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170542-928376472 +# @用例名称: fate-swr-resample_exact_lin-s16p-44100-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-44100-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-44100-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s16p-44100-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s16p-44100-48000.sh b/testcase/fate-swr-resample_exact_lin-s16p-44100-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..34764b785322c2a38674a126dcc5c332352f3332 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s16p-44100-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170543-019971990 +# @用例名称: fate-swr-resample_exact_lin-s16p-44100-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-44100-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-44100-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s16p-44100-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s16p-44100-8000.sh b/testcase/fate-swr-resample_exact_lin-s16p-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..ac72dd1053d75311dc5f8ccfc2ce7be9a127b3aa --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s16p-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170543-112205614 +# @用例名称: fate-swr-resample_exact_lin-s16p-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s16p-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s16p-44100-96000.sh b/testcase/fate-swr-resample_exact_lin-s16p-44100-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..d062effd8a9536b2ae9c2201ab30835c05cdb31f --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s16p-44100-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170543-203690683 +# @用例名称: fate-swr-resample_exact_lin-s16p-44100-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-44100-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-44100-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s16p-44100-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s16p-48000-2626.sh b/testcase/fate-swr-resample_exact_lin-s16p-48000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..2a134507a5d17dab5956b513a90908ef960c3637 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s16p-48000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170543-298255833 +# @用例名称: fate-swr-resample_exact_lin-s16p-48000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-48000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-48000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s16p-48000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s16p-48000-44100.sh b/testcase/fate-swr-resample_exact_lin-s16p-48000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..dcad7c06c7a9cd450aedd0932c64d418bb2e90ee --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s16p-48000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170543-391591516 +# @用例名称: fate-swr-resample_exact_lin-s16p-48000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-48000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-48000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s16p-48000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s16p-48000-8000.sh b/testcase/fate-swr-resample_exact_lin-s16p-48000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..2f24c1df41ecbe16867a887f9beb63fa7f13b1ce --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s16p-48000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170543-485099085 +# @用例名称: fate-swr-resample_exact_lin-s16p-48000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-48000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-48000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s16p-48000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s16p-48000-96000.sh b/testcase/fate-swr-resample_exact_lin-s16p-48000-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..ad5fd6f1967c84370742a6cde7a776da6b57cab2 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s16p-48000-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170543-578481817 +# @用例名称: fate-swr-resample_exact_lin-s16p-48000-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-48000-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-48000-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s16p-48000-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s16p-8000-2626.sh b/testcase/fate-swr-resample_exact_lin-s16p-8000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..2c80ad8d7e0a9789232e849c9b149bfef5ae0e4c --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s16p-8000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170543-671947008 +# @用例名称: fate-swr-resample_exact_lin-s16p-8000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-8000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-8000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s16p-8000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s16p-8000-44100.sh b/testcase/fate-swr-resample_exact_lin-s16p-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..4369cdee44c28440fb0d8869919ef9d0ffc73c47 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s16p-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170543-767852150 +# @用例名称: fate-swr-resample_exact_lin-s16p-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s16p-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s16p-8000-48000.sh b/testcase/fate-swr-resample_exact_lin-s16p-8000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..5dda6bde38e5ff811870c7fdcac96388e1eb2fa4 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s16p-8000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170543-862557366 +# @用例名称: fate-swr-resample_exact_lin-s16p-8000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-8000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-8000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s16p-8000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s16p-8000-96000.sh b/testcase/fate-swr-resample_exact_lin-s16p-8000-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..a177cddde409406755d0f4b3e43740b58e1c9063 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s16p-8000-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170543-957533467 +# @用例名称: fate-swr-resample_exact_lin-s16p-8000-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-8000-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-8000-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s16p-8000-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s16p-96000-2626.sh b/testcase/fate-swr-resample_exact_lin-s16p-96000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..2c1b197773edacbc3e0dc47e0885c53a1a4f91ce --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s16p-96000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170544-050157663 +# @用例名称: fate-swr-resample_exact_lin-s16p-96000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-96000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-96000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s16p-96000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s16p-96000-44100.sh b/testcase/fate-swr-resample_exact_lin-s16p-96000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..9a0ef0008d99d9e17bc99fc112ef2b09641d0ebb --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s16p-96000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170544-142372079 +# @用例名称: fate-swr-resample_exact_lin-s16p-96000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-96000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-96000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s16p-96000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s16p-96000-48000.sh b/testcase/fate-swr-resample_exact_lin-s16p-96000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..14f39d55432310f57bece51f95e98c3c3047f438 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s16p-96000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170544-233320778 +# @用例名称: fate-swr-resample_exact_lin-s16p-96000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-96000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-96000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s16p-96000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s16p-96000-8000.sh b/testcase/fate-swr-resample_exact_lin-s16p-96000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..23602a69b7846b67957a02ba17bf4b9e45518343 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s16p-96000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170544-323464294 +# @用例名称: fate-swr-resample_exact_lin-s16p-96000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-96000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s16p-96000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s16p-96000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s32p-2626-44100.sh b/testcase/fate-swr-resample_exact_lin-s32p-2626-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..d6c0dd853eae89521c7f8c51c71b963ba57f8403 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s32p-2626-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170544-415071930 +# @用例名称: fate-swr-resample_exact_lin-s32p-2626-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-2626-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-2626-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s32p-2626-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s32p-2626-48000.sh b/testcase/fate-swr-resample_exact_lin-s32p-2626-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..d55bed068af1f678486f05ab3e7dcd87055fadb4 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s32p-2626-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170544-510063441 +# @用例名称: fate-swr-resample_exact_lin-s32p-2626-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-2626-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-2626-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s32p-2626-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s32p-2626-8000.sh b/testcase/fate-swr-resample_exact_lin-s32p-2626-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..1da135a19960360cfc28d1a3b233e7ed3baa4c7c --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s32p-2626-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170544-603377784 +# @用例名称: fate-swr-resample_exact_lin-s32p-2626-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-2626-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-2626-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s32p-2626-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s32p-2626-96000.sh b/testcase/fate-swr-resample_exact_lin-s32p-2626-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..6abd99170c378a645695c55f136756198bf1ef64 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s32p-2626-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170544-694456312 +# @用例名称: fate-swr-resample_exact_lin-s32p-2626-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-2626-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-2626-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s32p-2626-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s32p-44100-2626.sh b/testcase/fate-swr-resample_exact_lin-s32p-44100-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..947e9a87a8e8f4d09b6ddde20496847050887209 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s32p-44100-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170544-786272454 +# @用例名称: fate-swr-resample_exact_lin-s32p-44100-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-44100-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-44100-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s32p-44100-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s32p-44100-48000.sh b/testcase/fate-swr-resample_exact_lin-s32p-44100-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..529f8125a5f625f00c422905e66f52f52382cd5c --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s32p-44100-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170544-878366761 +# @用例名称: fate-swr-resample_exact_lin-s32p-44100-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-44100-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-44100-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s32p-44100-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s32p-44100-8000.sh b/testcase/fate-swr-resample_exact_lin-s32p-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..aeccbc8f94f31a8688dd1e0c3521487ca0744ae5 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s32p-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170544-970345651 +# @用例名称: fate-swr-resample_exact_lin-s32p-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s32p-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s32p-44100-96000.sh b/testcase/fate-swr-resample_exact_lin-s32p-44100-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..3b139c88ec70dc313ba998bfb8240274eb7d7229 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s32p-44100-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170545-059937926 +# @用例名称: fate-swr-resample_exact_lin-s32p-44100-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-44100-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-44100-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s32p-44100-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s32p-48000-2626.sh b/testcase/fate-swr-resample_exact_lin-s32p-48000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..0d58347dfbef8e6c0a321e890dbd9fdbcb3b6479 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s32p-48000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170545-152500385 +# @用例名称: fate-swr-resample_exact_lin-s32p-48000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-48000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-48000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s32p-48000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s32p-48000-44100.sh b/testcase/fate-swr-resample_exact_lin-s32p-48000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..b1425dd4def49e0130dfb117e402fa1f0843bfab --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s32p-48000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170545-241961314 +# @用例名称: fate-swr-resample_exact_lin-s32p-48000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-48000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-48000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s32p-48000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s32p-48000-8000.sh b/testcase/fate-swr-resample_exact_lin-s32p-48000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..40b8282e42965a340fdf02cb55bde1e99beec5c5 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s32p-48000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170545-332330675 +# @用例名称: fate-swr-resample_exact_lin-s32p-48000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-48000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-48000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s32p-48000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s32p-48000-96000.sh b/testcase/fate-swr-resample_exact_lin-s32p-48000-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..960647a65bfa5a706d4d4b975012fb19e13b888b --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s32p-48000-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170545-428480152 +# @用例名称: fate-swr-resample_exact_lin-s32p-48000-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-48000-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-48000-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s32p-48000-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s32p-8000-2626.sh b/testcase/fate-swr-resample_exact_lin-s32p-8000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..4b3aebb2d862fc821b546d22a13e66d0796ba6a4 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s32p-8000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170545-526932275 +# @用例名称: fate-swr-resample_exact_lin-s32p-8000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-8000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-8000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s32p-8000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s32p-8000-44100.sh b/testcase/fate-swr-resample_exact_lin-s32p-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..cdab3d4f5db3c661515b5070b2b7b14ea306e464 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s32p-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170545-623127711 +# @用例名称: fate-swr-resample_exact_lin-s32p-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s32p-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s32p-8000-48000.sh b/testcase/fate-swr-resample_exact_lin-s32p-8000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..3e1567f6a5c0625a1e9fa156967a845e89737acb --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s32p-8000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170545-715690930 +# @用例名称: fate-swr-resample_exact_lin-s32p-8000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-8000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-8000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s32p-8000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s32p-8000-96000.sh b/testcase/fate-swr-resample_exact_lin-s32p-8000-96000.sh new file mode 100755 index 0000000000000000000000000000000000000000..311a0922f3cddd9641f6c79d6729690db9a272d5 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s32p-8000-96000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170545-808881485 +# @用例名称: fate-swr-resample_exact_lin-s32p-8000-96000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-8000-96000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-8000-96000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s32p-8000-96000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s32p-96000-2626.sh b/testcase/fate-swr-resample_exact_lin-s32p-96000-2626.sh new file mode 100755 index 0000000000000000000000000000000000000000..6370a825ad9e3961c2435a0d6b8d490693fb4a5a --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s32p-96000-2626.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170545-902442134 +# @用例名称: fate-swr-resample_exact_lin-s32p-96000-2626 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-96000-2626 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-96000-2626 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s32p-96000-2626 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s32p-96000-44100.sh b/testcase/fate-swr-resample_exact_lin-s32p-96000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..5ca37aff1df1f8a6fb1f94b81d9b5a8254ccc579 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s32p-96000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170545-995067711 +# @用例名称: fate-swr-resample_exact_lin-s32p-96000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-96000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-96000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s32p-96000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s32p-96000-48000.sh b/testcase/fate-swr-resample_exact_lin-s32p-96000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..2d7dca343c721ee7f02f507a5a53c080d031cab8 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s32p-96000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170546-087855875 +# @用例名称: fate-swr-resample_exact_lin-s32p-96000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-96000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-96000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s32p-96000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin-s32p-96000-8000.sh b/testcase/fate-swr-resample_exact_lin-s32p-96000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..6753f905148b6fe5f839fc55f63b7ad33ee49f1a --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin-s32p-96000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170546-178946031 +# @用例名称: fate-swr-resample_exact_lin-s32p-96000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-96000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin-s32p-96000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin-s32p-96000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin_async-dblp-44100-48000.sh b/testcase/fate-swr-resample_exact_lin_async-dblp-44100-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..020bc25e6e0b957734f16c878234345140359a4f --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin_async-dblp-44100-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170546-270972840 +# @用例名称: fate-swr-resample_exact_lin_async-dblp-44100-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-dblp-44100-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-dblp-44100-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin_async-dblp-44100-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin_async-dblp-44100-8000.sh b/testcase/fate-swr-resample_exact_lin_async-dblp-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..4c17d49ca2e1eda370b90feb3a52c0e3954cc18b --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin_async-dblp-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170546-359218832 +# @用例名称: fate-swr-resample_exact_lin_async-dblp-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-dblp-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-dblp-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin_async-dblp-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin_async-dblp-48000-44100.sh b/testcase/fate-swr-resample_exact_lin_async-dblp-48000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..3e20f68e7eea84f1c59ba709381305b872d1a9bd --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin_async-dblp-48000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170546-452065405 +# @用例名称: fate-swr-resample_exact_lin_async-dblp-48000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-dblp-48000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-dblp-48000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin_async-dblp-48000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin_async-dblp-48000-8000.sh b/testcase/fate-swr-resample_exact_lin_async-dblp-48000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..a36c76d39fc912214dc4f9b65079bf14049844e3 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin_async-dblp-48000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170546-543060153 +# @用例名称: fate-swr-resample_exact_lin_async-dblp-48000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-dblp-48000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-dblp-48000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin_async-dblp-48000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin_async-dblp-8000-44100.sh b/testcase/fate-swr-resample_exact_lin_async-dblp-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..b94cf41510247498051f50b4152b4f64e018a8c9 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin_async-dblp-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170546-635901766 +# @用例名称: fate-swr-resample_exact_lin_async-dblp-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-dblp-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-dblp-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin_async-dblp-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin_async-dblp-8000-48000.sh b/testcase/fate-swr-resample_exact_lin_async-dblp-8000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..daab125577835277d360ef3dd0657cd24a96cd33 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin_async-dblp-8000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170546-727128540 +# @用例名称: fate-swr-resample_exact_lin_async-dblp-8000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-dblp-8000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-dblp-8000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin_async-dblp-8000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin_async-fltp-44100-48000.sh b/testcase/fate-swr-resample_exact_lin_async-fltp-44100-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..1c604934b207b0251ecce97878e9e7d763c6e821 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin_async-fltp-44100-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170546-818673818 +# @用例名称: fate-swr-resample_exact_lin_async-fltp-44100-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-fltp-44100-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-fltp-44100-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin_async-fltp-44100-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin_async-fltp-44100-8000.sh b/testcase/fate-swr-resample_exact_lin_async-fltp-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..3c5ee3b01b1aa76b466b9d3d56c9ccfe2c1f8ec4 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin_async-fltp-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170546-908828924 +# @用例名称: fate-swr-resample_exact_lin_async-fltp-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-fltp-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-fltp-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin_async-fltp-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin_async-fltp-48000-44100.sh b/testcase/fate-swr-resample_exact_lin_async-fltp-48000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..43c580b5cfac5a32bd856696db24ff1033fdb2c4 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin_async-fltp-48000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170547-002929651 +# @用例名称: fate-swr-resample_exact_lin_async-fltp-48000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-fltp-48000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-fltp-48000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin_async-fltp-48000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin_async-fltp-48000-8000.sh b/testcase/fate-swr-resample_exact_lin_async-fltp-48000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..ff07b5f6baf26ceb4c2d3dd02bf6815c5220cede --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin_async-fltp-48000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170547-094560397 +# @用例名称: fate-swr-resample_exact_lin_async-fltp-48000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-fltp-48000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-fltp-48000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin_async-fltp-48000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin_async-fltp-8000-44100.sh b/testcase/fate-swr-resample_exact_lin_async-fltp-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..cbf8ec2fb1462cacd9d595eb4ddda8c0d3552566 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin_async-fltp-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170547-186717284 +# @用例名称: fate-swr-resample_exact_lin_async-fltp-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-fltp-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-fltp-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin_async-fltp-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin_async-fltp-8000-48000.sh b/testcase/fate-swr-resample_exact_lin_async-fltp-8000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..6ec20c40f88b77ba0db34c0b98b6929a42c6409d --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin_async-fltp-8000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170547-276591554 +# @用例名称: fate-swr-resample_exact_lin_async-fltp-8000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-fltp-8000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-fltp-8000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin_async-fltp-8000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin_async-s16p-44100-48000.sh b/testcase/fate-swr-resample_exact_lin_async-s16p-44100-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..38a343cfe198931443fe1c3e71bb22198b7bf0c2 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin_async-s16p-44100-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170547-364092331 +# @用例名称: fate-swr-resample_exact_lin_async-s16p-44100-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-s16p-44100-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-s16p-44100-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin_async-s16p-44100-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin_async-s16p-44100-8000.sh b/testcase/fate-swr-resample_exact_lin_async-s16p-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..280d78d1c71146fc27d0c7a5b74afaa4de9710fa --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin_async-s16p-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170547-451927622 +# @用例名称: fate-swr-resample_exact_lin_async-s16p-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-s16p-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-s16p-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin_async-s16p-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin_async-s16p-48000-44100.sh b/testcase/fate-swr-resample_exact_lin_async-s16p-48000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..4a7feb211693f6ee782a7a8f99ec2a57847d10bd --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin_async-s16p-48000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170547-541030138 +# @用例名称: fate-swr-resample_exact_lin_async-s16p-48000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-s16p-48000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-s16p-48000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin_async-s16p-48000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin_async-s16p-48000-8000.sh b/testcase/fate-swr-resample_exact_lin_async-s16p-48000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..3201cda8885bcac331d13b3309000d2e5a190dd5 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin_async-s16p-48000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170547-631902730 +# @用例名称: fate-swr-resample_exact_lin_async-s16p-48000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-s16p-48000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-s16p-48000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin_async-s16p-48000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin_async-s16p-8000-44100.sh b/testcase/fate-swr-resample_exact_lin_async-s16p-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..226f30c1b7314e84e69eb5e28b8e7f0e353a6806 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin_async-s16p-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170547-722408706 +# @用例名称: fate-swr-resample_exact_lin_async-s16p-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-s16p-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-s16p-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin_async-s16p-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin_async-s16p-8000-48000.sh b/testcase/fate-swr-resample_exact_lin_async-s16p-8000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..f4e7df0400a5e0058364a11dffe780dc74e3abd2 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin_async-s16p-8000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170547-812241308 +# @用例名称: fate-swr-resample_exact_lin_async-s16p-8000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-s16p-8000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-s16p-8000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin_async-s16p-8000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin_async-s32p-44100-48000.sh b/testcase/fate-swr-resample_exact_lin_async-s32p-44100-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..042074a5e92f3476b036202534dc23e6b9b2e44f --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin_async-s32p-44100-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170547-903792596 +# @用例名称: fate-swr-resample_exact_lin_async-s32p-44100-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-s32p-44100-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-s32p-44100-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin_async-s32p-44100-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin_async-s32p-44100-8000.sh b/testcase/fate-swr-resample_exact_lin_async-s32p-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..51b24ff9d570b5a2fd15c6e6f41f79f4bb8480c6 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin_async-s32p-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170547-994985301 +# @用例名称: fate-swr-resample_exact_lin_async-s32p-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-s32p-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-s32p-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin_async-s32p-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin_async-s32p-48000-44100.sh b/testcase/fate-swr-resample_exact_lin_async-s32p-48000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..d20fc4e7b8d653665b17daf69065f6162409ffe5 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin_async-s32p-48000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170548-083727894 +# @用例名称: fate-swr-resample_exact_lin_async-s32p-48000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-s32p-48000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-s32p-48000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin_async-s32p-48000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin_async-s32p-48000-8000.sh b/testcase/fate-swr-resample_exact_lin_async-s32p-48000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..472e1160875317ab4e1e9f8321c2b7698de0d621 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin_async-s32p-48000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170548-168827188 +# @用例名称: fate-swr-resample_exact_lin_async-s32p-48000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-s32p-48000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-s32p-48000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin_async-s32p-48000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin_async-s32p-8000-44100.sh b/testcase/fate-swr-resample_exact_lin_async-s32p-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..59ed65c3f7ffebbe376a96974c82b49d4ebfedb0 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin_async-s32p-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170548-252639298 +# @用例名称: fate-swr-resample_exact_lin_async-s32p-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-s32p-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-s32p-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin_async-s32p-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_exact_lin_async-s32p-8000-48000.sh b/testcase/fate-swr-resample_exact_lin_async-s32p-8000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..a6951104e6778255b9b3648ff012abda6c834c89 --- /dev/null +++ b/testcase/fate-swr-resample_exact_lin_async-s32p-8000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170548-343841243 +# @用例名称: fate-swr-resample_exact_lin_async-s32p-8000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-s32p-8000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_exact_lin_async-s32p-8000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_exact_lin_async-s32p-8000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_lin-dblp-44100-48000.sh b/testcase/fate-swr-resample_lin-dblp-44100-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..a67a454707771ddbaff51de6d158b4fa37d56bf7 --- /dev/null +++ b/testcase/fate-swr-resample_lin-dblp-44100-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170548-431948297 +# @用例名称: fate-swr-resample_lin-dblp-44100-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_lin-dblp-44100-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_lin-dblp-44100-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_lin-dblp-44100-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_lin-dblp-44100-8000.sh b/testcase/fate-swr-resample_lin-dblp-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..609c92f9ef1578bfba8675419ceb691399d9bdc7 --- /dev/null +++ b/testcase/fate-swr-resample_lin-dblp-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170548-519380186 +# @用例名称: fate-swr-resample_lin-dblp-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_lin-dblp-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_lin-dblp-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_lin-dblp-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_lin-dblp-48000-44100.sh b/testcase/fate-swr-resample_lin-dblp-48000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..5cfed6d61e1fd3085e782171fb99d5db02fd7f72 --- /dev/null +++ b/testcase/fate-swr-resample_lin-dblp-48000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170548-608835435 +# @用例名称: fate-swr-resample_lin-dblp-48000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_lin-dblp-48000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_lin-dblp-48000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_lin-dblp-48000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_lin-dblp-48000-8000.sh b/testcase/fate-swr-resample_lin-dblp-48000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..47d7a1bf160260c82049f76014904fe7409c4e5f --- /dev/null +++ b/testcase/fate-swr-resample_lin-dblp-48000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170548-693290501 +# @用例名称: fate-swr-resample_lin-dblp-48000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_lin-dblp-48000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_lin-dblp-48000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_lin-dblp-48000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_lin-dblp-8000-44100.sh b/testcase/fate-swr-resample_lin-dblp-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..f773b80511c525d327dc0f4af3cc6556b5342bac --- /dev/null +++ b/testcase/fate-swr-resample_lin-dblp-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170548-781446316 +# @用例名称: fate-swr-resample_lin-dblp-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_lin-dblp-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_lin-dblp-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_lin-dblp-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_lin-dblp-8000-48000.sh b/testcase/fate-swr-resample_lin-dblp-8000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..c3a46a0de43976784cea3b9f91988217b5cf6a67 --- /dev/null +++ b/testcase/fate-swr-resample_lin-dblp-8000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170548-871562602 +# @用例名称: fate-swr-resample_lin-dblp-8000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_lin-dblp-8000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_lin-dblp-8000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_lin-dblp-8000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_lin-fltp-44100-48000.sh b/testcase/fate-swr-resample_lin-fltp-44100-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..258cda448401536af0802d3248babacf732b792c --- /dev/null +++ b/testcase/fate-swr-resample_lin-fltp-44100-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170548-958118787 +# @用例名称: fate-swr-resample_lin-fltp-44100-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_lin-fltp-44100-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_lin-fltp-44100-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_lin-fltp-44100-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_lin-fltp-44100-8000.sh b/testcase/fate-swr-resample_lin-fltp-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..21a19e6a1725309535e89326f23b3114cf49f7ea --- /dev/null +++ b/testcase/fate-swr-resample_lin-fltp-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170549-049926150 +# @用例名称: fate-swr-resample_lin-fltp-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_lin-fltp-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_lin-fltp-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_lin-fltp-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_lin-fltp-48000-44100.sh b/testcase/fate-swr-resample_lin-fltp-48000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..f6810c6cb80634fd15dfac102752e5171244282c --- /dev/null +++ b/testcase/fate-swr-resample_lin-fltp-48000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170549-140328980 +# @用例名称: fate-swr-resample_lin-fltp-48000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_lin-fltp-48000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_lin-fltp-48000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_lin-fltp-48000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_lin-fltp-48000-8000.sh b/testcase/fate-swr-resample_lin-fltp-48000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..37ba2d77f9980b9b9f7708646e805ae733e3d8cf --- /dev/null +++ b/testcase/fate-swr-resample_lin-fltp-48000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170549-230078673 +# @用例名称: fate-swr-resample_lin-fltp-48000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_lin-fltp-48000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_lin-fltp-48000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_lin-fltp-48000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_lin-fltp-8000-44100.sh b/testcase/fate-swr-resample_lin-fltp-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..7658a5477c202607b56e4678c93f9bb2d4f5eeb7 --- /dev/null +++ b/testcase/fate-swr-resample_lin-fltp-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170549-317028771 +# @用例名称: fate-swr-resample_lin-fltp-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_lin-fltp-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_lin-fltp-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_lin-fltp-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_lin-fltp-8000-48000.sh b/testcase/fate-swr-resample_lin-fltp-8000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..a56e891b9f6098ab06d6b3cb89cd0902196b95f4 --- /dev/null +++ b/testcase/fate-swr-resample_lin-fltp-8000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170549-407704097 +# @用例名称: fate-swr-resample_lin-fltp-8000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_lin-fltp-8000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_lin-fltp-8000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_lin-fltp-8000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_lin-s16p-44100-48000.sh b/testcase/fate-swr-resample_lin-s16p-44100-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..0243d3814cffab4b20275ba9c5603b4c725da2f5 --- /dev/null +++ b/testcase/fate-swr-resample_lin-s16p-44100-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170549-496828822 +# @用例名称: fate-swr-resample_lin-s16p-44100-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_lin-s16p-44100-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_lin-s16p-44100-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_lin-s16p-44100-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_lin-s16p-44100-8000.sh b/testcase/fate-swr-resample_lin-s16p-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..337e64cbe3ed6441a776d41dfd067c168b57d9a2 --- /dev/null +++ b/testcase/fate-swr-resample_lin-s16p-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170549-585900458 +# @用例名称: fate-swr-resample_lin-s16p-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_lin-s16p-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_lin-s16p-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_lin-s16p-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_lin-s16p-48000-44100.sh b/testcase/fate-swr-resample_lin-s16p-48000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..341f1d22119e98db60fc313e53f2eb75079c3ff1 --- /dev/null +++ b/testcase/fate-swr-resample_lin-s16p-48000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170549-671131420 +# @用例名称: fate-swr-resample_lin-s16p-48000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_lin-s16p-48000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_lin-s16p-48000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_lin-s16p-48000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_lin-s16p-48000-8000.sh b/testcase/fate-swr-resample_lin-s16p-48000-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..4377ca91058d432284f7ed50fca91c2b6074b17c --- /dev/null +++ b/testcase/fate-swr-resample_lin-s16p-48000-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170549-758480970 +# @用例名称: fate-swr-resample_lin-s16p-48000-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_lin-s16p-48000-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_lin-s16p-48000-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_lin-s16p-48000-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_lin-s16p-8000-44100.sh b/testcase/fate-swr-resample_lin-s16p-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..25cdeef15797e5ca4204727bd63a7ca96fdb03e8 --- /dev/null +++ b/testcase/fate-swr-resample_lin-s16p-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170549-847540786 +# @用例名称: fate-swr-resample_lin-s16p-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_lin-s16p-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_lin-s16p-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_lin-s16p-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_lin-s16p-8000-48000.sh b/testcase/fate-swr-resample_lin-s16p-8000-48000.sh new file mode 100755 index 0000000000000000000000000000000000000000..806166e054f3b0d07f5b5147acb6e6506fc941e8 --- /dev/null +++ b/testcase/fate-swr-resample_lin-s16p-8000-48000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170549-935698901 +# @用例名称: fate-swr-resample_lin-s16p-8000-48000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_lin-s16p-8000-48000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_lin-s16p-8000-48000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_lin-s16p-8000-48000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_nn-fltp-44100-8000.sh b/testcase/fate-swr-resample_nn-fltp-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..ce55ff163d16250befd3159e497c5789ffc7157b --- /dev/null +++ b/testcase/fate-swr-resample_nn-fltp-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170550-026731689 +# @用例名称: fate-swr-resample_nn-fltp-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_nn-fltp-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_nn-fltp-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_nn-fltp-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_nn-fltp-8000-44100.sh b/testcase/fate-swr-resample_nn-fltp-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..afa882dac04a01f232e4a4965fca3c1619f091e7 --- /dev/null +++ b/testcase/fate-swr-resample_nn-fltp-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170550-117673168 +# @用例名称: fate-swr-resample_nn-fltp-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_nn-fltp-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_nn-fltp-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_nn-fltp-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_nn-s16p-44100-8000.sh b/testcase/fate-swr-resample_nn-s16p-44100-8000.sh new file mode 100755 index 0000000000000000000000000000000000000000..33e13c4c2c2ea40a689b7f2adc82e72b933d5bc6 --- /dev/null +++ b/testcase/fate-swr-resample_nn-s16p-44100-8000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170550-210617449 +# @用例名称: fate-swr-resample_nn-s16p-44100-8000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_nn-s16p-44100-8000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_nn-s16p-44100-8000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_nn-s16p-44100-8000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-swr-resample_nn-s16p-8000-44100.sh b/testcase/fate-swr-resample_nn-s16p-8000-44100.sh new file mode 100755 index 0000000000000000000000000000000000000000..7840ec0db841bb2f9c394e508b08c74e70252b45 --- /dev/null +++ b/testcase/fate-swr-resample_nn-s16p-8000-44100.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170550-300509469 +# @用例名称: fate-swr-resample_nn-s16p-8000-44100 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-swr-resample_nn-s16p-8000-44100 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-swr-resample_nn-s16p-8000-44100 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-swr-resample_nn-s16p-8000-44100 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-sws-yuv-colorspace.sh b/testcase/fate-sws-yuv-colorspace.sh new file mode 100755 index 0000000000000000000000000000000000000000..da438bfb1d9e874b521d290e22b04b6dec1a3025 --- /dev/null +++ b/testcase/fate-sws-yuv-colorspace.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170550-386741701 +# @用例名称: fate-sws-yuv-colorspace +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-sws-yuv-colorspace +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-sws-yuv-colorspace + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-sws-yuv-colorspace + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-sws-yuv-range.sh b/testcase/fate-sws-yuv-range.sh new file mode 100755 index 0000000000000000000000000000000000000000..7d2c17b375dd27dc82e657742b41c1ca21f9adcf --- /dev/null +++ b/testcase/fate-sws-yuv-range.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170550-474921985 +# @用例名称: fate-sws-yuv-range +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-sws-yuv-range +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-sws-yuv-range + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-sws-yuv-range + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-unknown_layout-ac3.sh b/testcase/fate-unknown_layout-ac3.sh new file mode 100755 index 0000000000000000000000000000000000000000..d22ec169c8d681c93778cafc5158daa1adce533a --- /dev/null +++ b/testcase/fate-unknown_layout-ac3.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170550-562581309 +# @用例名称: fate-unknown_layout-ac3 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-unknown_layout-ac3 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-unknown_layout-ac3 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-unknown_layout-ac3 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-unknown_layout-pcm.sh b/testcase/fate-unknown_layout-pcm.sh new file mode 100755 index 0000000000000000000000000000000000000000..8f4af1c7323924d897f5e808c7d239cfb31e59ea --- /dev/null +++ b/testcase/fate-unknown_layout-pcm.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170550-649264463 +# @用例名称: fate-unknown_layout-pcm +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-unknown_layout-pcm +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-unknown_layout-pcm + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-unknown_layout-pcm + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-utvideoenc_rgb_left.sh b/testcase/fate-utvideoenc_rgb_left.sh new file mode 100755 index 0000000000000000000000000000000000000000..ee0ea142d3e32b816cf170fff58e05827a13ff0f --- /dev/null +++ b/testcase/fate-utvideoenc_rgb_left.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170550-740831050 +# @用例名称: fate-utvideoenc_rgb_left +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-utvideoenc_rgb_left +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-utvideoenc_rgb_left + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-utvideoenc_rgb_left + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-utvideoenc_rgb_median.sh b/testcase/fate-utvideoenc_rgb_median.sh new file mode 100755 index 0000000000000000000000000000000000000000..01e9a808d0655297117a8d6326fd33733e51f430 --- /dev/null +++ b/testcase/fate-utvideoenc_rgb_median.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170550-829692731 +# @用例名称: fate-utvideoenc_rgb_median +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-utvideoenc_rgb_median +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-utvideoenc_rgb_median + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-utvideoenc_rgb_median + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-utvideoenc_rgb_none.sh b/testcase/fate-utvideoenc_rgb_none.sh new file mode 100755 index 0000000000000000000000000000000000000000..587dca60f8ef33a33beb102d4612fe330e217a45 --- /dev/null +++ b/testcase/fate-utvideoenc_rgb_none.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170550-915843844 +# @用例名称: fate-utvideoenc_rgb_none +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-utvideoenc_rgb_none +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-utvideoenc_rgb_none + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-utvideoenc_rgb_none + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-utvideoenc_rgba_left.sh b/testcase/fate-utvideoenc_rgba_left.sh new file mode 100755 index 0000000000000000000000000000000000000000..da760a1abccbe80dcb6d21e49757384ae2677641 --- /dev/null +++ b/testcase/fate-utvideoenc_rgba_left.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170551-003551586 +# @用例名称: fate-utvideoenc_rgba_left +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-utvideoenc_rgba_left +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-utvideoenc_rgba_left + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-utvideoenc_rgba_left + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-utvideoenc_rgba_median.sh b/testcase/fate-utvideoenc_rgba_median.sh new file mode 100755 index 0000000000000000000000000000000000000000..0a75ec265b635dfce4fc9f787d4a2bb7652e81e0 --- /dev/null +++ b/testcase/fate-utvideoenc_rgba_median.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170551-090795509 +# @用例名称: fate-utvideoenc_rgba_median +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-utvideoenc_rgba_median +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-utvideoenc_rgba_median + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-utvideoenc_rgba_median + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-utvideoenc_rgba_none.sh b/testcase/fate-utvideoenc_rgba_none.sh new file mode 100755 index 0000000000000000000000000000000000000000..e3a3eeb15f102afdc5e7de536f40c6b35767d48a --- /dev/null +++ b/testcase/fate-utvideoenc_rgba_none.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170551-183789079 +# @用例名称: fate-utvideoenc_rgba_none +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-utvideoenc_rgba_none +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-utvideoenc_rgba_none + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-utvideoenc_rgba_none + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-utvideoenc_yuv420_left.sh b/testcase/fate-utvideoenc_yuv420_left.sh new file mode 100755 index 0000000000000000000000000000000000000000..bda9d9b8541cf5eaf4aec44286d0228f52442da2 --- /dev/null +++ b/testcase/fate-utvideoenc_yuv420_left.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170551-270779165 +# @用例名称: fate-utvideoenc_yuv420_left +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-utvideoenc_yuv420_left +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-utvideoenc_yuv420_left + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-utvideoenc_yuv420_left + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-utvideoenc_yuv420_median.sh b/testcase/fate-utvideoenc_yuv420_median.sh new file mode 100755 index 0000000000000000000000000000000000000000..002201e77ea6e6b3b49a07f8b8692e22a271ecf3 --- /dev/null +++ b/testcase/fate-utvideoenc_yuv420_median.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170551-359596478 +# @用例名称: fate-utvideoenc_yuv420_median +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-utvideoenc_yuv420_median +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-utvideoenc_yuv420_median + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-utvideoenc_yuv420_median + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-utvideoenc_yuv420_none.sh b/testcase/fate-utvideoenc_yuv420_none.sh new file mode 100755 index 0000000000000000000000000000000000000000..20fc3da7184f08fa8046487f3eb5fc8d796392e6 --- /dev/null +++ b/testcase/fate-utvideoenc_yuv420_none.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170551-445335348 +# @用例名称: fate-utvideoenc_yuv420_none +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-utvideoenc_yuv420_none +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-utvideoenc_yuv420_none + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-utvideoenc_yuv420_none + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-utvideoenc_yuv422_left.sh b/testcase/fate-utvideoenc_yuv422_left.sh new file mode 100755 index 0000000000000000000000000000000000000000..9717d858cb7b430e1a101341c90b063ef96d442e --- /dev/null +++ b/testcase/fate-utvideoenc_yuv422_left.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170551-532348435 +# @用例名称: fate-utvideoenc_yuv422_left +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-utvideoenc_yuv422_left +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-utvideoenc_yuv422_left + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-utvideoenc_yuv422_left + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-utvideoenc_yuv422_median.sh b/testcase/fate-utvideoenc_yuv422_median.sh new file mode 100755 index 0000000000000000000000000000000000000000..b9cfcd7d39b2e0ffa203157d90f41b15881fe7f9 --- /dev/null +++ b/testcase/fate-utvideoenc_yuv422_median.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170551-623325924 +# @用例名称: fate-utvideoenc_yuv422_median +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-utvideoenc_yuv422_median +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-utvideoenc_yuv422_median + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-utvideoenc_yuv422_median + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-utvideoenc_yuv422_none.sh b/testcase/fate-utvideoenc_yuv422_none.sh new file mode 100755 index 0000000000000000000000000000000000000000..83d42f1088f17689e4cedc266796be4f25348594 --- /dev/null +++ b/testcase/fate-utvideoenc_yuv422_none.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170551-713144746 +# @用例名称: fate-utvideoenc_yuv422_none +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-utvideoenc_yuv422_none +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-utvideoenc_yuv422_none + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-utvideoenc_yuv422_none + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-utvideoenc_yuv444_left.sh b/testcase/fate-utvideoenc_yuv444_left.sh new file mode 100755 index 0000000000000000000000000000000000000000..05893b1799ac1c6dfe09791175acc821cb3e3967 --- /dev/null +++ b/testcase/fate-utvideoenc_yuv444_left.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170551-806397261 +# @用例名称: fate-utvideoenc_yuv444_left +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-utvideoenc_yuv444_left +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-utvideoenc_yuv444_left + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-utvideoenc_yuv444_left + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-utvideoenc_yuv444_median.sh b/testcase/fate-utvideoenc_yuv444_median.sh new file mode 100755 index 0000000000000000000000000000000000000000..f87775168a9fe6fb9647215bfc66591e61ebf0d5 --- /dev/null +++ b/testcase/fate-utvideoenc_yuv444_median.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170551-898256302 +# @用例名称: fate-utvideoenc_yuv444_median +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-utvideoenc_yuv444_median +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-utvideoenc_yuv444_median + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-utvideoenc_yuv444_median + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-utvideoenc_yuv444_none.sh b/testcase/fate-utvideoenc_yuv444_none.sh new file mode 100755 index 0000000000000000000000000000000000000000..05b515c2b54e5d5d9956b71c25487754fb3d6c9f --- /dev/null +++ b/testcase/fate-utvideoenc_yuv444_none.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170551-989920228 +# @用例名称: fate-utvideoenc_yuv444_none +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-utvideoenc_yuv444_none +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-utvideoenc_yuv444_none + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-utvideoenc_yuv444_none + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-amv.sh b/testcase/fate-vsynth1-amv.sh new file mode 100755 index 0000000000000000000000000000000000000000..3d05e3775168357a7985c27d849d8a8ffe0849f2 --- /dev/null +++ b/testcase/fate-vsynth1-amv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170552-078077672 +# @用例名称: fate-vsynth1-amv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-amv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-amv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-amv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-asv1.sh b/testcase/fate-vsynth1-asv1.sh new file mode 100755 index 0000000000000000000000000000000000000000..8d4fc0a946c870c70ef787b4594e27c89a1f6fb7 --- /dev/null +++ b/testcase/fate-vsynth1-asv1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170552-168702368 +# @用例名称: fate-vsynth1-asv1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-asv1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-asv1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-asv1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-asv2.sh b/testcase/fate-vsynth1-asv2.sh new file mode 100755 index 0000000000000000000000000000000000000000..adcbc920973883feb075c5e4ae8f84855a23b309 --- /dev/null +++ b/testcase/fate-vsynth1-asv2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170552-257659886 +# @用例名称: fate-vsynth1-asv2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-asv2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-asv2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-asv2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-avui.sh b/testcase/fate-vsynth1-avui.sh new file mode 100755 index 0000000000000000000000000000000000000000..f973b4254fb01695ff4aa19a545d7c1b36ab7e11 --- /dev/null +++ b/testcase/fate-vsynth1-avui.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170552-341758700 +# @用例名称: fate-vsynth1-avui +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-avui +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-avui + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-avui + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-bpp1.sh b/testcase/fate-vsynth1-bpp1.sh new file mode 100755 index 0000000000000000000000000000000000000000..08bc9a6534b05dca67bd1cad052831eb01c96477 --- /dev/null +++ b/testcase/fate-vsynth1-bpp1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170552-421436891 +# @用例名称: fate-vsynth1-bpp1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-bpp1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-bpp1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-bpp1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-bpp15.sh b/testcase/fate-vsynth1-bpp15.sh new file mode 100755 index 0000000000000000000000000000000000000000..42cf6c862b2bbadb794e195604c959cd2dce923e --- /dev/null +++ b/testcase/fate-vsynth1-bpp15.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170552-510186303 +# @用例名称: fate-vsynth1-bpp15 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-bpp15 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-bpp15 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-bpp15 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-cinepak.sh b/testcase/fate-vsynth1-cinepak.sh new file mode 100755 index 0000000000000000000000000000000000000000..9f88299d9186a22673617a4f8f6befcfcf635011 --- /dev/null +++ b/testcase/fate-vsynth1-cinepak.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170552-601150613 +# @用例名称: fate-vsynth1-cinepak +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-cinepak +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-cinepak + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-cinepak + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-cljr.sh b/testcase/fate-vsynth1-cljr.sh new file mode 100755 index 0000000000000000000000000000000000000000..cb75579a08ae5d1fca933aaa7c2abf7399f22049 --- /dev/null +++ b/testcase/fate-vsynth1-cljr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170552-690873906 +# @用例名称: fate-vsynth1-cljr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-cljr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-cljr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-cljr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-dnxhd-1080i-10bit.sh b/testcase/fate-vsynth1-dnxhd-1080i-10bit.sh new file mode 100755 index 0000000000000000000000000000000000000000..bf107b5dca17e3f5068fd4bbf39a470f86a7db1a --- /dev/null +++ b/testcase/fate-vsynth1-dnxhd-1080i-10bit.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170552-870419942 +# @用例名称: fate-vsynth1-dnxhd-1080i-10bit +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-1080i-10bit +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-1080i-10bit + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-dnxhd-1080i-10bit + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-dnxhd-1080i-colr.sh b/testcase/fate-vsynth1-dnxhd-1080i-colr.sh new file mode 100755 index 0000000000000000000000000000000000000000..900a63f4f5bf603af68b89b4d1c0badbe9b72e65 --- /dev/null +++ b/testcase/fate-vsynth1-dnxhd-1080i-colr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170552-960864121 +# @用例名称: fate-vsynth1-dnxhd-1080i-colr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-1080i-colr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-1080i-colr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-dnxhd-1080i-colr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-dnxhd-1080i.sh b/testcase/fate-vsynth1-dnxhd-1080i.sh new file mode 100755 index 0000000000000000000000000000000000000000..07604576f3a8cc34fc0ea21b62182a49398f0129 --- /dev/null +++ b/testcase/fate-vsynth1-dnxhd-1080i.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170552-779329446 +# @用例名称: fate-vsynth1-dnxhd-1080i +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-1080i +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-1080i + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-dnxhd-1080i + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-dnxhd-2k-hr-hq.sh b/testcase/fate-vsynth1-dnxhd-2k-hr-hq.sh new file mode 100755 index 0000000000000000000000000000000000000000..97f2b8746b4dc844a2533e7ee24bca91e9cee9de --- /dev/null +++ b/testcase/fate-vsynth1-dnxhd-2k-hr-hq.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170553-051196792 +# @用例名称: fate-vsynth1-dnxhd-2k-hr-hq +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-2k-hr-hq +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-2k-hr-hq + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-dnxhd-2k-hr-hq + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-dnxhd-4k-hr-lb.sh b/testcase/fate-vsynth1-dnxhd-4k-hr-lb.sh new file mode 100755 index 0000000000000000000000000000000000000000..0409c777cfc201e4b40e394881342dc0100a1785 --- /dev/null +++ b/testcase/fate-vsynth1-dnxhd-4k-hr-lb.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170553-144672773 +# @用例名称: fate-vsynth1-dnxhd-4k-hr-lb +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-4k-hr-lb +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-4k-hr-lb + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-dnxhd-4k-hr-lb + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-dnxhd-720p-10bit.sh b/testcase/fate-vsynth1-dnxhd-720p-10bit.sh new file mode 100755 index 0000000000000000000000000000000000000000..707b3f2de7570d50c5e41b65514f67e03df58cba --- /dev/null +++ b/testcase/fate-vsynth1-dnxhd-720p-10bit.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170553-328604652 +# @用例名称: fate-vsynth1-dnxhd-720p-10bit +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-720p-10bit +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-720p-10bit + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-dnxhd-720p-10bit + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-dnxhd-720p-hr-lb.sh b/testcase/fate-vsynth1-dnxhd-720p-hr-lb.sh new file mode 100755 index 0000000000000000000000000000000000000000..511c8f01b0d6870e2c2bf741b61f797e06e8c1b0 --- /dev/null +++ b/testcase/fate-vsynth1-dnxhd-720p-hr-lb.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170553-420396845 +# @用例名称: fate-vsynth1-dnxhd-720p-hr-lb +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-720p-hr-lb +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-720p-hr-lb + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-dnxhd-720p-hr-lb + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-dnxhd-720p-rd.sh b/testcase/fate-vsynth1-dnxhd-720p-rd.sh new file mode 100755 index 0000000000000000000000000000000000000000..61f7f096e9386df156dfe16e8a595218bcc295b5 --- /dev/null +++ b/testcase/fate-vsynth1-dnxhd-720p-rd.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170553-512724988 +# @用例名称: fate-vsynth1-dnxhd-720p-rd +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-720p-rd +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-720p-rd + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-dnxhd-720p-rd + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-dnxhd-720p.sh b/testcase/fate-vsynth1-dnxhd-720p.sh new file mode 100755 index 0000000000000000000000000000000000000000..f531626ebd62c20c04828f8417b44b9b58b61229 --- /dev/null +++ b/testcase/fate-vsynth1-dnxhd-720p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170553-237393169 +# @用例名称: fate-vsynth1-dnxhd-720p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-720p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-720p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-dnxhd-720p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-dnxhd-edge1-hr.sh b/testcase/fate-vsynth1-dnxhd-edge1-hr.sh new file mode 100755 index 0000000000000000000000000000000000000000..f27c985ce0c391e4bc540c43c6c0125e9fb5d220 --- /dev/null +++ b/testcase/fate-vsynth1-dnxhd-edge1-hr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170553-596262903 +# @用例名称: fate-vsynth1-dnxhd-edge1-hr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-edge1-hr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-edge1-hr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-dnxhd-edge1-hr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-dnxhd-edge2-hr.sh b/testcase/fate-vsynth1-dnxhd-edge2-hr.sh new file mode 100755 index 0000000000000000000000000000000000000000..fc5717028ee81b73e7c00e45d83177e1ba71adc3 --- /dev/null +++ b/testcase/fate-vsynth1-dnxhd-edge2-hr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170553-685713102 +# @用例名称: fate-vsynth1-dnxhd-edge2-hr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-edge2-hr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-edge2-hr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-dnxhd-edge2-hr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-dnxhd-edge3-hr.sh b/testcase/fate-vsynth1-dnxhd-edge3-hr.sh new file mode 100755 index 0000000000000000000000000000000000000000..3feeb4a086d02431c103959d25d6c74d81b44cd8 --- /dev/null +++ b/testcase/fate-vsynth1-dnxhd-edge3-hr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170553-776209531 +# @用例名称: fate-vsynth1-dnxhd-edge3-hr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-edge3-hr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-edge3-hr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-dnxhd-edge3-hr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-dnxhd-hr-hq-mov.sh b/testcase/fate-vsynth1-dnxhd-hr-hq-mov.sh new file mode 100755 index 0000000000000000000000000000000000000000..83035ba28918fdf2a1ab2c651bcb6fc5ff551de2 --- /dev/null +++ b/testcase/fate-vsynth1-dnxhd-hr-hq-mov.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170553-866078161 +# @用例名称: fate-vsynth1-dnxhd-hr-hq-mov +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-hr-hq-mov +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-hr-hq-mov + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-dnxhd-hr-hq-mov + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-dnxhd-hr-lb-mov.sh b/testcase/fate-vsynth1-dnxhd-hr-lb-mov.sh new file mode 100755 index 0000000000000000000000000000000000000000..80741076a04a29676da025c4f58ccca1ba081317 --- /dev/null +++ b/testcase/fate-vsynth1-dnxhd-hr-lb-mov.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170553-954763305 +# @用例名称: fate-vsynth1-dnxhd-hr-lb-mov +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-hr-lb-mov +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-hr-lb-mov + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-dnxhd-hr-lb-mov + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-dnxhd-hr-sq-mov.sh b/testcase/fate-vsynth1-dnxhd-hr-sq-mov.sh new file mode 100755 index 0000000000000000000000000000000000000000..2a7be0951d9b32cf952deb6cbb057da1908c0088 --- /dev/null +++ b/testcase/fate-vsynth1-dnxhd-hr-sq-mov.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170554-041375049 +# @用例名称: fate-vsynth1-dnxhd-hr-sq-mov +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-hr-sq-mov +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-hr-sq-mov + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-dnxhd-hr-sq-mov + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-dnxhd-uhd-hr-sq.sh b/testcase/fate-vsynth1-dnxhd-uhd-hr-sq.sh new file mode 100755 index 0000000000000000000000000000000000000000..07abc26ea3c5d7cd3b5e9c890cf20d8feb7752b8 --- /dev/null +++ b/testcase/fate-vsynth1-dnxhd-uhd-hr-sq.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170554-122210907 +# @用例名称: fate-vsynth1-dnxhd-uhd-hr-sq +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-uhd-hr-sq +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-dnxhd-uhd-hr-sq + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-dnxhd-uhd-hr-sq + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-dv-411.sh b/testcase/fate-vsynth1-dv-411.sh new file mode 100755 index 0000000000000000000000000000000000000000..e2d12e3fb1e0e95f282757e87ab9aa34a5957584 --- /dev/null +++ b/testcase/fate-vsynth1-dv-411.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170554-290926914 +# @用例名称: fate-vsynth1-dv-411 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-dv-411 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-dv-411 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-dv-411 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-dv-50.sh b/testcase/fate-vsynth1-dv-50.sh new file mode 100755 index 0000000000000000000000000000000000000000..d874d2c2558f8d3f6398d5158927db6481a2ddb5 --- /dev/null +++ b/testcase/fate-vsynth1-dv-50.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170554-378039259 +# @用例名称: fate-vsynth1-dv-50 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-dv-50 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-dv-50 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-dv-50 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-dv-fhd.sh b/testcase/fate-vsynth1-dv-fhd.sh new file mode 100755 index 0000000000000000000000000000000000000000..1b03024502978bbda23da23377765eaffa85bc21 --- /dev/null +++ b/testcase/fate-vsynth1-dv-fhd.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170554-471061528 +# @用例名称: fate-vsynth1-dv-fhd +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-dv-fhd +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-dv-fhd + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-dv-fhd + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-dv-hd.sh b/testcase/fate-vsynth1-dv-hd.sh new file mode 100755 index 0000000000000000000000000000000000000000..a5a5d2eae1b28bdab0ec9a6da89132a819a9b828 --- /dev/null +++ b/testcase/fate-vsynth1-dv-hd.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170554-565218525 +# @用例名称: fate-vsynth1-dv-hd +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-dv-hd +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-dv-hd + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-dv-hd + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-dv.sh b/testcase/fate-vsynth1-dv.sh new file mode 100755 index 0000000000000000000000000000000000000000..05cb3ce4a56458aef8585df71e58607903c135da --- /dev/null +++ b/testcase/fate-vsynth1-dv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170554-202560614 +# @用例名称: fate-vsynth1-dv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-dv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-dv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-dv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-ffv1-2pass.sh b/testcase/fate-vsynth1-ffv1-2pass.sh new file mode 100755 index 0000000000000000000000000000000000000000..834cd02945c1c0da62dfc6c5fe6541ece9abcc3c --- /dev/null +++ b/testcase/fate-vsynth1-ffv1-2pass.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170554-751205274 +# @用例名称: fate-vsynth1-ffv1-2pass +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-ffv1-2pass +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-ffv1-2pass + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-ffv1-2pass + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-ffv1-2pass10.sh b/testcase/fate-vsynth1-ffv1-2pass10.sh new file mode 100755 index 0000000000000000000000000000000000000000..c6f146fae932b9944b723246fad0512d0995652a --- /dev/null +++ b/testcase/fate-vsynth1-ffv1-2pass10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170554-849611848 +# @用例名称: fate-vsynth1-ffv1-2pass10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-ffv1-2pass10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-ffv1-2pass10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-ffv1-2pass10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-ffv1-v0.sh b/testcase/fate-vsynth1-ffv1-v0.sh new file mode 100755 index 0000000000000000000000000000000000000000..cd6a6ac63ac514c58b4bddb335719510f45b0108 --- /dev/null +++ b/testcase/fate-vsynth1-ffv1-v0.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170554-944200837 +# @用例名称: fate-vsynth1-ffv1-v0 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-ffv1-v0 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-ffv1-v0 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-ffv1-v0 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-ffv1-v2.sh b/testcase/fate-vsynth1-ffv1-v2.sh new file mode 100755 index 0000000000000000000000000000000000000000..7c27ae3315a1938b55b337f3c8b819bab5c660f4 --- /dev/null +++ b/testcase/fate-vsynth1-ffv1-v2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170555-038690486 +# @用例名称: fate-vsynth1-ffv1-v2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-ffv1-v2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-ffv1-v2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-ffv1-v2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-ffv1-v3-bgr0.sh b/testcase/fate-vsynth1-ffv1-v3-bgr0.sh new file mode 100755 index 0000000000000000000000000000000000000000..064d05f773998dfc3d5a56f8cdc9f3907fa10b3c --- /dev/null +++ b/testcase/fate-vsynth1-ffv1-v3-bgr0.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170555-126184243 +# @用例名称: fate-vsynth1-ffv1-v3-bgr0 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-ffv1-v3-bgr0 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-ffv1-v3-bgr0 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-ffv1-v3-bgr0 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-ffv1-v3-rgb48.sh b/testcase/fate-vsynth1-ffv1-v3-rgb48.sh new file mode 100755 index 0000000000000000000000000000000000000000..c21df1ffa97ce4c5a98f0917014b6d607f44f055 --- /dev/null +++ b/testcase/fate-vsynth1-ffv1-v3-rgb48.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170555-218355569 +# @用例名称: fate-vsynth1-ffv1-v3-rgb48 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-ffv1-v3-rgb48 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-ffv1-v3-rgb48 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-ffv1-v3-rgb48 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-ffv1-v3-yuv420p.sh b/testcase/fate-vsynth1-ffv1-v3-yuv420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..23475cc0b1670399ed67a826b290fb0d812f0428 --- /dev/null +++ b/testcase/fate-vsynth1-ffv1-v3-yuv420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170555-307974645 +# @用例名称: fate-vsynth1-ffv1-v3-yuv420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-ffv1-v3-yuv420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-ffv1-v3-yuv420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-ffv1-v3-yuv420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-ffv1-v3-yuv422p10.sh b/testcase/fate-vsynth1-ffv1-v3-yuv422p10.sh new file mode 100755 index 0000000000000000000000000000000000000000..0575a30e75f68fbea682dd48cb2d6cd6977eec26 --- /dev/null +++ b/testcase/fate-vsynth1-ffv1-v3-yuv422p10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170555-401571433 +# @用例名称: fate-vsynth1-ffv1-v3-yuv422p10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-ffv1-v3-yuv422p10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-ffv1-v3-yuv422p10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-ffv1-v3-yuv422p10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-ffv1-v3-yuv444p16.sh b/testcase/fate-vsynth1-ffv1-v3-yuv444p16.sh new file mode 100755 index 0000000000000000000000000000000000000000..6b274207327063dcc98a9544dbb809b65a4a4695 --- /dev/null +++ b/testcase/fate-vsynth1-ffv1-v3-yuv444p16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170555-498585434 +# @用例名称: fate-vsynth1-ffv1-v3-yuv444p16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-ffv1-v3-yuv444p16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-ffv1-v3-yuv444p16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-ffv1-v3-yuv444p16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-ffv1.sh b/testcase/fate-vsynth1-ffv1.sh new file mode 100755 index 0000000000000000000000000000000000000000..fbf75cfef47fd6a05ad61ed7f1d68cadd804c2c5 --- /dev/null +++ b/testcase/fate-vsynth1-ffv1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170554-659576518 +# @用例名称: fate-vsynth1-ffv1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-ffv1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-ffv1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-ffv1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-ffvhuff.sh b/testcase/fate-vsynth1-ffvhuff.sh new file mode 100755 index 0000000000000000000000000000000000000000..9d1b7db141bf56b4538a19fcd5bb713dc6c12c48 --- /dev/null +++ b/testcase/fate-vsynth1-ffvhuff.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170555-594014187 +# @用例名称: fate-vsynth1-ffvhuff +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-ffvhuff +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-ffvhuff + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-ffvhuff + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-ffvhuff420p12.sh b/testcase/fate-vsynth1-ffvhuff420p12.sh new file mode 100755 index 0000000000000000000000000000000000000000..ed373c70bcc75bdf8db4dd7533976a39ebf9b1cf --- /dev/null +++ b/testcase/fate-vsynth1-ffvhuff420p12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170555-686213081 +# @用例名称: fate-vsynth1-ffvhuff420p12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-ffvhuff420p12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-ffvhuff420p12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-ffvhuff420p12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-ffvhuff422p10left.sh b/testcase/fate-vsynth1-ffvhuff422p10left.sh new file mode 100755 index 0000000000000000000000000000000000000000..663c63c0dcce1b16c55d93b6c452ea6b12168886 --- /dev/null +++ b/testcase/fate-vsynth1-ffvhuff422p10left.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170555-776451864 +# @用例名称: fate-vsynth1-ffvhuff422p10left +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-ffvhuff422p10left +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-ffvhuff422p10left + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-ffvhuff422p10left + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-ffvhuff444.sh b/testcase/fate-vsynth1-ffvhuff444.sh new file mode 100755 index 0000000000000000000000000000000000000000..7b779295aeb8d8b56acf01210535a8fb610e8937 --- /dev/null +++ b/testcase/fate-vsynth1-ffvhuff444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170555-866976372 +# @用例名称: fate-vsynth1-ffvhuff444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-ffvhuff444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-ffvhuff444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-ffvhuff444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-ffvhuff444p16.sh b/testcase/fate-vsynth1-ffvhuff444p16.sh new file mode 100755 index 0000000000000000000000000000000000000000..4435f230275b3fc0a4fffd9c0f5e01a7c85906c1 --- /dev/null +++ b/testcase/fate-vsynth1-ffvhuff444p16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170555-959028020 +# @用例名称: fate-vsynth1-ffvhuff444p16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-ffvhuff444p16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-ffvhuff444p16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-ffvhuff444p16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-flashsv.sh b/testcase/fate-vsynth1-flashsv.sh new file mode 100755 index 0000000000000000000000000000000000000000..80a86eb8868451518dd2bf498b34a74fe87fc36c --- /dev/null +++ b/testcase/fate-vsynth1-flashsv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170556-050840903 +# @用例名称: fate-vsynth1-flashsv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-flashsv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-flashsv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-flashsv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-flashsv2.sh b/testcase/fate-vsynth1-flashsv2.sh new file mode 100755 index 0000000000000000000000000000000000000000..f5b7a01505d8eccedc900a2d8ba035cfb3e6d0e9 --- /dev/null +++ b/testcase/fate-vsynth1-flashsv2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170556-140633486 +# @用例名称: fate-vsynth1-flashsv2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-flashsv2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-flashsv2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-flashsv2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-flv.sh b/testcase/fate-vsynth1-flv.sh new file mode 100755 index 0000000000000000000000000000000000000000..72a60355ebfa90ae12a578b1e0767c1e003c50a9 --- /dev/null +++ b/testcase/fate-vsynth1-flv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170556-242306315 +# @用例名称: fate-vsynth1-flv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-flv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-flv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-flv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-h261-trellis.sh b/testcase/fate-vsynth1-h261-trellis.sh new file mode 100755 index 0000000000000000000000000000000000000000..7f058cee581c2c5f4298e6eb5d84117985f5d2ab --- /dev/null +++ b/testcase/fate-vsynth1-h261-trellis.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170556-423539327 +# @用例名称: fate-vsynth1-h261-trellis +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-h261-trellis +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-h261-trellis + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-h261-trellis + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-h261.sh b/testcase/fate-vsynth1-h261.sh new file mode 100755 index 0000000000000000000000000000000000000000..6fd82def47598ef5827b8121376d958d4c5cfdd8 --- /dev/null +++ b/testcase/fate-vsynth1-h261.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170556-332706435 +# @用例名称: fate-vsynth1-h261 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-h261 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-h261 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-h261 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-h263-obmc.sh b/testcase/fate-vsynth1-h263-obmc.sh new file mode 100755 index 0000000000000000000000000000000000000000..eae178076009de231649a2bc452e4f409de6b52c --- /dev/null +++ b/testcase/fate-vsynth1-h263-obmc.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170556-601961715 +# @用例名称: fate-vsynth1-h263-obmc +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-h263-obmc +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-h263-obmc + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-h263-obmc + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-h263.sh b/testcase/fate-vsynth1-h263.sh new file mode 100755 index 0000000000000000000000000000000000000000..926668249038c973f4f20dd430d10a45de2e4e87 --- /dev/null +++ b/testcase/fate-vsynth1-h263.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170556-512365138 +# @用例名称: fate-vsynth1-h263 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-h263 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-h263 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-h263 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-h263p.sh b/testcase/fate-vsynth1-h263p.sh new file mode 100755 index 0000000000000000000000000000000000000000..319af33258b5009ca43134ee6789fec30ed2b7bc --- /dev/null +++ b/testcase/fate-vsynth1-h263p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170556-693031272 +# @用例名称: fate-vsynth1-h263p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-h263p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-h263p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-h263p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-huffyuv.sh b/testcase/fate-vsynth1-huffyuv.sh new file mode 100755 index 0000000000000000000000000000000000000000..37e1cbf6f31a0aa361f294e09ddaccd69560aeb8 --- /dev/null +++ b/testcase/fate-vsynth1-huffyuv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170556-783652778 +# @用例名称: fate-vsynth1-huffyuv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-huffyuv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-huffyuv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-huffyuv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-huffyuvbgr24.sh b/testcase/fate-vsynth1-huffyuvbgr24.sh new file mode 100755 index 0000000000000000000000000000000000000000..1a377bdeac82823491c4140adaf30d7be2d52131 --- /dev/null +++ b/testcase/fate-vsynth1-huffyuvbgr24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170556-871340742 +# @用例名称: fate-vsynth1-huffyuvbgr24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-huffyuvbgr24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-huffyuvbgr24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-huffyuvbgr24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-huffyuvbgra.sh b/testcase/fate-vsynth1-huffyuvbgra.sh new file mode 100755 index 0000000000000000000000000000000000000000..d811230179c8a9c36aa983ed52052a4c74ba67c0 --- /dev/null +++ b/testcase/fate-vsynth1-huffyuvbgra.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170556-960314429 +# @用例名称: fate-vsynth1-huffyuvbgra +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-huffyuvbgra +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-huffyuvbgra + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-huffyuvbgra + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-jpeg2000-97.sh b/testcase/fate-vsynth1-jpeg2000-97.sh new file mode 100755 index 0000000000000000000000000000000000000000..424f246aa18296128c4fc3d762a60088311fc545 --- /dev/null +++ b/testcase/fate-vsynth1-jpeg2000-97.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170557-140113240 +# @用例名称: fate-vsynth1-jpeg2000-97 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-jpeg2000-97 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-jpeg2000-97 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-jpeg2000-97 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-jpeg2000-gbrp12.sh b/testcase/fate-vsynth1-jpeg2000-gbrp12.sh new file mode 100755 index 0000000000000000000000000000000000000000..e4917a2c275af06455b474ce5804b5e47c005a16 --- /dev/null +++ b/testcase/fate-vsynth1-jpeg2000-gbrp12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170557-231353954 +# @用例名称: fate-vsynth1-jpeg2000-gbrp12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-jpeg2000-gbrp12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-jpeg2000-gbrp12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-jpeg2000-gbrp12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-jpeg2000-yuva444p16.sh b/testcase/fate-vsynth1-jpeg2000-yuva444p16.sh new file mode 100755 index 0000000000000000000000000000000000000000..dd1f6318bca067d02922201c580cb73746d861fb --- /dev/null +++ b/testcase/fate-vsynth1-jpeg2000-yuva444p16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170557-321633846 +# @用例名称: fate-vsynth1-jpeg2000-yuva444p16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-jpeg2000-yuva444p16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-jpeg2000-yuva444p16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-jpeg2000-yuva444p16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-jpeg2000.sh b/testcase/fate-vsynth1-jpeg2000.sh new file mode 100755 index 0000000000000000000000000000000000000000..cd406a77608935ce14a9815a5898b1ec5193ec4d --- /dev/null +++ b/testcase/fate-vsynth1-jpeg2000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170557-051103502 +# @用例名称: fate-vsynth1-jpeg2000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-jpeg2000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-jpeg2000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-jpeg2000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-jpegls.sh b/testcase/fate-vsynth1-jpegls.sh new file mode 100755 index 0000000000000000000000000000000000000000..a1a85eb09f44e6987c5812c3bed42a2c173a5b19 --- /dev/null +++ b/testcase/fate-vsynth1-jpegls.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170557-409114354 +# @用例名称: fate-vsynth1-jpegls +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-jpegls +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-jpegls + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-jpegls + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-ljpeg.sh b/testcase/fate-vsynth1-ljpeg.sh new file mode 100755 index 0000000000000000000000000000000000000000..8a903abfe362a10f38caacf850eff92355a7e65c --- /dev/null +++ b/testcase/fate-vsynth1-ljpeg.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170557-498548273 +# @用例名称: fate-vsynth1-ljpeg +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-ljpeg +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-ljpeg + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-ljpeg + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-magicyuv.sh b/testcase/fate-vsynth1-magicyuv.sh new file mode 100755 index 0000000000000000000000000000000000000000..21fe7feea89b8d32d9f67fc6de4edbd2166d76d0 --- /dev/null +++ b/testcase/fate-vsynth1-magicyuv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170557-587943153 +# @用例名称: fate-vsynth1-magicyuv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-magicyuv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-magicyuv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-magicyuv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mjpeg-422.sh b/testcase/fate-vsynth1-mjpeg-422.sh new file mode 100755 index 0000000000000000000000000000000000000000..ea83c3e976d147611ce551a8b96988548ddec35f --- /dev/null +++ b/testcase/fate-vsynth1-mjpeg-422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170557-766057787 +# @用例名称: fate-vsynth1-mjpeg-422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mjpeg-422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mjpeg-422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mjpeg-422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mjpeg-444.sh b/testcase/fate-vsynth1-mjpeg-444.sh new file mode 100755 index 0000000000000000000000000000000000000000..5214ce68d30b7ba4a53203f2e36e06896006f8a2 --- /dev/null +++ b/testcase/fate-vsynth1-mjpeg-444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170557-856837949 +# @用例名称: fate-vsynth1-mjpeg-444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mjpeg-444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mjpeg-444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mjpeg-444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mjpeg-huffman.sh b/testcase/fate-vsynth1-mjpeg-huffman.sh new file mode 100755 index 0000000000000000000000000000000000000000..9e10834a04a3c221f1a7423258be96b9854b27f6 --- /dev/null +++ b/testcase/fate-vsynth1-mjpeg-huffman.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170557-942319377 +# @用例名称: fate-vsynth1-mjpeg-huffman +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mjpeg-huffman +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mjpeg-huffman + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mjpeg-huffman + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mjpeg-trell-huffman.sh b/testcase/fate-vsynth1-mjpeg-trell-huffman.sh new file mode 100755 index 0000000000000000000000000000000000000000..deba7efa37b38c1b1c944d0bcd2d743469660c80 --- /dev/null +++ b/testcase/fate-vsynth1-mjpeg-trell-huffman.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170558-117686433 +# @用例名称: fate-vsynth1-mjpeg-trell-huffman +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mjpeg-trell-huffman +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mjpeg-trell-huffman + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mjpeg-trell-huffman + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mjpeg-trell.sh b/testcase/fate-vsynth1-mjpeg-trell.sh new file mode 100755 index 0000000000000000000000000000000000000000..ad85425669918399f4a8e72a1ca1ca64c60ef90c --- /dev/null +++ b/testcase/fate-vsynth1-mjpeg-trell.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170558-028656186 +# @用例名称: fate-vsynth1-mjpeg-trell +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mjpeg-trell +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mjpeg-trell + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mjpeg-trell + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mjpeg.sh b/testcase/fate-vsynth1-mjpeg.sh new file mode 100755 index 0000000000000000000000000000000000000000..a0604030bb2c134a60dfd2ba0c8491a42bed76ba --- /dev/null +++ b/testcase/fate-vsynth1-mjpeg.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170557-677386942 +# @用例名称: fate-vsynth1-mjpeg +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mjpeg +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mjpeg + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mjpeg + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mov-bgr24.sh b/testcase/fate-vsynth1-mov-bgr24.sh new file mode 100755 index 0000000000000000000000000000000000000000..f504c7be84a8c659077bd22fd784943bcf6340ff --- /dev/null +++ b/testcase/fate-vsynth1-mov-bgr24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170558-204527903 +# @用例名称: fate-vsynth1-mov-bgr24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mov-bgr24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mov-bgr24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mov-bgr24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mov-bpp15.sh b/testcase/fate-vsynth1-mov-bpp15.sh new file mode 100755 index 0000000000000000000000000000000000000000..a60538dd63059e12c2b8fc022a8151fe93bc26a6 --- /dev/null +++ b/testcase/fate-vsynth1-mov-bpp15.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170558-290559189 +# @用例名称: fate-vsynth1-mov-bpp15 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mov-bpp15 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mov-bpp15 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mov-bpp15 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mov-bpp16.sh b/testcase/fate-vsynth1-mov-bpp16.sh new file mode 100755 index 0000000000000000000000000000000000000000..087f36aef1d2694d35d4cdd8a25b33170536c5f9 --- /dev/null +++ b/testcase/fate-vsynth1-mov-bpp16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170558-377751613 +# @用例名称: fate-vsynth1-mov-bpp16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mov-bpp16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mov-bpp16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mov-bpp16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mpeg1.sh b/testcase/fate-vsynth1-mpeg1.sh new file mode 100755 index 0000000000000000000000000000000000000000..db4707b6ef1e6e665a5e942be6f03c2d47cf45d4 --- /dev/null +++ b/testcase/fate-vsynth1-mpeg1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170558-468768351 +# @用例名称: fate-vsynth1-mpeg1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mpeg1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mpeg1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mpeg1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mpeg1b.sh b/testcase/fate-vsynth1-mpeg1b.sh new file mode 100755 index 0000000000000000000000000000000000000000..342c19642d44da703fb472ac61ac20ae329b5477 --- /dev/null +++ b/testcase/fate-vsynth1-mpeg1b.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170558-557318277 +# @用例名称: fate-vsynth1-mpeg1b +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mpeg1b +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mpeg1b + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mpeg1b + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mpeg2-422.sh b/testcase/fate-vsynth1-mpeg2-422.sh new file mode 100755 index 0000000000000000000000000000000000000000..8ea388b3872a82f89b6989d089c96d13e04a2385 --- /dev/null +++ b/testcase/fate-vsynth1-mpeg2-422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170558-736552538 +# @用例名称: fate-vsynth1-mpeg2-422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mpeg2-422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mpeg2-422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mpeg2-422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mpeg2-idct-int.sh b/testcase/fate-vsynth1-mpeg2-idct-int.sh new file mode 100755 index 0000000000000000000000000000000000000000..c89077809b3ed7dcbf288715d195c34347122c80 --- /dev/null +++ b/testcase/fate-vsynth1-mpeg2-idct-int.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170558-826652815 +# @用例名称: fate-vsynth1-mpeg2-idct-int +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mpeg2-idct-int +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mpeg2-idct-int + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mpeg2-idct-int + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mpeg2-ilace.sh b/testcase/fate-vsynth1-mpeg2-ilace.sh new file mode 100755 index 0000000000000000000000000000000000000000..a0b44c2176c9cec859b0aec23eec426e46d47a82 --- /dev/null +++ b/testcase/fate-vsynth1-mpeg2-ilace.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170558-915324659 +# @用例名称: fate-vsynth1-mpeg2-ilace +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mpeg2-ilace +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mpeg2-ilace + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mpeg2-ilace + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mpeg2-ivlc-qprd.sh b/testcase/fate-vsynth1-mpeg2-ivlc-qprd.sh new file mode 100755 index 0000000000000000000000000000000000000000..19361d3d540932b04d14a9a919687b7c463027d4 --- /dev/null +++ b/testcase/fate-vsynth1-mpeg2-ivlc-qprd.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170559-003563271 +# @用例名称: fate-vsynth1-mpeg2-ivlc-qprd +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mpeg2-ivlc-qprd +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mpeg2-ivlc-qprd + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mpeg2-ivlc-qprd + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mpeg2-thread-ivlc.sh b/testcase/fate-vsynth1-mpeg2-thread-ivlc.sh new file mode 100755 index 0000000000000000000000000000000000000000..07bb44f151d8a10166aaaf26c9554b3ec842d374 --- /dev/null +++ b/testcase/fate-vsynth1-mpeg2-thread-ivlc.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170559-178797271 +# @用例名称: fate-vsynth1-mpeg2-thread-ivlc +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mpeg2-thread-ivlc +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mpeg2-thread-ivlc + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mpeg2-thread-ivlc + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mpeg2-thread.sh b/testcase/fate-vsynth1-mpeg2-thread.sh new file mode 100755 index 0000000000000000000000000000000000000000..ec9933d80948d2badf87ffbd876ff052cfffbca6 --- /dev/null +++ b/testcase/fate-vsynth1-mpeg2-thread.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170559-093001511 +# @用例名称: fate-vsynth1-mpeg2-thread +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mpeg2-thread +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mpeg2-thread + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mpeg2-thread + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mpeg2.sh b/testcase/fate-vsynth1-mpeg2.sh new file mode 100755 index 0000000000000000000000000000000000000000..f27cd54282f8a61beedfa12a48593b0c914de0cf --- /dev/null +++ b/testcase/fate-vsynth1-mpeg2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170558-648909614 +# @用例名称: fate-vsynth1-mpeg2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mpeg2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mpeg2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mpeg2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mpeg4-adap.sh b/testcase/fate-vsynth1-mpeg4-adap.sh new file mode 100755 index 0000000000000000000000000000000000000000..be0d4d35ce83d691c165cbdd863d70b4093aeac3 --- /dev/null +++ b/testcase/fate-vsynth1-mpeg4-adap.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170559-352419322 +# @用例名称: fate-vsynth1-mpeg4-adap +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mpeg4-adap +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mpeg4-adap + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mpeg4-adap + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mpeg4-adv.sh b/testcase/fate-vsynth1-mpeg4-adv.sh new file mode 100755 index 0000000000000000000000000000000000000000..fc21f67bbe6b1bbf95b3afcc3c636d1ad1243dba --- /dev/null +++ b/testcase/fate-vsynth1-mpeg4-adv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170559-440778534 +# @用例名称: fate-vsynth1-mpeg4-adv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mpeg4-adv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mpeg4-adv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mpeg4-adv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mpeg4-error.sh b/testcase/fate-vsynth1-mpeg4-error.sh new file mode 100755 index 0000000000000000000000000000000000000000..7fa4c33a4afe8847630f2b70e7f4057aab7bb8fa --- /dev/null +++ b/testcase/fate-vsynth1-mpeg4-error.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170559-534759953 +# @用例名称: fate-vsynth1-mpeg4-error +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mpeg4-error +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mpeg4-error + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mpeg4-error + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mpeg4-nr.sh b/testcase/fate-vsynth1-mpeg4-nr.sh new file mode 100755 index 0000000000000000000000000000000000000000..1b0587e794714f66d65461ec73a3c88cff869989 --- /dev/null +++ b/testcase/fate-vsynth1-mpeg4-nr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170559-621996286 +# @用例名称: fate-vsynth1-mpeg4-nr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mpeg4-nr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mpeg4-nr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mpeg4-nr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mpeg4-nsse.sh b/testcase/fate-vsynth1-mpeg4-nsse.sh new file mode 100755 index 0000000000000000000000000000000000000000..d7b217d9b595bf0993b2507cd89bc9f20a3135af --- /dev/null +++ b/testcase/fate-vsynth1-mpeg4-nsse.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170559-708020092 +# @用例名称: fate-vsynth1-mpeg4-nsse +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mpeg4-nsse +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mpeg4-nsse + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mpeg4-nsse + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mpeg4-qpel.sh b/testcase/fate-vsynth1-mpeg4-qpel.sh new file mode 100755 index 0000000000000000000000000000000000000000..f85c20460e1b2bdcc97a945738b2ea5b82c8c974 --- /dev/null +++ b/testcase/fate-vsynth1-mpeg4-qpel.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170559-795181146 +# @用例名称: fate-vsynth1-mpeg4-qpel +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mpeg4-qpel +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mpeg4-qpel + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mpeg4-qpel + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mpeg4-qprd.sh b/testcase/fate-vsynth1-mpeg4-qprd.sh new file mode 100755 index 0000000000000000000000000000000000000000..f08c0984699c9f2b76c5aa0dbe0a31e6eaef09de --- /dev/null +++ b/testcase/fate-vsynth1-mpeg4-qprd.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170559-882480957 +# @用例名称: fate-vsynth1-mpeg4-qprd +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mpeg4-qprd +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mpeg4-qprd + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mpeg4-qprd + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mpeg4-rc.sh b/testcase/fate-vsynth1-mpeg4-rc.sh new file mode 100755 index 0000000000000000000000000000000000000000..9c6abfaaec4a70d5eef54dea75d5d07e83d6d90d --- /dev/null +++ b/testcase/fate-vsynth1-mpeg4-rc.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170559-968238658 +# @用例名称: fate-vsynth1-mpeg4-rc +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mpeg4-rc +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mpeg4-rc + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mpeg4-rc + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mpeg4-thread.sh b/testcase/fate-vsynth1-mpeg4-thread.sh new file mode 100755 index 0000000000000000000000000000000000000000..3c5e38a52daeffcb94f4c6c3731b8b60b27375f5 --- /dev/null +++ b/testcase/fate-vsynth1-mpeg4-thread.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170600-059136279 +# @用例名称: fate-vsynth1-mpeg4-thread +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mpeg4-thread +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mpeg4-thread + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mpeg4-thread + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mpeg4.sh b/testcase/fate-vsynth1-mpeg4.sh new file mode 100755 index 0000000000000000000000000000000000000000..6c2ce266cadccaf3a4f92f9865b241460fb2bd02 --- /dev/null +++ b/testcase/fate-vsynth1-mpeg4.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170559-265250989 +# @用例名称: fate-vsynth1-mpeg4 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mpeg4 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mpeg4 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mpeg4 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-mpng.sh b/testcase/fate-vsynth1-mpng.sh new file mode 100755 index 0000000000000000000000000000000000000000..3fc7eabe8594e257a95bc4a913e949ae237bbc42 --- /dev/null +++ b/testcase/fate-vsynth1-mpng.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170600-150870492 +# @用例名称: fate-vsynth1-mpng +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-mpng +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-mpng + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-mpng + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-msmpeg4.sh b/testcase/fate-vsynth1-msmpeg4.sh new file mode 100755 index 0000000000000000000000000000000000000000..ae257e0f80daf811f665334e06a69baf99993c97 --- /dev/null +++ b/testcase/fate-vsynth1-msmpeg4.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170600-236626634 +# @用例名称: fate-vsynth1-msmpeg4 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-msmpeg4 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-msmpeg4 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-msmpeg4 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-msmpeg4v2.sh b/testcase/fate-vsynth1-msmpeg4v2.sh new file mode 100755 index 0000000000000000000000000000000000000000..22c1b3625da3a09b8e19ee75f8b16a87c115dee1 --- /dev/null +++ b/testcase/fate-vsynth1-msmpeg4v2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170600-322570112 +# @用例名称: fate-vsynth1-msmpeg4v2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-msmpeg4v2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-msmpeg4v2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-msmpeg4v2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-msrle.sh b/testcase/fate-vsynth1-msrle.sh new file mode 100755 index 0000000000000000000000000000000000000000..3a729666480eb49d6d3b4f8d3f006b5c4a88430c --- /dev/null +++ b/testcase/fate-vsynth1-msrle.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170600-413805456 +# @用例名称: fate-vsynth1-msrle +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-msrle +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-msrle + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-msrle + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-msvideo1.sh b/testcase/fate-vsynth1-msvideo1.sh new file mode 100755 index 0000000000000000000000000000000000000000..f948f1b312293f5341c0158d974776daa76a023b --- /dev/null +++ b/testcase/fate-vsynth1-msvideo1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170600-501562038 +# @用例名称: fate-vsynth1-msvideo1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-msvideo1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-msvideo1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-msvideo1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-prores.sh b/testcase/fate-vsynth1-prores.sh new file mode 100755 index 0000000000000000000000000000000000000000..8f91b7f69e1c197613dd361c4f01c9bc9c90f06d --- /dev/null +++ b/testcase/fate-vsynth1-prores.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170600-586082332 +# @用例名称: fate-vsynth1-prores +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-prores +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-prores + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-prores + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-prores_444.sh b/testcase/fate-vsynth1-prores_444.sh new file mode 100755 index 0000000000000000000000000000000000000000..ebbadc2f6b171816d2cbf883d10507a3aeff206f --- /dev/null +++ b/testcase/fate-vsynth1-prores_444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170600-672981282 +# @用例名称: fate-vsynth1-prores_444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-prores_444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-prores_444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-prores_444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-prores_444_int.sh b/testcase/fate-vsynth1-prores_444_int.sh new file mode 100755 index 0000000000000000000000000000000000000000..0bcba47aba6852481357fc13f69d0597d78bf96c --- /dev/null +++ b/testcase/fate-vsynth1-prores_444_int.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170600-763513370 +# @用例名称: fate-vsynth1-prores_444_int +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-prores_444_int +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-prores_444_int + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-prores_444_int + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-prores_int.sh b/testcase/fate-vsynth1-prores_int.sh new file mode 100755 index 0000000000000000000000000000000000000000..826e6b76c64e085dbd866db0fbb5b3b7b48ba4cf --- /dev/null +++ b/testcase/fate-vsynth1-prores_int.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170600-852067256 +# @用例名称: fate-vsynth1-prores_int +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-prores_int +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-prores_int + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-prores_int + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-prores_ks.sh b/testcase/fate-vsynth1-prores_ks.sh new file mode 100755 index 0000000000000000000000000000000000000000..2267e342933bbcc85c785f0dd35b3d30c7baa62f --- /dev/null +++ b/testcase/fate-vsynth1-prores_ks.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170600-942789020 +# @用例名称: fate-vsynth1-prores_ks +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-prores_ks +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-prores_ks + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-prores_ks + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-qtrle.sh b/testcase/fate-vsynth1-qtrle.sh new file mode 100755 index 0000000000000000000000000000000000000000..0b46e96fb87b622d8c4b8b589583f9c698e07e99 --- /dev/null +++ b/testcase/fate-vsynth1-qtrle.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170601-031995514 +# @用例名称: fate-vsynth1-qtrle +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-qtrle +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-qtrle + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-qtrle + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-qtrlegray.sh b/testcase/fate-vsynth1-qtrlegray.sh new file mode 100755 index 0000000000000000000000000000000000000000..87c89526f8f335ea06e49717ecae5d9f48e4f3ac --- /dev/null +++ b/testcase/fate-vsynth1-qtrlegray.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170601-121670528 +# @用例名称: fate-vsynth1-qtrlegray +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-qtrlegray +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-qtrlegray + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-qtrlegray + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-r210.sh b/testcase/fate-vsynth1-r210.sh new file mode 100755 index 0000000000000000000000000000000000000000..4b65aa4c73e49a07bedcd39267a953753f3c7176 --- /dev/null +++ b/testcase/fate-vsynth1-r210.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170601-209086367 +# @用例名称: fate-vsynth1-r210 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-r210 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-r210 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-r210 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-rgb.sh b/testcase/fate-vsynth1-rgb.sh new file mode 100755 index 0000000000000000000000000000000000000000..4ceb59a84d5393f0ed47adac5c68150c7840b9d7 --- /dev/null +++ b/testcase/fate-vsynth1-rgb.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170601-293701721 +# @用例名称: fate-vsynth1-rgb +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-rgb +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-rgb + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-rgb + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-roqvideo.sh b/testcase/fate-vsynth1-roqvideo.sh new file mode 100755 index 0000000000000000000000000000000000000000..b7ac491aa67e35ba2fbd0c3a49607eb6987e4f10 --- /dev/null +++ b/testcase/fate-vsynth1-roqvideo.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170601-380553021 +# @用例名称: fate-vsynth1-roqvideo +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-roqvideo +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-roqvideo + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-roqvideo + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-rpza.sh b/testcase/fate-vsynth1-rpza.sh new file mode 100755 index 0000000000000000000000000000000000000000..8220c8e751e39379825c5a7bc2c8c98fd2c9b8b9 --- /dev/null +++ b/testcase/fate-vsynth1-rpza.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170601-465709584 +# @用例名称: fate-vsynth1-rpza +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-rpza +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-rpza + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-rpza + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-rv10.sh b/testcase/fate-vsynth1-rv10.sh new file mode 100755 index 0000000000000000000000000000000000000000..1c12dcbc1b92b482038670ab8dbcf6a38afe234f --- /dev/null +++ b/testcase/fate-vsynth1-rv10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170601-549569872 +# @用例名称: fate-vsynth1-rv10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-rv10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-rv10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-rv10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-rv20.sh b/testcase/fate-vsynth1-rv20.sh new file mode 100755 index 0000000000000000000000000000000000000000..844964692e4f13877377844304cfc41452523e44 --- /dev/null +++ b/testcase/fate-vsynth1-rv20.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170601-629920309 +# @用例名称: fate-vsynth1-rv20 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-rv20 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-rv20 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-rv20 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-smc.sh b/testcase/fate-vsynth1-smc.sh new file mode 100755 index 0000000000000000000000000000000000000000..5d06437877d36210b2b1b289b339ec5d59edca7d --- /dev/null +++ b/testcase/fate-vsynth1-smc.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170601-715552163 +# @用例名称: fate-vsynth1-smc +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-smc +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-smc + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-smc + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-snow-hpel.sh b/testcase/fate-vsynth1-snow-hpel.sh new file mode 100755 index 0000000000000000000000000000000000000000..f64de9f72e2b907aad83bfd77714c103e9493762 --- /dev/null +++ b/testcase/fate-vsynth1-snow-hpel.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170601-890732144 +# @用例名称: fate-vsynth1-snow-hpel +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-snow-hpel +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-snow-hpel + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-snow-hpel + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-snow-ll.sh b/testcase/fate-vsynth1-snow-ll.sh new file mode 100755 index 0000000000000000000000000000000000000000..c68716069626871154d13e4cfa5b1b2d928f5408 --- /dev/null +++ b/testcase/fate-vsynth1-snow-ll.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170601-978494056 +# @用例名称: fate-vsynth1-snow-ll +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-snow-ll +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-snow-ll + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-snow-ll + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-snow.sh b/testcase/fate-vsynth1-snow.sh new file mode 100755 index 0000000000000000000000000000000000000000..4c13ce192e4dd9d262016f15585a08d5fdd1264a --- /dev/null +++ b/testcase/fate-vsynth1-snow.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170601-804963313 +# @用例名称: fate-vsynth1-snow +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-snow +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-snow + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-snow + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-speedhq-420p.sh b/testcase/fate-vsynth1-speedhq-420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..f3e3b2cd358209bf9b3308ca0aa81bf264d24f22 --- /dev/null +++ b/testcase/fate-vsynth1-speedhq-420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170602-063710838 +# @用例名称: fate-vsynth1-speedhq-420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-speedhq-420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-speedhq-420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-speedhq-420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-speedhq-422p.sh b/testcase/fate-vsynth1-speedhq-422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..a6b1c6fa528019c05d07cc7b698b68cedbee3e31 --- /dev/null +++ b/testcase/fate-vsynth1-speedhq-422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170602-152709605 +# @用例名称: fate-vsynth1-speedhq-422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-speedhq-422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-speedhq-422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-speedhq-422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-speedhq-444p.sh b/testcase/fate-vsynth1-speedhq-444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..4df6e738f15f9036f151cdd8cc69148383911429 --- /dev/null +++ b/testcase/fate-vsynth1-speedhq-444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170602-244626626 +# @用例名称: fate-vsynth1-speedhq-444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-speedhq-444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-speedhq-444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-speedhq-444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-svq1.sh b/testcase/fate-vsynth1-svq1.sh new file mode 100755 index 0000000000000000000000000000000000000000..f7e67249f871bc414afb378827da5fad22628560 --- /dev/null +++ b/testcase/fate-vsynth1-svq1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170602-337489098 +# @用例名称: fate-vsynth1-svq1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-svq1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-svq1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-svq1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-v210-10.sh b/testcase/fate-vsynth1-v210-10.sh new file mode 100755 index 0000000000000000000000000000000000000000..db63c6e68ed32aecd481ad5e0866b7893a4b6c61 --- /dev/null +++ b/testcase/fate-vsynth1-v210-10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170602-520342818 +# @用例名称: fate-vsynth1-v210-10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-v210-10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-v210-10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-v210-10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-v210.sh b/testcase/fate-vsynth1-v210.sh new file mode 100755 index 0000000000000000000000000000000000000000..f6a52d8c09570e9cab70938bf6a0640eb26c2166 --- /dev/null +++ b/testcase/fate-vsynth1-v210.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170602-427467487 +# @用例名称: fate-vsynth1-v210 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-v210 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-v210 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-v210 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-v308.sh b/testcase/fate-vsynth1-v308.sh new file mode 100755 index 0000000000000000000000000000000000000000..384be74d04f88ba46eac2ca0a50826b9277a38a1 --- /dev/null +++ b/testcase/fate-vsynth1-v308.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170602-612583863 +# @用例名称: fate-vsynth1-v308 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-v308 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-v308 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-v308 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-v408.sh b/testcase/fate-vsynth1-v408.sh new file mode 100755 index 0000000000000000000000000000000000000000..f71638017a06bd34f60586a8ca7520400e575777 --- /dev/null +++ b/testcase/fate-vsynth1-v408.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170602-703345776 +# @用例名称: fate-vsynth1-v408 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-v408 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-v408 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-v408 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-v410.sh b/testcase/fate-vsynth1-v410.sh new file mode 100755 index 0000000000000000000000000000000000000000..bb7e0d9c5db39ec7c79243787f5b66f533ed82e2 --- /dev/null +++ b/testcase/fate-vsynth1-v410.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170602-792971202 +# @用例名称: fate-vsynth1-v410 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-v410 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-v410 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-v410 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-vc2-420p.sh b/testcase/fate-vsynth1-vc2-420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..5e5114a98d0159fd0e79c07026773b723d71487e --- /dev/null +++ b/testcase/fate-vsynth1-vc2-420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170602-881474940 +# @用例名称: fate-vsynth1-vc2-420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-vc2-420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-vc2-420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-vc2-420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-vc2-420p10.sh b/testcase/fate-vsynth1-vc2-420p10.sh new file mode 100755 index 0000000000000000000000000000000000000000..d9d745a17fbc5b29c6948a134aaa39e39a907638 --- /dev/null +++ b/testcase/fate-vsynth1-vc2-420p10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170602-970782822 +# @用例名称: fate-vsynth1-vc2-420p10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-vc2-420p10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-vc2-420p10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-vc2-420p10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-vc2-420p12.sh b/testcase/fate-vsynth1-vc2-420p12.sh new file mode 100755 index 0000000000000000000000000000000000000000..299a4601042ed1d697839ba2e90977c489e1e0a3 --- /dev/null +++ b/testcase/fate-vsynth1-vc2-420p12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170603-060254150 +# @用例名称: fate-vsynth1-vc2-420p12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-vc2-420p12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-vc2-420p12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-vc2-420p12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-vc2-422p.sh b/testcase/fate-vsynth1-vc2-422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..a9ae11683512fc7f171ad065205eec668173aa7d --- /dev/null +++ b/testcase/fate-vsynth1-vc2-422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170603-149392605 +# @用例名称: fate-vsynth1-vc2-422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-vc2-422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-vc2-422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-vc2-422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-vc2-422p10.sh b/testcase/fate-vsynth1-vc2-422p10.sh new file mode 100755 index 0000000000000000000000000000000000000000..d2b2f84d8a77f5e654a24884b5c816c3a074d428 --- /dev/null +++ b/testcase/fate-vsynth1-vc2-422p10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170603-238425611 +# @用例名称: fate-vsynth1-vc2-422p10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-vc2-422p10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-vc2-422p10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-vc2-422p10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-vc2-422p12.sh b/testcase/fate-vsynth1-vc2-422p12.sh new file mode 100755 index 0000000000000000000000000000000000000000..98da334eea70f9f85c30b9cfd80a0db1b0079469 --- /dev/null +++ b/testcase/fate-vsynth1-vc2-422p12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170603-328119736 +# @用例名称: fate-vsynth1-vc2-422p12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-vc2-422p12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-vc2-422p12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-vc2-422p12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-vc2-444p.sh b/testcase/fate-vsynth1-vc2-444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..e3d93b05aaf39978d5cd3ee24cc4a1afef02ba52 --- /dev/null +++ b/testcase/fate-vsynth1-vc2-444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170603-415922877 +# @用例名称: fate-vsynth1-vc2-444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-vc2-444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-vc2-444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-vc2-444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-vc2-444p10.sh b/testcase/fate-vsynth1-vc2-444p10.sh new file mode 100755 index 0000000000000000000000000000000000000000..8fd4defa79ce7fffe19cf27b3e9ad37fd0d93912 --- /dev/null +++ b/testcase/fate-vsynth1-vc2-444p10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170603-504107441 +# @用例名称: fate-vsynth1-vc2-444p10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-vc2-444p10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-vc2-444p10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-vc2-444p10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-vc2-444p12.sh b/testcase/fate-vsynth1-vc2-444p12.sh new file mode 100755 index 0000000000000000000000000000000000000000..1c5504af1049d40d88ee29232bc8098090100232 --- /dev/null +++ b/testcase/fate-vsynth1-vc2-444p12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170603-591689536 +# @用例名称: fate-vsynth1-vc2-444p12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-vc2-444p12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-vc2-444p12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-vc2-444p12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-vc2-t5_3.sh b/testcase/fate-vsynth1-vc2-t5_3.sh new file mode 100755 index 0000000000000000000000000000000000000000..e2a1cee6ff50f104ccdd9190e65bbb7efd21ad7b --- /dev/null +++ b/testcase/fate-vsynth1-vc2-t5_3.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170603-677811640 +# @用例名称: fate-vsynth1-vc2-t5_3 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-vc2-t5_3 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-vc2-t5_3 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-vc2-t5_3 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-vc2-thaar.sh b/testcase/fate-vsynth1-vc2-thaar.sh new file mode 100755 index 0000000000000000000000000000000000000000..dc29c283a22788fe2f0619b86b1ea33874eda302 --- /dev/null +++ b/testcase/fate-vsynth1-vc2-thaar.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170603-766084653 +# @用例名称: fate-vsynth1-vc2-thaar +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-vc2-thaar +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-vc2-thaar + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-vc2-thaar + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-wmv1.sh b/testcase/fate-vsynth1-wmv1.sh new file mode 100755 index 0000000000000000000000000000000000000000..ff1c155293f1caac9ec5e2662b4b967d8de67244 --- /dev/null +++ b/testcase/fate-vsynth1-wmv1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170603-855192208 +# @用例名称: fate-vsynth1-wmv1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-wmv1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-wmv1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-wmv1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-wmv2.sh b/testcase/fate-vsynth1-wmv2.sh new file mode 100755 index 0000000000000000000000000000000000000000..950503e262f76be62120a22e434025d81afb41bd --- /dev/null +++ b/testcase/fate-vsynth1-wmv2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170603-946541780 +# @用例名称: fate-vsynth1-wmv2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-wmv2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-wmv2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-wmv2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-xface.sh b/testcase/fate-vsynth1-xface.sh new file mode 100755 index 0000000000000000000000000000000000000000..cfdc4a05724068bed06e91605de99d972a775914 --- /dev/null +++ b/testcase/fate-vsynth1-xface.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170604-035870312 +# @用例名称: fate-vsynth1-xface +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-xface +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-xface + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-xface + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-y41p.sh b/testcase/fate-vsynth1-y41p.sh new file mode 100755 index 0000000000000000000000000000000000000000..a7e473f852a6356a4140d8b4614932b91b5b5162 --- /dev/null +++ b/testcase/fate-vsynth1-y41p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170604-125905170 +# @用例名称: fate-vsynth1-y41p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-y41p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-y41p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-y41p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-yuv.sh b/testcase/fate-vsynth1-yuv.sh new file mode 100755 index 0000000000000000000000000000000000000000..376f50aca20a5e5f00388a5337e4dcaafe6347ab --- /dev/null +++ b/testcase/fate-vsynth1-yuv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170604-211161620 +# @用例名称: fate-vsynth1-yuv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-yuv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-yuv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-yuv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-yuv4.sh b/testcase/fate-vsynth1-yuv4.sh new file mode 100755 index 0000000000000000000000000000000000000000..8eb66b616490f293b997edc02f425367a9d4f0f1 --- /dev/null +++ b/testcase/fate-vsynth1-yuv4.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170604-298562009 +# @用例名称: fate-vsynth1-yuv4 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-yuv4 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-yuv4 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-yuv4 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth1-zlib.sh b/testcase/fate-vsynth1-zlib.sh new file mode 100755 index 0000000000000000000000000000000000000000..327e421a64b2040f8f5bb4dde90a20123513fb90 --- /dev/null +++ b/testcase/fate-vsynth1-zlib.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170604-388153455 +# @用例名称: fate-vsynth1-zlib +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth1-zlib +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth1-zlib + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth1-zlib + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-amv.sh b/testcase/fate-vsynth2-amv.sh new file mode 100755 index 0000000000000000000000000000000000000000..cb127e20fd2be9668cf9e5bbbd02a8ee33bcbea0 --- /dev/null +++ b/testcase/fate-vsynth2-amv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170604-479647873 +# @用例名称: fate-vsynth2-amv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-amv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-amv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-amv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-asv1.sh b/testcase/fate-vsynth2-asv1.sh new file mode 100755 index 0000000000000000000000000000000000000000..ac410976323fdab5d7a1462ef4c381b45b6fb727 --- /dev/null +++ b/testcase/fate-vsynth2-asv1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170604-571315491 +# @用例名称: fate-vsynth2-asv1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-asv1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-asv1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-asv1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-asv2.sh b/testcase/fate-vsynth2-asv2.sh new file mode 100755 index 0000000000000000000000000000000000000000..ea9cf81908da695c893e1f2ad20c0731b990c81f --- /dev/null +++ b/testcase/fate-vsynth2-asv2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170604-657158439 +# @用例名称: fate-vsynth2-asv2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-asv2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-asv2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-asv2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-avui.sh b/testcase/fate-vsynth2-avui.sh new file mode 100755 index 0000000000000000000000000000000000000000..77195ad8799c88e427b81cd58be022dc57ea8cae --- /dev/null +++ b/testcase/fate-vsynth2-avui.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170604-744519329 +# @用例名称: fate-vsynth2-avui +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-avui +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-avui + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-avui + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-bpp1.sh b/testcase/fate-vsynth2-bpp1.sh new file mode 100755 index 0000000000000000000000000000000000000000..acd8aa63effc8c7d92169773646d2ca819d8cdee --- /dev/null +++ b/testcase/fate-vsynth2-bpp1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170604-830182852 +# @用例名称: fate-vsynth2-bpp1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-bpp1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-bpp1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-bpp1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-bpp15.sh b/testcase/fate-vsynth2-bpp15.sh new file mode 100755 index 0000000000000000000000000000000000000000..ea87d6cf24ab70bae8c471cfb68552d258576e43 --- /dev/null +++ b/testcase/fate-vsynth2-bpp15.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170604-914865135 +# @用例名称: fate-vsynth2-bpp15 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-bpp15 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-bpp15 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-bpp15 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-cinepak.sh b/testcase/fate-vsynth2-cinepak.sh new file mode 100755 index 0000000000000000000000000000000000000000..125a467d56b5b0c36383929928ee6f921f884492 --- /dev/null +++ b/testcase/fate-vsynth2-cinepak.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170605-000581807 +# @用例名称: fate-vsynth2-cinepak +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-cinepak +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-cinepak + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-cinepak + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-cljr.sh b/testcase/fate-vsynth2-cljr.sh new file mode 100755 index 0000000000000000000000000000000000000000..bfe62198ea04ed17bf9ff8ba30f8945917eb8339 --- /dev/null +++ b/testcase/fate-vsynth2-cljr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170605-088055484 +# @用例名称: fate-vsynth2-cljr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-cljr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-cljr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-cljr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-dnxhd-1080i-10bit.sh b/testcase/fate-vsynth2-dnxhd-1080i-10bit.sh new file mode 100755 index 0000000000000000000000000000000000000000..90128df6906a8581cc44421bc1f957d5f37fbd74 --- /dev/null +++ b/testcase/fate-vsynth2-dnxhd-1080i-10bit.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170605-260127366 +# @用例名称: fate-vsynth2-dnxhd-1080i-10bit +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-1080i-10bit +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-1080i-10bit + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-dnxhd-1080i-10bit + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-dnxhd-1080i-colr.sh b/testcase/fate-vsynth2-dnxhd-1080i-colr.sh new file mode 100755 index 0000000000000000000000000000000000000000..0ea774709aa67a3408ffe7f6b9b5772722e32fd3 --- /dev/null +++ b/testcase/fate-vsynth2-dnxhd-1080i-colr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170605-347279990 +# @用例名称: fate-vsynth2-dnxhd-1080i-colr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-1080i-colr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-1080i-colr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-dnxhd-1080i-colr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-dnxhd-1080i.sh b/testcase/fate-vsynth2-dnxhd-1080i.sh new file mode 100755 index 0000000000000000000000000000000000000000..34a997227767db6d462cd601916e02fb567c9c4c --- /dev/null +++ b/testcase/fate-vsynth2-dnxhd-1080i.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170605-173109000 +# @用例名称: fate-vsynth2-dnxhd-1080i +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-1080i +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-1080i + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-dnxhd-1080i + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-dnxhd-2k-hr-hq.sh b/testcase/fate-vsynth2-dnxhd-2k-hr-hq.sh new file mode 100755 index 0000000000000000000000000000000000000000..f6de1965d511dffc7b8533c7ae68478416a29ee2 --- /dev/null +++ b/testcase/fate-vsynth2-dnxhd-2k-hr-hq.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170605-433185927 +# @用例名称: fate-vsynth2-dnxhd-2k-hr-hq +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-2k-hr-hq +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-2k-hr-hq + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-dnxhd-2k-hr-hq + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-dnxhd-4k-hr-lb.sh b/testcase/fate-vsynth2-dnxhd-4k-hr-lb.sh new file mode 100755 index 0000000000000000000000000000000000000000..91280b564378e106a7a30dbde012cb570898f9a4 --- /dev/null +++ b/testcase/fate-vsynth2-dnxhd-4k-hr-lb.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170605-520839993 +# @用例名称: fate-vsynth2-dnxhd-4k-hr-lb +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-4k-hr-lb +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-4k-hr-lb + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-dnxhd-4k-hr-lb + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-dnxhd-720p-10bit.sh b/testcase/fate-vsynth2-dnxhd-720p-10bit.sh new file mode 100755 index 0000000000000000000000000000000000000000..86710cef87a69021b2efdc7d9473b535acfd2af8 --- /dev/null +++ b/testcase/fate-vsynth2-dnxhd-720p-10bit.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170605-709483279 +# @用例名称: fate-vsynth2-dnxhd-720p-10bit +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-720p-10bit +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-720p-10bit + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-dnxhd-720p-10bit + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-dnxhd-720p-hr-lb.sh b/testcase/fate-vsynth2-dnxhd-720p-hr-lb.sh new file mode 100755 index 0000000000000000000000000000000000000000..8e440fc216e6e5ca3b7ff99e4edad56f05e7fd93 --- /dev/null +++ b/testcase/fate-vsynth2-dnxhd-720p-hr-lb.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170605-803131326 +# @用例名称: fate-vsynth2-dnxhd-720p-hr-lb +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-720p-hr-lb +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-720p-hr-lb + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-dnxhd-720p-hr-lb + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-dnxhd-720p-rd.sh b/testcase/fate-vsynth2-dnxhd-720p-rd.sh new file mode 100755 index 0000000000000000000000000000000000000000..8d73a4c2b6e7b2b9e7112f9b084182873b8fdc53 --- /dev/null +++ b/testcase/fate-vsynth2-dnxhd-720p-rd.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170605-897011569 +# @用例名称: fate-vsynth2-dnxhd-720p-rd +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-720p-rd +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-720p-rd + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-dnxhd-720p-rd + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-dnxhd-720p.sh b/testcase/fate-vsynth2-dnxhd-720p.sh new file mode 100755 index 0000000000000000000000000000000000000000..33677e4e381207a77d0fc41ddd0d944277a6692e --- /dev/null +++ b/testcase/fate-vsynth2-dnxhd-720p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170605-613903081 +# @用例名称: fate-vsynth2-dnxhd-720p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-720p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-720p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-dnxhd-720p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-dnxhd-edge1-hr.sh b/testcase/fate-vsynth2-dnxhd-edge1-hr.sh new file mode 100755 index 0000000000000000000000000000000000000000..3da1df78af3f48db9c8cc79436aeaa5c9d5573c0 --- /dev/null +++ b/testcase/fate-vsynth2-dnxhd-edge1-hr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170605-991925580 +# @用例名称: fate-vsynth2-dnxhd-edge1-hr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-edge1-hr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-edge1-hr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-dnxhd-edge1-hr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-dnxhd-edge2-hr.sh b/testcase/fate-vsynth2-dnxhd-edge2-hr.sh new file mode 100755 index 0000000000000000000000000000000000000000..1b27f69292464216fc95d721859b9653f1cea248 --- /dev/null +++ b/testcase/fate-vsynth2-dnxhd-edge2-hr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170606-084921890 +# @用例名称: fate-vsynth2-dnxhd-edge2-hr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-edge2-hr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-edge2-hr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-dnxhd-edge2-hr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-dnxhd-edge3-hr.sh b/testcase/fate-vsynth2-dnxhd-edge3-hr.sh new file mode 100755 index 0000000000000000000000000000000000000000..90aaa8edfa542a358bbec0d8348ab5d576818e6d --- /dev/null +++ b/testcase/fate-vsynth2-dnxhd-edge3-hr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170606-176309700 +# @用例名称: fate-vsynth2-dnxhd-edge3-hr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-edge3-hr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-edge3-hr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-dnxhd-edge3-hr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-dnxhd-hr-hq-mov.sh b/testcase/fate-vsynth2-dnxhd-hr-hq-mov.sh new file mode 100755 index 0000000000000000000000000000000000000000..2edd6657c1ceeb33e1e136ad644e24b8c0c4c7cc --- /dev/null +++ b/testcase/fate-vsynth2-dnxhd-hr-hq-mov.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170606-263799439 +# @用例名称: fate-vsynth2-dnxhd-hr-hq-mov +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-hr-hq-mov +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-hr-hq-mov + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-dnxhd-hr-hq-mov + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-dnxhd-hr-lb-mov.sh b/testcase/fate-vsynth2-dnxhd-hr-lb-mov.sh new file mode 100755 index 0000000000000000000000000000000000000000..04e910418ef5e4978f99466d0796c190f646be6f --- /dev/null +++ b/testcase/fate-vsynth2-dnxhd-hr-lb-mov.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170606-352488832 +# @用例名称: fate-vsynth2-dnxhd-hr-lb-mov +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-hr-lb-mov +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-hr-lb-mov + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-dnxhd-hr-lb-mov + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-dnxhd-hr-sq-mov.sh b/testcase/fate-vsynth2-dnxhd-hr-sq-mov.sh new file mode 100755 index 0000000000000000000000000000000000000000..760dda5ba0bd5c1be01d1690b359b1d69ea311bf --- /dev/null +++ b/testcase/fate-vsynth2-dnxhd-hr-sq-mov.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170606-440459181 +# @用例名称: fate-vsynth2-dnxhd-hr-sq-mov +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-hr-sq-mov +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-hr-sq-mov + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-dnxhd-hr-sq-mov + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-dnxhd-uhd-hr-sq.sh b/testcase/fate-vsynth2-dnxhd-uhd-hr-sq.sh new file mode 100755 index 0000000000000000000000000000000000000000..265588ee1b334e5b21357e0b9f5b925348cbf257 --- /dev/null +++ b/testcase/fate-vsynth2-dnxhd-uhd-hr-sq.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170606-533473289 +# @用例名称: fate-vsynth2-dnxhd-uhd-hr-sq +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-uhd-hr-sq +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-dnxhd-uhd-hr-sq + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-dnxhd-uhd-hr-sq + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-dv-411.sh b/testcase/fate-vsynth2-dv-411.sh new file mode 100755 index 0000000000000000000000000000000000000000..d66d1d32aa303087fb454f36ec5dda007bb972bc --- /dev/null +++ b/testcase/fate-vsynth2-dv-411.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170606-712574853 +# @用例名称: fate-vsynth2-dv-411 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-dv-411 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-dv-411 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-dv-411 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-dv-50.sh b/testcase/fate-vsynth2-dv-50.sh new file mode 100755 index 0000000000000000000000000000000000000000..8158d7b866364dfc4644811d36d0287b508b11b7 --- /dev/null +++ b/testcase/fate-vsynth2-dv-50.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170606-802810627 +# @用例名称: fate-vsynth2-dv-50 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-dv-50 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-dv-50 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-dv-50 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-dv-fhd.sh b/testcase/fate-vsynth2-dv-fhd.sh new file mode 100755 index 0000000000000000000000000000000000000000..e115b9404d84fe0fb69f45b41bf53f862413fb0a --- /dev/null +++ b/testcase/fate-vsynth2-dv-fhd.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170606-892391763 +# @用例名称: fate-vsynth2-dv-fhd +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-dv-fhd +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-dv-fhd + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-dv-fhd + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-dv-hd.sh b/testcase/fate-vsynth2-dv-hd.sh new file mode 100755 index 0000000000000000000000000000000000000000..283f1873a4a576e69b0af6a6af867b706952f3bb --- /dev/null +++ b/testcase/fate-vsynth2-dv-hd.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170606-981866691 +# @用例名称: fate-vsynth2-dv-hd +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-dv-hd +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-dv-hd + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-dv-hd + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-dv.sh b/testcase/fate-vsynth2-dv.sh new file mode 100755 index 0000000000000000000000000000000000000000..2d3f6c8d1b195928068b03189bec4b7cafb0d372 --- /dev/null +++ b/testcase/fate-vsynth2-dv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170606-625213624 +# @用例名称: fate-vsynth2-dv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-dv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-dv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-dv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-ffv1-2pass.sh b/testcase/fate-vsynth2-ffv1-2pass.sh new file mode 100755 index 0000000000000000000000000000000000000000..88ad69734fd16ef60166c73c5addaf8feca1c4d3 --- /dev/null +++ b/testcase/fate-vsynth2-ffv1-2pass.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170607-166430309 +# @用例名称: fate-vsynth2-ffv1-2pass +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-ffv1-2pass +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-ffv1-2pass + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-ffv1-2pass + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-ffv1-2pass10.sh b/testcase/fate-vsynth2-ffv1-2pass10.sh new file mode 100755 index 0000000000000000000000000000000000000000..18e48a14c957346d93c0ae183547fc293dc12d5f --- /dev/null +++ b/testcase/fate-vsynth2-ffv1-2pass10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170607-254447756 +# @用例名称: fate-vsynth2-ffv1-2pass10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-ffv1-2pass10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-ffv1-2pass10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-ffv1-2pass10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-ffv1-v0.sh b/testcase/fate-vsynth2-ffv1-v0.sh new file mode 100755 index 0000000000000000000000000000000000000000..a98f7588c78c5cb4152fa8633b91b0b2bd6d1e42 --- /dev/null +++ b/testcase/fate-vsynth2-ffv1-v0.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170607-344572802 +# @用例名称: fate-vsynth2-ffv1-v0 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-ffv1-v0 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-ffv1-v0 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-ffv1-v0 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-ffv1-v2.sh b/testcase/fate-vsynth2-ffv1-v2.sh new file mode 100755 index 0000000000000000000000000000000000000000..75239470b86cec7fb0be17fbe1fefe83eee2c976 --- /dev/null +++ b/testcase/fate-vsynth2-ffv1-v2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170607-435325915 +# @用例名称: fate-vsynth2-ffv1-v2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-ffv1-v2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-ffv1-v2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-ffv1-v2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-ffv1-v3-bgr0.sh b/testcase/fate-vsynth2-ffv1-v3-bgr0.sh new file mode 100755 index 0000000000000000000000000000000000000000..f9738e0f89f3e7c8d2101b6918bb6e2062a5ab07 --- /dev/null +++ b/testcase/fate-vsynth2-ffv1-v3-bgr0.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170607-526721446 +# @用例名称: fate-vsynth2-ffv1-v3-bgr0 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-ffv1-v3-bgr0 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-ffv1-v3-bgr0 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-ffv1-v3-bgr0 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-ffv1-v3-rgb48.sh b/testcase/fate-vsynth2-ffv1-v3-rgb48.sh new file mode 100755 index 0000000000000000000000000000000000000000..ba193de1b8938477a6dcba0aa2cf0c588ff7f985 --- /dev/null +++ b/testcase/fate-vsynth2-ffv1-v3-rgb48.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170607-617823333 +# @用例名称: fate-vsynth2-ffv1-v3-rgb48 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-ffv1-v3-rgb48 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-ffv1-v3-rgb48 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-ffv1-v3-rgb48 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-ffv1-v3-yuv420p.sh b/testcase/fate-vsynth2-ffv1-v3-yuv420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..095ecdd8d537117718a0e958d6301d7c145e6100 --- /dev/null +++ b/testcase/fate-vsynth2-ffv1-v3-yuv420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170607-712444250 +# @用例名称: fate-vsynth2-ffv1-v3-yuv420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-ffv1-v3-yuv420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-ffv1-v3-yuv420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-ffv1-v3-yuv420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-ffv1-v3-yuv422p10.sh b/testcase/fate-vsynth2-ffv1-v3-yuv422p10.sh new file mode 100755 index 0000000000000000000000000000000000000000..5e0989a3c9e5e46f6cbd8d2c583e8c073f508092 --- /dev/null +++ b/testcase/fate-vsynth2-ffv1-v3-yuv422p10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170607-805756214 +# @用例名称: fate-vsynth2-ffv1-v3-yuv422p10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-ffv1-v3-yuv422p10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-ffv1-v3-yuv422p10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-ffv1-v3-yuv422p10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-ffv1-v3-yuv444p16.sh b/testcase/fate-vsynth2-ffv1-v3-yuv444p16.sh new file mode 100755 index 0000000000000000000000000000000000000000..dc18721d2f794dc6fc6accde8d23ff21520ccbae --- /dev/null +++ b/testcase/fate-vsynth2-ffv1-v3-yuv444p16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170607-898633585 +# @用例名称: fate-vsynth2-ffv1-v3-yuv444p16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-ffv1-v3-yuv444p16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-ffv1-v3-yuv444p16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-ffv1-v3-yuv444p16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-ffv1.sh b/testcase/fate-vsynth2-ffv1.sh new file mode 100755 index 0000000000000000000000000000000000000000..ee93faa35f78293c5dd58b5991a637af08bc46ef --- /dev/null +++ b/testcase/fate-vsynth2-ffv1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170607-075995549 +# @用例名称: fate-vsynth2-ffv1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-ffv1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-ffv1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-ffv1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-ffvhuff.sh b/testcase/fate-vsynth2-ffvhuff.sh new file mode 100755 index 0000000000000000000000000000000000000000..0833752d4be325a10fdcbc0ce783b34c9cc74ba3 --- /dev/null +++ b/testcase/fate-vsynth2-ffvhuff.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170607-990003917 +# @用例名称: fate-vsynth2-ffvhuff +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-ffvhuff +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-ffvhuff + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-ffvhuff + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-ffvhuff420p12.sh b/testcase/fate-vsynth2-ffvhuff420p12.sh new file mode 100755 index 0000000000000000000000000000000000000000..6696aa3f921f2dcbb1bb0946b32d6ad873443e1d --- /dev/null +++ b/testcase/fate-vsynth2-ffvhuff420p12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170608-081801140 +# @用例名称: fate-vsynth2-ffvhuff420p12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-ffvhuff420p12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-ffvhuff420p12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-ffvhuff420p12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-ffvhuff422p10left.sh b/testcase/fate-vsynth2-ffvhuff422p10left.sh new file mode 100755 index 0000000000000000000000000000000000000000..dfdd6627519bf5d98ec544f083f4c20757e83d6e --- /dev/null +++ b/testcase/fate-vsynth2-ffvhuff422p10left.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170608-174281789 +# @用例名称: fate-vsynth2-ffvhuff422p10left +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-ffvhuff422p10left +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-ffvhuff422p10left + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-ffvhuff422p10left + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-ffvhuff444.sh b/testcase/fate-vsynth2-ffvhuff444.sh new file mode 100755 index 0000000000000000000000000000000000000000..9c9e6145c5d3161cd5b3d36f72a03fbbaed8fccf --- /dev/null +++ b/testcase/fate-vsynth2-ffvhuff444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170608-267861128 +# @用例名称: fate-vsynth2-ffvhuff444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-ffvhuff444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-ffvhuff444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-ffvhuff444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-ffvhuff444p16.sh b/testcase/fate-vsynth2-ffvhuff444p16.sh new file mode 100755 index 0000000000000000000000000000000000000000..f1c33aed7dd50c1397be9afa37d21073150b0e73 --- /dev/null +++ b/testcase/fate-vsynth2-ffvhuff444p16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170608-357135631 +# @用例名称: fate-vsynth2-ffvhuff444p16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-ffvhuff444p16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-ffvhuff444p16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-ffvhuff444p16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-flashsv.sh b/testcase/fate-vsynth2-flashsv.sh new file mode 100755 index 0000000000000000000000000000000000000000..6096ab3ba57e9e3f077267bfc5322f6bdc47738c --- /dev/null +++ b/testcase/fate-vsynth2-flashsv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170608-441191305 +# @用例名称: fate-vsynth2-flashsv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-flashsv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-flashsv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-flashsv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-flashsv2.sh b/testcase/fate-vsynth2-flashsv2.sh new file mode 100755 index 0000000000000000000000000000000000000000..81d1d8d87b28c6354bc958de61ffa38bcea32827 --- /dev/null +++ b/testcase/fate-vsynth2-flashsv2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170608-525022303 +# @用例名称: fate-vsynth2-flashsv2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-flashsv2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-flashsv2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-flashsv2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-flv.sh b/testcase/fate-vsynth2-flv.sh new file mode 100755 index 0000000000000000000000000000000000000000..d30653943b224328d440271331c9c67758535b92 --- /dev/null +++ b/testcase/fate-vsynth2-flv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170608-617472994 +# @用例名称: fate-vsynth2-flv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-flv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-flv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-flv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-h261-trellis.sh b/testcase/fate-vsynth2-h261-trellis.sh new file mode 100755 index 0000000000000000000000000000000000000000..06f93ee1e58db1a85086e97d03ca682601e5d3e5 --- /dev/null +++ b/testcase/fate-vsynth2-h261-trellis.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170608-798734266 +# @用例名称: fate-vsynth2-h261-trellis +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-h261-trellis +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-h261-trellis + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-h261-trellis + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-h261.sh b/testcase/fate-vsynth2-h261.sh new file mode 100755 index 0000000000000000000000000000000000000000..abf578d9f0d7a5a8db8a22b3b3a8acfe3dd87f70 --- /dev/null +++ b/testcase/fate-vsynth2-h261.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170608-707499452 +# @用例名称: fate-vsynth2-h261 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-h261 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-h261 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-h261 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-h263-obmc.sh b/testcase/fate-vsynth2-h263-obmc.sh new file mode 100755 index 0000000000000000000000000000000000000000..1df7a99f0bc63d60e570a75d6f8f7e9047a472b6 --- /dev/null +++ b/testcase/fate-vsynth2-h263-obmc.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170608-982381781 +# @用例名称: fate-vsynth2-h263-obmc +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-h263-obmc +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-h263-obmc + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-h263-obmc + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-h263.sh b/testcase/fate-vsynth2-h263.sh new file mode 100755 index 0000000000000000000000000000000000000000..bfab6fee27398c550a5b587ba1b630f2bea2c759 --- /dev/null +++ b/testcase/fate-vsynth2-h263.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170608-891921592 +# @用例名称: fate-vsynth2-h263 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-h263 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-h263 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-h263 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-h263p.sh b/testcase/fate-vsynth2-h263p.sh new file mode 100755 index 0000000000000000000000000000000000000000..8f05d4e85a449a48ad06c854a3edebc5da992088 --- /dev/null +++ b/testcase/fate-vsynth2-h263p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170609-067080172 +# @用例名称: fate-vsynth2-h263p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-h263p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-h263p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-h263p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-huffyuv.sh b/testcase/fate-vsynth2-huffyuv.sh new file mode 100755 index 0000000000000000000000000000000000000000..b1041e6a37d4961e1f2cec6b52cad7499d7ef491 --- /dev/null +++ b/testcase/fate-vsynth2-huffyuv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170609-159975174 +# @用例名称: fate-vsynth2-huffyuv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-huffyuv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-huffyuv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-huffyuv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-huffyuvbgr24.sh b/testcase/fate-vsynth2-huffyuvbgr24.sh new file mode 100755 index 0000000000000000000000000000000000000000..28955d7f2c2081e8c49bb1ff6924b44512a71a35 --- /dev/null +++ b/testcase/fate-vsynth2-huffyuvbgr24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170609-255697151 +# @用例名称: fate-vsynth2-huffyuvbgr24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-huffyuvbgr24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-huffyuvbgr24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-huffyuvbgr24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-huffyuvbgra.sh b/testcase/fate-vsynth2-huffyuvbgra.sh new file mode 100755 index 0000000000000000000000000000000000000000..d43e80e8b37b0930ee5bdb61d50304ac2b118129 --- /dev/null +++ b/testcase/fate-vsynth2-huffyuvbgra.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170609-349477184 +# @用例名称: fate-vsynth2-huffyuvbgra +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-huffyuvbgra +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-huffyuvbgra + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-huffyuvbgra + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-jpeg2000-97.sh b/testcase/fate-vsynth2-jpeg2000-97.sh new file mode 100755 index 0000000000000000000000000000000000000000..b3f1f357b50436ffb2393de3c42fb8357c0483f1 --- /dev/null +++ b/testcase/fate-vsynth2-jpeg2000-97.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170609-536422545 +# @用例名称: fate-vsynth2-jpeg2000-97 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-jpeg2000-97 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-jpeg2000-97 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-jpeg2000-97 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-jpeg2000-gbrp12.sh b/testcase/fate-vsynth2-jpeg2000-gbrp12.sh new file mode 100755 index 0000000000000000000000000000000000000000..0c4672e7b80bf04c284c7d67c39dc18d1ec155b8 --- /dev/null +++ b/testcase/fate-vsynth2-jpeg2000-gbrp12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170609-627341115 +# @用例名称: fate-vsynth2-jpeg2000-gbrp12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-jpeg2000-gbrp12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-jpeg2000-gbrp12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-jpeg2000-gbrp12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-jpeg2000-yuva444p16.sh b/testcase/fate-vsynth2-jpeg2000-yuva444p16.sh new file mode 100755 index 0000000000000000000000000000000000000000..3021a0bb1df085be78c3da5b2bd71eb320d236cb --- /dev/null +++ b/testcase/fate-vsynth2-jpeg2000-yuva444p16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170609-719570589 +# @用例名称: fate-vsynth2-jpeg2000-yuva444p16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-jpeg2000-yuva444p16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-jpeg2000-yuva444p16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-jpeg2000-yuva444p16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-jpeg2000.sh b/testcase/fate-vsynth2-jpeg2000.sh new file mode 100755 index 0000000000000000000000000000000000000000..b9160c67ad31c3fc4f5054b2003dcfac8263972d --- /dev/null +++ b/testcase/fate-vsynth2-jpeg2000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170609-443880566 +# @用例名称: fate-vsynth2-jpeg2000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-jpeg2000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-jpeg2000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-jpeg2000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-jpegls.sh b/testcase/fate-vsynth2-jpegls.sh new file mode 100755 index 0000000000000000000000000000000000000000..3de4cdc34abb457fb5f2a55f9e20fdeaebc71223 --- /dev/null +++ b/testcase/fate-vsynth2-jpegls.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170609-816155169 +# @用例名称: fate-vsynth2-jpegls +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-jpegls +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-jpegls + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-jpegls + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-ljpeg.sh b/testcase/fate-vsynth2-ljpeg.sh new file mode 100755 index 0000000000000000000000000000000000000000..40e34cef2ff7c7af74a3cd57d114e417d8627bb0 --- /dev/null +++ b/testcase/fate-vsynth2-ljpeg.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170609-907064840 +# @用例名称: fate-vsynth2-ljpeg +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-ljpeg +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-ljpeg + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-ljpeg + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-magicyuv.sh b/testcase/fate-vsynth2-magicyuv.sh new file mode 100755 index 0000000000000000000000000000000000000000..17addb6ee8cf06e6688b6609c941bb1d3115280e --- /dev/null +++ b/testcase/fate-vsynth2-magicyuv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170610-002417952 +# @用例名称: fate-vsynth2-magicyuv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-magicyuv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-magicyuv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-magicyuv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mjpeg-422.sh b/testcase/fate-vsynth2-mjpeg-422.sh new file mode 100755 index 0000000000000000000000000000000000000000..467048592cb2c0cb17852aa47115d05cead91de6 --- /dev/null +++ b/testcase/fate-vsynth2-mjpeg-422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170610-186921202 +# @用例名称: fate-vsynth2-mjpeg-422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mjpeg-422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mjpeg-422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mjpeg-422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mjpeg-444.sh b/testcase/fate-vsynth2-mjpeg-444.sh new file mode 100755 index 0000000000000000000000000000000000000000..2a7cba71d787dfff26dc3a368bd60262b85b4fba --- /dev/null +++ b/testcase/fate-vsynth2-mjpeg-444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170610-280112806 +# @用例名称: fate-vsynth2-mjpeg-444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mjpeg-444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mjpeg-444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mjpeg-444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mjpeg-huffman.sh b/testcase/fate-vsynth2-mjpeg-huffman.sh new file mode 100755 index 0000000000000000000000000000000000000000..45bc0169cf29b9b56f90bb51171b7113473b71f7 --- /dev/null +++ b/testcase/fate-vsynth2-mjpeg-huffman.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170610-368094924 +# @用例名称: fate-vsynth2-mjpeg-huffman +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mjpeg-huffman +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mjpeg-huffman + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mjpeg-huffman + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mjpeg-trell-huffman.sh b/testcase/fate-vsynth2-mjpeg-trell-huffman.sh new file mode 100755 index 0000000000000000000000000000000000000000..eba4c24294424bb7e2d757f5a5379cb1456b523e --- /dev/null +++ b/testcase/fate-vsynth2-mjpeg-trell-huffman.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170610-554148081 +# @用例名称: fate-vsynth2-mjpeg-trell-huffman +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mjpeg-trell-huffman +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mjpeg-trell-huffman + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mjpeg-trell-huffman + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mjpeg-trell.sh b/testcase/fate-vsynth2-mjpeg-trell.sh new file mode 100755 index 0000000000000000000000000000000000000000..e0af41bc6d4c3dbad13bd2c8eeb3a03281caf139 --- /dev/null +++ b/testcase/fate-vsynth2-mjpeg-trell.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170610-460660432 +# @用例名称: fate-vsynth2-mjpeg-trell +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mjpeg-trell +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mjpeg-trell + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mjpeg-trell + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mjpeg.sh b/testcase/fate-vsynth2-mjpeg.sh new file mode 100755 index 0000000000000000000000000000000000000000..190b2f3676400c9a9abe214b84eb1e806aab34bb --- /dev/null +++ b/testcase/fate-vsynth2-mjpeg.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170610-094175437 +# @用例名称: fate-vsynth2-mjpeg +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mjpeg +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mjpeg + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mjpeg + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mov-bgr24.sh b/testcase/fate-vsynth2-mov-bgr24.sh new file mode 100755 index 0000000000000000000000000000000000000000..e0b2aac5f301addd621ee4631ab8c06888954618 --- /dev/null +++ b/testcase/fate-vsynth2-mov-bgr24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170610-647492675 +# @用例名称: fate-vsynth2-mov-bgr24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mov-bgr24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mov-bgr24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mov-bgr24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mov-bpp15.sh b/testcase/fate-vsynth2-mov-bpp15.sh new file mode 100755 index 0000000000000000000000000000000000000000..d1847ffe10a8f2c366919060c4824099e6df77ee --- /dev/null +++ b/testcase/fate-vsynth2-mov-bpp15.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170610-738552633 +# @用例名称: fate-vsynth2-mov-bpp15 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mov-bpp15 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mov-bpp15 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mov-bpp15 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mov-bpp16.sh b/testcase/fate-vsynth2-mov-bpp16.sh new file mode 100755 index 0000000000000000000000000000000000000000..373120dc405d1f03f2992c5c6cad697aae8805d9 --- /dev/null +++ b/testcase/fate-vsynth2-mov-bpp16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170610-824255024 +# @用例名称: fate-vsynth2-mov-bpp16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mov-bpp16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mov-bpp16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mov-bpp16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mpeg1.sh b/testcase/fate-vsynth2-mpeg1.sh new file mode 100755 index 0000000000000000000000000000000000000000..29b0d442bd28402eb8a95c29c907feb9022f409a --- /dev/null +++ b/testcase/fate-vsynth2-mpeg1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170610-910187143 +# @用例名称: fate-vsynth2-mpeg1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mpeg1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mpeg1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mpeg1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mpeg1b.sh b/testcase/fate-vsynth2-mpeg1b.sh new file mode 100755 index 0000000000000000000000000000000000000000..e59a12ee48014619de3a0d750115e9d85ff59de3 --- /dev/null +++ b/testcase/fate-vsynth2-mpeg1b.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170611-003810389 +# @用例名称: fate-vsynth2-mpeg1b +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mpeg1b +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mpeg1b + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mpeg1b + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mpeg2-422.sh b/testcase/fate-vsynth2-mpeg2-422.sh new file mode 100755 index 0000000000000000000000000000000000000000..092a0c391eeca7ed0944e8f41084748cb3f14b2f --- /dev/null +++ b/testcase/fate-vsynth2-mpeg2-422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170611-183436393 +# @用例名称: fate-vsynth2-mpeg2-422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mpeg2-422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mpeg2-422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mpeg2-422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mpeg2-idct-int.sh b/testcase/fate-vsynth2-mpeg2-idct-int.sh new file mode 100755 index 0000000000000000000000000000000000000000..32d84aef7640a318962d30b26af1cdb11e512025 --- /dev/null +++ b/testcase/fate-vsynth2-mpeg2-idct-int.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170611-267476929 +# @用例名称: fate-vsynth2-mpeg2-idct-int +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mpeg2-idct-int +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mpeg2-idct-int + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mpeg2-idct-int + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mpeg2-ilace.sh b/testcase/fate-vsynth2-mpeg2-ilace.sh new file mode 100755 index 0000000000000000000000000000000000000000..8ee792b33b69ffedbc7cc5e5d51e6e138b1254f1 --- /dev/null +++ b/testcase/fate-vsynth2-mpeg2-ilace.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170611-357290559 +# @用例名称: fate-vsynth2-mpeg2-ilace +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mpeg2-ilace +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mpeg2-ilace + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mpeg2-ilace + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mpeg2-ivlc-qprd.sh b/testcase/fate-vsynth2-mpeg2-ivlc-qprd.sh new file mode 100755 index 0000000000000000000000000000000000000000..a2534d274c07127eec38f1ba70318cc8c637f7eb --- /dev/null +++ b/testcase/fate-vsynth2-mpeg2-ivlc-qprd.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170611-447816988 +# @用例名称: fate-vsynth2-mpeg2-ivlc-qprd +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mpeg2-ivlc-qprd +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mpeg2-ivlc-qprd + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mpeg2-ivlc-qprd + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mpeg2-thread-ivlc.sh b/testcase/fate-vsynth2-mpeg2-thread-ivlc.sh new file mode 100755 index 0000000000000000000000000000000000000000..f1b59fdd614eb8d0a9f753d52dc69ef4f0996ceb --- /dev/null +++ b/testcase/fate-vsynth2-mpeg2-thread-ivlc.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170611-633904065 +# @用例名称: fate-vsynth2-mpeg2-thread-ivlc +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mpeg2-thread-ivlc +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mpeg2-thread-ivlc + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mpeg2-thread-ivlc + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mpeg2-thread.sh b/testcase/fate-vsynth2-mpeg2-thread.sh new file mode 100755 index 0000000000000000000000000000000000000000..e39e95aa1d39b4d8f5e062eb97d68938302d7799 --- /dev/null +++ b/testcase/fate-vsynth2-mpeg2-thread.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170611-540165491 +# @用例名称: fate-vsynth2-mpeg2-thread +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mpeg2-thread +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mpeg2-thread + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mpeg2-thread + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mpeg2.sh b/testcase/fate-vsynth2-mpeg2.sh new file mode 100755 index 0000000000000000000000000000000000000000..888ada55e3274322d4f1052eaaca14b9d9e59c25 --- /dev/null +++ b/testcase/fate-vsynth2-mpeg2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170611-092984005 +# @用例名称: fate-vsynth2-mpeg2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mpeg2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mpeg2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mpeg2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mpeg4-adap.sh b/testcase/fate-vsynth2-mpeg4-adap.sh new file mode 100755 index 0000000000000000000000000000000000000000..670669a2a27ca74281f42f37ad3fc8a1e9678e10 --- /dev/null +++ b/testcase/fate-vsynth2-mpeg4-adap.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170611-821395675 +# @用例名称: fate-vsynth2-mpeg4-adap +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mpeg4-adap +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mpeg4-adap + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mpeg4-adap + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mpeg4-adv.sh b/testcase/fate-vsynth2-mpeg4-adv.sh new file mode 100755 index 0000000000000000000000000000000000000000..7ff71f796b657da3783a0ccbb0132a1b9af60ce6 --- /dev/null +++ b/testcase/fate-vsynth2-mpeg4-adv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170611-916687900 +# @用例名称: fate-vsynth2-mpeg4-adv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mpeg4-adv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mpeg4-adv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mpeg4-adv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mpeg4-error.sh b/testcase/fate-vsynth2-mpeg4-error.sh new file mode 100755 index 0000000000000000000000000000000000000000..a70891127ce22e93fef082722827464c5097011c --- /dev/null +++ b/testcase/fate-vsynth2-mpeg4-error.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170612-009744039 +# @用例名称: fate-vsynth2-mpeg4-error +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mpeg4-error +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mpeg4-error + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mpeg4-error + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mpeg4-nr.sh b/testcase/fate-vsynth2-mpeg4-nr.sh new file mode 100755 index 0000000000000000000000000000000000000000..39b310c9463eefc4586e9f282998396c12ea36ba --- /dev/null +++ b/testcase/fate-vsynth2-mpeg4-nr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170612-100072800 +# @用例名称: fate-vsynth2-mpeg4-nr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mpeg4-nr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mpeg4-nr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mpeg4-nr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mpeg4-nsse.sh b/testcase/fate-vsynth2-mpeg4-nsse.sh new file mode 100755 index 0000000000000000000000000000000000000000..b0197fac15640bb2172483d54c066b4ebf057199 --- /dev/null +++ b/testcase/fate-vsynth2-mpeg4-nsse.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170612-189889202 +# @用例名称: fate-vsynth2-mpeg4-nsse +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mpeg4-nsse +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mpeg4-nsse + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mpeg4-nsse + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mpeg4-qpel.sh b/testcase/fate-vsynth2-mpeg4-qpel.sh new file mode 100755 index 0000000000000000000000000000000000000000..9ee1d3f9ac005c29cb867fa4077b2fbc2a27214e --- /dev/null +++ b/testcase/fate-vsynth2-mpeg4-qpel.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170612-280147805 +# @用例名称: fate-vsynth2-mpeg4-qpel +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mpeg4-qpel +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mpeg4-qpel + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mpeg4-qpel + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mpeg4-qprd.sh b/testcase/fate-vsynth2-mpeg4-qprd.sh new file mode 100755 index 0000000000000000000000000000000000000000..cd154a22ac71efef0e7c2e6ee1fb5e23cba2466d --- /dev/null +++ b/testcase/fate-vsynth2-mpeg4-qprd.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170612-371357959 +# @用例名称: fate-vsynth2-mpeg4-qprd +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mpeg4-qprd +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mpeg4-qprd + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mpeg4-qprd + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mpeg4-rc.sh b/testcase/fate-vsynth2-mpeg4-rc.sh new file mode 100755 index 0000000000000000000000000000000000000000..105f5c99cc9b2c94f315c76063ebd33ff1325d70 --- /dev/null +++ b/testcase/fate-vsynth2-mpeg4-rc.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170612-462711671 +# @用例名称: fate-vsynth2-mpeg4-rc +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mpeg4-rc +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mpeg4-rc + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mpeg4-rc + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mpeg4-thread.sh b/testcase/fate-vsynth2-mpeg4-thread.sh new file mode 100755 index 0000000000000000000000000000000000000000..8cf4473e0567ed5feef4b408c9444b5bad5e494e --- /dev/null +++ b/testcase/fate-vsynth2-mpeg4-thread.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170612-548909333 +# @用例名称: fate-vsynth2-mpeg4-thread +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mpeg4-thread +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mpeg4-thread + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mpeg4-thread + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mpeg4.sh b/testcase/fate-vsynth2-mpeg4.sh new file mode 100755 index 0000000000000000000000000000000000000000..df61d7048df22334e32c2e38c2e5ec797195f24c --- /dev/null +++ b/testcase/fate-vsynth2-mpeg4.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170611-725639920 +# @用例名称: fate-vsynth2-mpeg4 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mpeg4 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mpeg4 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mpeg4 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-mpng.sh b/testcase/fate-vsynth2-mpng.sh new file mode 100755 index 0000000000000000000000000000000000000000..421d289e0a16b4dee3f14dbb5e5843101050cb2f --- /dev/null +++ b/testcase/fate-vsynth2-mpng.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170612-638777074 +# @用例名称: fate-vsynth2-mpng +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-mpng +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-mpng + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-mpng + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-msmpeg4.sh b/testcase/fate-vsynth2-msmpeg4.sh new file mode 100755 index 0000000000000000000000000000000000000000..23895942bdec78d0241958d0ce51a4c641a40e6d --- /dev/null +++ b/testcase/fate-vsynth2-msmpeg4.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170612-729261663 +# @用例名称: fate-vsynth2-msmpeg4 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-msmpeg4 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-msmpeg4 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-msmpeg4 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-msmpeg4v2.sh b/testcase/fate-vsynth2-msmpeg4v2.sh new file mode 100755 index 0000000000000000000000000000000000000000..122fd43c46cb18505a484408a8fcd5ec679740a2 --- /dev/null +++ b/testcase/fate-vsynth2-msmpeg4v2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170612-818823801 +# @用例名称: fate-vsynth2-msmpeg4v2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-msmpeg4v2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-msmpeg4v2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-msmpeg4v2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-msrle.sh b/testcase/fate-vsynth2-msrle.sh new file mode 100755 index 0000000000000000000000000000000000000000..9aefd282a28c6bf8bedcd7d630a664109900d9e7 --- /dev/null +++ b/testcase/fate-vsynth2-msrle.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170612-910241840 +# @用例名称: fate-vsynth2-msrle +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-msrle +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-msrle + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-msrle + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-msvideo1.sh b/testcase/fate-vsynth2-msvideo1.sh new file mode 100755 index 0000000000000000000000000000000000000000..bbc4c127bbaf0e993288cbc4ab00c52b1ec3659d --- /dev/null +++ b/testcase/fate-vsynth2-msvideo1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170613-001893846 +# @用例名称: fate-vsynth2-msvideo1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-msvideo1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-msvideo1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-msvideo1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-prores.sh b/testcase/fate-vsynth2-prores.sh new file mode 100755 index 0000000000000000000000000000000000000000..da0afa31ea3dad3a1ef4454449937a1099e5806a --- /dev/null +++ b/testcase/fate-vsynth2-prores.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170613-093081611 +# @用例名称: fate-vsynth2-prores +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-prores +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-prores + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-prores + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-prores_444.sh b/testcase/fate-vsynth2-prores_444.sh new file mode 100755 index 0000000000000000000000000000000000000000..52122dca40b3e359693f6be37940e8b42a760529 --- /dev/null +++ b/testcase/fate-vsynth2-prores_444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170613-189320007 +# @用例名称: fate-vsynth2-prores_444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-prores_444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-prores_444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-prores_444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-prores_444_int.sh b/testcase/fate-vsynth2-prores_444_int.sh new file mode 100755 index 0000000000000000000000000000000000000000..fd9d13aaeb0271d0d39910e5983f631084468d18 --- /dev/null +++ b/testcase/fate-vsynth2-prores_444_int.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170613-281989562 +# @用例名称: fate-vsynth2-prores_444_int +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-prores_444_int +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-prores_444_int + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-prores_444_int + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-prores_int.sh b/testcase/fate-vsynth2-prores_int.sh new file mode 100755 index 0000000000000000000000000000000000000000..a75c54659f14d65bf20f75e70c97d630b5f58046 --- /dev/null +++ b/testcase/fate-vsynth2-prores_int.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170613-375897744 +# @用例名称: fate-vsynth2-prores_int +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-prores_int +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-prores_int + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-prores_int + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-prores_ks.sh b/testcase/fate-vsynth2-prores_ks.sh new file mode 100755 index 0000000000000000000000000000000000000000..173b8dde048462f122f74513bd0b8bf1a016da7f --- /dev/null +++ b/testcase/fate-vsynth2-prores_ks.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170613-469174639 +# @用例名称: fate-vsynth2-prores_ks +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-prores_ks +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-prores_ks + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-prores_ks + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-qtrle.sh b/testcase/fate-vsynth2-qtrle.sh new file mode 100755 index 0000000000000000000000000000000000000000..5840c6d10c7a190527554206d844d74cc6023b2a --- /dev/null +++ b/testcase/fate-vsynth2-qtrle.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170613-559720726 +# @用例名称: fate-vsynth2-qtrle +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-qtrle +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-qtrle + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-qtrle + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-qtrlegray.sh b/testcase/fate-vsynth2-qtrlegray.sh new file mode 100755 index 0000000000000000000000000000000000000000..689eaded873deeac00cae4553c7c2d2e3636cfd8 --- /dev/null +++ b/testcase/fate-vsynth2-qtrlegray.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170613-651014830 +# @用例名称: fate-vsynth2-qtrlegray +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-qtrlegray +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-qtrlegray + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-qtrlegray + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-r210.sh b/testcase/fate-vsynth2-r210.sh new file mode 100755 index 0000000000000000000000000000000000000000..cf3c823fd26a15248fc4ad9655d40d0256250f52 --- /dev/null +++ b/testcase/fate-vsynth2-r210.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170613-742567467 +# @用例名称: fate-vsynth2-r210 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-r210 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-r210 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-r210 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-rgb.sh b/testcase/fate-vsynth2-rgb.sh new file mode 100755 index 0000000000000000000000000000000000000000..ae1c19682d5320a1d01d9429519fb4d601e1033f --- /dev/null +++ b/testcase/fate-vsynth2-rgb.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170613-833165984 +# @用例名称: fate-vsynth2-rgb +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-rgb +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-rgb + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-rgb + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-roqvideo.sh b/testcase/fate-vsynth2-roqvideo.sh new file mode 100755 index 0000000000000000000000000000000000000000..d7a7682e3ab37a1eaca8e8d1e1ba2d09aa7cf3de --- /dev/null +++ b/testcase/fate-vsynth2-roqvideo.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170613-926357319 +# @用例名称: fate-vsynth2-roqvideo +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-roqvideo +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-roqvideo + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-roqvideo + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-rpza.sh b/testcase/fate-vsynth2-rpza.sh new file mode 100755 index 0000000000000000000000000000000000000000..708f941306cfdf862665ae8f9be8f6671d1ee841 --- /dev/null +++ b/testcase/fate-vsynth2-rpza.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170614-019660003 +# @用例名称: fate-vsynth2-rpza +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-rpza +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-rpza + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-rpza + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-rv10.sh b/testcase/fate-vsynth2-rv10.sh new file mode 100755 index 0000000000000000000000000000000000000000..6a0b44d4ceea2f9c6a33648d819c13a0d95fbedd --- /dev/null +++ b/testcase/fate-vsynth2-rv10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170614-111554215 +# @用例名称: fate-vsynth2-rv10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-rv10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-rv10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-rv10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-rv20.sh b/testcase/fate-vsynth2-rv20.sh new file mode 100755 index 0000000000000000000000000000000000000000..09d5ec1e69ddf013fd301fe2ce77e1803b4c5c3e --- /dev/null +++ b/testcase/fate-vsynth2-rv20.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170614-207109213 +# @用例名称: fate-vsynth2-rv20 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-rv20 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-rv20 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-rv20 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-smc.sh b/testcase/fate-vsynth2-smc.sh new file mode 100755 index 0000000000000000000000000000000000000000..faabd2b5ea5ac575856012192b0db8f3ab5d58b1 --- /dev/null +++ b/testcase/fate-vsynth2-smc.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170614-296343657 +# @用例名称: fate-vsynth2-smc +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-smc +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-smc + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-smc + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-snow-hpel.sh b/testcase/fate-vsynth2-snow-hpel.sh new file mode 100755 index 0000000000000000000000000000000000000000..b8bd6c6193349a4a7cb586b6126b3cf6011ababc --- /dev/null +++ b/testcase/fate-vsynth2-snow-hpel.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170614-481040231 +# @用例名称: fate-vsynth2-snow-hpel +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-snow-hpel +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-snow-hpel + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-snow-hpel + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-snow-ll.sh b/testcase/fate-vsynth2-snow-ll.sh new file mode 100755 index 0000000000000000000000000000000000000000..9c2d235eeccd936045574b3362c7d337c5921c49 --- /dev/null +++ b/testcase/fate-vsynth2-snow-ll.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170614-578480594 +# @用例名称: fate-vsynth2-snow-ll +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-snow-ll +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-snow-ll + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-snow-ll + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-snow.sh b/testcase/fate-vsynth2-snow.sh new file mode 100755 index 0000000000000000000000000000000000000000..56f667e68385d1da51959a079f5e8a751f145aac --- /dev/null +++ b/testcase/fate-vsynth2-snow.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170614-387449824 +# @用例名称: fate-vsynth2-snow +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-snow +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-snow + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-snow + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-speedhq-420p.sh b/testcase/fate-vsynth2-speedhq-420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..7e7822f52fbc6b43fa020ddfa7c5fa32caa29610 --- /dev/null +++ b/testcase/fate-vsynth2-speedhq-420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170614-678057535 +# @用例名称: fate-vsynth2-speedhq-420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-speedhq-420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-speedhq-420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-speedhq-420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-speedhq-422p.sh b/testcase/fate-vsynth2-speedhq-422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..783728e56cfa251f3f5adb2b303f65f4e2d1e517 --- /dev/null +++ b/testcase/fate-vsynth2-speedhq-422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170614-772830950 +# @用例名称: fate-vsynth2-speedhq-422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-speedhq-422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-speedhq-422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-speedhq-422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-speedhq-444p.sh b/testcase/fate-vsynth2-speedhq-444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..0a3cdb839ed25e853c05c90cd09f324b63c191f9 --- /dev/null +++ b/testcase/fate-vsynth2-speedhq-444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170614-867495386 +# @用例名称: fate-vsynth2-speedhq-444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-speedhq-444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-speedhq-444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-speedhq-444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-svq1.sh b/testcase/fate-vsynth2-svq1.sh new file mode 100755 index 0000000000000000000000000000000000000000..4b2ea3d2a57ad767407ee96a5193f9bcd2c563f2 --- /dev/null +++ b/testcase/fate-vsynth2-svq1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170614-960369098 +# @用例名称: fate-vsynth2-svq1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-svq1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-svq1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-svq1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-v210-10.sh b/testcase/fate-vsynth2-v210-10.sh new file mode 100755 index 0000000000000000000000000000000000000000..14654190532821111f9177ee297b731bfdb855fb --- /dev/null +++ b/testcase/fate-vsynth2-v210-10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170615-136948962 +# @用例名称: fate-vsynth2-v210-10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-v210-10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-v210-10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-v210-10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-v210.sh b/testcase/fate-vsynth2-v210.sh new file mode 100755 index 0000000000000000000000000000000000000000..68ed80f5428fb3d4df52efabcb28576ff7187552 --- /dev/null +++ b/testcase/fate-vsynth2-v210.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170615-046045221 +# @用例名称: fate-vsynth2-v210 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-v210 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-v210 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-v210 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-v308.sh b/testcase/fate-vsynth2-v308.sh new file mode 100755 index 0000000000000000000000000000000000000000..32a53b370573f7fff439b8462e260e13fd4f0acc --- /dev/null +++ b/testcase/fate-vsynth2-v308.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170615-228698395 +# @用例名称: fate-vsynth2-v308 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-v308 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-v308 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-v308 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-v408.sh b/testcase/fate-vsynth2-v408.sh new file mode 100755 index 0000000000000000000000000000000000000000..130a43262f4c2b2545c484fd4cd00eb9e01e27cb --- /dev/null +++ b/testcase/fate-vsynth2-v408.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170615-318560646 +# @用例名称: fate-vsynth2-v408 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-v408 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-v408 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-v408 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-v410.sh b/testcase/fate-vsynth2-v410.sh new file mode 100755 index 0000000000000000000000000000000000000000..83cfccc4ac737176cffacef68bff1b38c51270fe --- /dev/null +++ b/testcase/fate-vsynth2-v410.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170615-409988676 +# @用例名称: fate-vsynth2-v410 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-v410 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-v410 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-v410 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-vc2-420p.sh b/testcase/fate-vsynth2-vc2-420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..df5f6c6edf9ec5bd602071c4cbb77974e244a1e6 --- /dev/null +++ b/testcase/fate-vsynth2-vc2-420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170615-502642562 +# @用例名称: fate-vsynth2-vc2-420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-vc2-420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-vc2-420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-vc2-420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-vc2-420p10.sh b/testcase/fate-vsynth2-vc2-420p10.sh new file mode 100755 index 0000000000000000000000000000000000000000..613e5b2945bec170c42f9b04e0515f17d4448015 --- /dev/null +++ b/testcase/fate-vsynth2-vc2-420p10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170615-591935595 +# @用例名称: fate-vsynth2-vc2-420p10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-vc2-420p10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-vc2-420p10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-vc2-420p10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-vc2-420p12.sh b/testcase/fate-vsynth2-vc2-420p12.sh new file mode 100755 index 0000000000000000000000000000000000000000..5d6e324bd5be1d6b208603fcf9555cb7c61d7640 --- /dev/null +++ b/testcase/fate-vsynth2-vc2-420p12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170615-678482871 +# @用例名称: fate-vsynth2-vc2-420p12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-vc2-420p12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-vc2-420p12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-vc2-420p12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-vc2-422p.sh b/testcase/fate-vsynth2-vc2-422p.sh new file mode 100755 index 0000000000000000000000000000000000000000..adb14e0938ddf5b2a56d2fa6c03f282cd7acd1c2 --- /dev/null +++ b/testcase/fate-vsynth2-vc2-422p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170615-771792423 +# @用例名称: fate-vsynth2-vc2-422p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-vc2-422p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-vc2-422p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-vc2-422p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-vc2-422p10.sh b/testcase/fate-vsynth2-vc2-422p10.sh new file mode 100755 index 0000000000000000000000000000000000000000..637407a68e07cec02af84d36e4a133c9a979fe12 --- /dev/null +++ b/testcase/fate-vsynth2-vc2-422p10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170615-864895341 +# @用例名称: fate-vsynth2-vc2-422p10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-vc2-422p10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-vc2-422p10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-vc2-422p10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-vc2-422p12.sh b/testcase/fate-vsynth2-vc2-422p12.sh new file mode 100755 index 0000000000000000000000000000000000000000..2e160196d8f887da1bf36c36e5b9008990f7b757 --- /dev/null +++ b/testcase/fate-vsynth2-vc2-422p12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170615-956240053 +# @用例名称: fate-vsynth2-vc2-422p12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-vc2-422p12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-vc2-422p12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-vc2-422p12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-vc2-444p.sh b/testcase/fate-vsynth2-vc2-444p.sh new file mode 100755 index 0000000000000000000000000000000000000000..0db1213e7a7411dc6373a2db7c154edd4a701752 --- /dev/null +++ b/testcase/fate-vsynth2-vc2-444p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170616-048129105 +# @用例名称: fate-vsynth2-vc2-444p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-vc2-444p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-vc2-444p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-vc2-444p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-vc2-444p10.sh b/testcase/fate-vsynth2-vc2-444p10.sh new file mode 100755 index 0000000000000000000000000000000000000000..00a11b183d49790db90dd0a6feb3f764e48b632b --- /dev/null +++ b/testcase/fate-vsynth2-vc2-444p10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170616-142497326 +# @用例名称: fate-vsynth2-vc2-444p10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-vc2-444p10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-vc2-444p10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-vc2-444p10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-vc2-444p12.sh b/testcase/fate-vsynth2-vc2-444p12.sh new file mode 100755 index 0000000000000000000000000000000000000000..685f48c3b993cc435f82103bc33c5ce39ae21b1a --- /dev/null +++ b/testcase/fate-vsynth2-vc2-444p12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170616-233645753 +# @用例名称: fate-vsynth2-vc2-444p12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-vc2-444p12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-vc2-444p12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-vc2-444p12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-vc2-t5_3.sh b/testcase/fate-vsynth2-vc2-t5_3.sh new file mode 100755 index 0000000000000000000000000000000000000000..0bdbf9ae42a66b6d55f62f7d9ae8abd9b1a3ca9c --- /dev/null +++ b/testcase/fate-vsynth2-vc2-t5_3.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170616-316035250 +# @用例名称: fate-vsynth2-vc2-t5_3 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-vc2-t5_3 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-vc2-t5_3 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-vc2-t5_3 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-vc2-thaar.sh b/testcase/fate-vsynth2-vc2-thaar.sh new file mode 100755 index 0000000000000000000000000000000000000000..d9d44c56498779d1730404ae5b2149a4f9cfc48f --- /dev/null +++ b/testcase/fate-vsynth2-vc2-thaar.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170616-399395589 +# @用例名称: fate-vsynth2-vc2-thaar +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-vc2-thaar +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-vc2-thaar + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-vc2-thaar + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-wmv1.sh b/testcase/fate-vsynth2-wmv1.sh new file mode 100755 index 0000000000000000000000000000000000000000..0b0b02fcbfce0f7601115abf7360d83f154d5d10 --- /dev/null +++ b/testcase/fate-vsynth2-wmv1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170616-490949816 +# @用例名称: fate-vsynth2-wmv1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-wmv1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-wmv1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-wmv1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-wmv2.sh b/testcase/fate-vsynth2-wmv2.sh new file mode 100755 index 0000000000000000000000000000000000000000..2c3c1db90f56707888caa1eeae39acdd65d65c3a --- /dev/null +++ b/testcase/fate-vsynth2-wmv2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170616-580539493 +# @用例名称: fate-vsynth2-wmv2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-wmv2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-wmv2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-wmv2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-xface.sh b/testcase/fate-vsynth2-xface.sh new file mode 100755 index 0000000000000000000000000000000000000000..024627d3cb60bc66014aa829a649eb5ddd4911e6 --- /dev/null +++ b/testcase/fate-vsynth2-xface.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170616-674700819 +# @用例名称: fate-vsynth2-xface +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-xface +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-xface + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-xface + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-y41p.sh b/testcase/fate-vsynth2-y41p.sh new file mode 100755 index 0000000000000000000000000000000000000000..4b9a2187cf8b8d110f7f9df71025c6b8e3b51c4e --- /dev/null +++ b/testcase/fate-vsynth2-y41p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170616-771594153 +# @用例名称: fate-vsynth2-y41p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-y41p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-y41p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-y41p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-yuv.sh b/testcase/fate-vsynth2-yuv.sh new file mode 100755 index 0000000000000000000000000000000000000000..8a289cb4d0522943c1dc78366cfe188301e0a066 --- /dev/null +++ b/testcase/fate-vsynth2-yuv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170616-865692520 +# @用例名称: fate-vsynth2-yuv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-yuv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-yuv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-yuv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-yuv4.sh b/testcase/fate-vsynth2-yuv4.sh new file mode 100755 index 0000000000000000000000000000000000000000..6caffb787adef4856d78fe54627a194c3def1ff4 --- /dev/null +++ b/testcase/fate-vsynth2-yuv4.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170616-959749029 +# @用例名称: fate-vsynth2-yuv4 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-yuv4 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-yuv4 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-yuv4 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth2-zlib.sh b/testcase/fate-vsynth2-zlib.sh new file mode 100755 index 0000000000000000000000000000000000000000..d87ad634bcf0f12c982663bf077be1d4e7ffcd12 --- /dev/null +++ b/testcase/fate-vsynth2-zlib.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170617-046047660 +# @用例名称: fate-vsynth2-zlib +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth2-zlib +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth2-zlib + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth2-zlib + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-amv.sh b/testcase/fate-vsynth3-amv.sh new file mode 100755 index 0000000000000000000000000000000000000000..444dbcf0e5c9d895185f8143acf442a5c397960c --- /dev/null +++ b/testcase/fate-vsynth3-amv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170617-133917270 +# @用例名称: fate-vsynth3-amv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-amv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-amv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-amv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-asv1.sh b/testcase/fate-vsynth3-asv1.sh new file mode 100755 index 0000000000000000000000000000000000000000..58ff32ca8ec80b245ee0cc2cb27557ef4f326410 --- /dev/null +++ b/testcase/fate-vsynth3-asv1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170617-221684942 +# @用例名称: fate-vsynth3-asv1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-asv1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-asv1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-asv1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-asv2.sh b/testcase/fate-vsynth3-asv2.sh new file mode 100755 index 0000000000000000000000000000000000000000..ae7294153fd45986a487c2a86a3250df57c9a9b8 --- /dev/null +++ b/testcase/fate-vsynth3-asv2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170617-304110187 +# @用例名称: fate-vsynth3-asv2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-asv2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-asv2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-asv2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-bpp1.sh b/testcase/fate-vsynth3-bpp1.sh new file mode 100755 index 0000000000000000000000000000000000000000..033e5708c073e47c289bef4f176a5361b5083a0f --- /dev/null +++ b/testcase/fate-vsynth3-bpp1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170617-395133556 +# @用例名称: fate-vsynth3-bpp1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-bpp1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-bpp1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-bpp1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-bpp15.sh b/testcase/fate-vsynth3-bpp15.sh new file mode 100755 index 0000000000000000000000000000000000000000..27c2f00cd52b909d799296b160c58023b9e85d83 --- /dev/null +++ b/testcase/fate-vsynth3-bpp15.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170617-485692883 +# @用例名称: fate-vsynth3-bpp15 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-bpp15 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-bpp15 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-bpp15 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-cljr.sh b/testcase/fate-vsynth3-cljr.sh new file mode 100755 index 0000000000000000000000000000000000000000..21aff3c16c92c1f26e8e3203705ea53b92bf1879 --- /dev/null +++ b/testcase/fate-vsynth3-cljr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170617-579116135 +# @用例名称: fate-vsynth3-cljr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-cljr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-cljr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-cljr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-dnxhd-1080i-10bit.sh b/testcase/fate-vsynth3-dnxhd-1080i-10bit.sh new file mode 100755 index 0000000000000000000000000000000000000000..5173fbc7cde3108ef9934f409720c3dad59d7c97 --- /dev/null +++ b/testcase/fate-vsynth3-dnxhd-1080i-10bit.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170617-672213043 +# @用例名称: fate-vsynth3-dnxhd-1080i-10bit +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-dnxhd-1080i-10bit +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-dnxhd-1080i-10bit + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-dnxhd-1080i-10bit + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-dnxhd-1080i-colr.sh b/testcase/fate-vsynth3-dnxhd-1080i-colr.sh new file mode 100755 index 0000000000000000000000000000000000000000..148e809b5f1b5e669bee4be96ec9bf759d812f96 --- /dev/null +++ b/testcase/fate-vsynth3-dnxhd-1080i-colr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170617-768825071 +# @用例名称: fate-vsynth3-dnxhd-1080i-colr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-dnxhd-1080i-colr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-dnxhd-1080i-colr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-dnxhd-1080i-colr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-dnxhd-2k-hr-hq.sh b/testcase/fate-vsynth3-dnxhd-2k-hr-hq.sh new file mode 100755 index 0000000000000000000000000000000000000000..80bba67a7af3524db54bb0c19324ff993e13f60d --- /dev/null +++ b/testcase/fate-vsynth3-dnxhd-2k-hr-hq.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170617-861188173 +# @用例名称: fate-vsynth3-dnxhd-2k-hr-hq +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-dnxhd-2k-hr-hq +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-dnxhd-2k-hr-hq + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-dnxhd-2k-hr-hq + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-dnxhd-4k-hr-lb.sh b/testcase/fate-vsynth3-dnxhd-4k-hr-lb.sh new file mode 100755 index 0000000000000000000000000000000000000000..cb8e0f8c6fdd599fda1497ad4ff1e3de6d5a1846 --- /dev/null +++ b/testcase/fate-vsynth3-dnxhd-4k-hr-lb.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170617-954716771 +# @用例名称: fate-vsynth3-dnxhd-4k-hr-lb +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-dnxhd-4k-hr-lb +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-dnxhd-4k-hr-lb + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-dnxhd-4k-hr-lb + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-dnxhd-720p-hr-lb.sh b/testcase/fate-vsynth3-dnxhd-720p-hr-lb.sh new file mode 100755 index 0000000000000000000000000000000000000000..15bef603464118519d133e1dbb0f97f82388233b --- /dev/null +++ b/testcase/fate-vsynth3-dnxhd-720p-hr-lb.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170618-048325899 +# @用例名称: fate-vsynth3-dnxhd-720p-hr-lb +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-dnxhd-720p-hr-lb +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-dnxhd-720p-hr-lb + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-dnxhd-720p-hr-lb + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-dnxhd-edge1-hr.sh b/testcase/fate-vsynth3-dnxhd-edge1-hr.sh new file mode 100755 index 0000000000000000000000000000000000000000..9498a4cc08bc909e84cff0f74afee1b164b67be8 --- /dev/null +++ b/testcase/fate-vsynth3-dnxhd-edge1-hr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170618-141002866 +# @用例名称: fate-vsynth3-dnxhd-edge1-hr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-dnxhd-edge1-hr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-dnxhd-edge1-hr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-dnxhd-edge1-hr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-dnxhd-edge2-hr.sh b/testcase/fate-vsynth3-dnxhd-edge2-hr.sh new file mode 100755 index 0000000000000000000000000000000000000000..c7038e9d9028f4f88a2cae9104e56e15a1eb4880 --- /dev/null +++ b/testcase/fate-vsynth3-dnxhd-edge2-hr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170618-231625882 +# @用例名称: fate-vsynth3-dnxhd-edge2-hr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-dnxhd-edge2-hr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-dnxhd-edge2-hr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-dnxhd-edge2-hr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-dnxhd-edge3-hr.sh b/testcase/fate-vsynth3-dnxhd-edge3-hr.sh new file mode 100755 index 0000000000000000000000000000000000000000..49795e94d4c113d842dcd70533a4a7c8797f9a52 --- /dev/null +++ b/testcase/fate-vsynth3-dnxhd-edge3-hr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170618-323206548 +# @用例名称: fate-vsynth3-dnxhd-edge3-hr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-dnxhd-edge3-hr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-dnxhd-edge3-hr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-dnxhd-edge3-hr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-dnxhd-hr-hq-mov.sh b/testcase/fate-vsynth3-dnxhd-hr-hq-mov.sh new file mode 100755 index 0000000000000000000000000000000000000000..d50ca839ce33943f98ec59f27780f98b067765ec --- /dev/null +++ b/testcase/fate-vsynth3-dnxhd-hr-hq-mov.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170618-421444046 +# @用例名称: fate-vsynth3-dnxhd-hr-hq-mov +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-dnxhd-hr-hq-mov +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-dnxhd-hr-hq-mov + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-dnxhd-hr-hq-mov + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-dnxhd-hr-lb-mov.sh b/testcase/fate-vsynth3-dnxhd-hr-lb-mov.sh new file mode 100755 index 0000000000000000000000000000000000000000..9bcc5c11b5a11003ab4890b3a1f60dd649e3695d --- /dev/null +++ b/testcase/fate-vsynth3-dnxhd-hr-lb-mov.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170618-515768298 +# @用例名称: fate-vsynth3-dnxhd-hr-lb-mov +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-dnxhd-hr-lb-mov +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-dnxhd-hr-lb-mov + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-dnxhd-hr-lb-mov + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-dnxhd-hr-sq-mov.sh b/testcase/fate-vsynth3-dnxhd-hr-sq-mov.sh new file mode 100755 index 0000000000000000000000000000000000000000..2c141a4303876796c16f7548d2438b4ebda354b8 --- /dev/null +++ b/testcase/fate-vsynth3-dnxhd-hr-sq-mov.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170618-609010414 +# @用例名称: fate-vsynth3-dnxhd-hr-sq-mov +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-dnxhd-hr-sq-mov +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-dnxhd-hr-sq-mov + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-dnxhd-hr-sq-mov + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-dnxhd-uhd-hr-sq.sh b/testcase/fate-vsynth3-dnxhd-uhd-hr-sq.sh new file mode 100755 index 0000000000000000000000000000000000000000..a669bd14b154af552add16516269db194b527e9b --- /dev/null +++ b/testcase/fate-vsynth3-dnxhd-uhd-hr-sq.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170618-698015672 +# @用例名称: fate-vsynth3-dnxhd-uhd-hr-sq +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-dnxhd-uhd-hr-sq +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-dnxhd-uhd-hr-sq + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-dnxhd-uhd-hr-sq + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-dv-fhd.sh b/testcase/fate-vsynth3-dv-fhd.sh new file mode 100755 index 0000000000000000000000000000000000000000..210cf690cc100e355179dfff415fd4d54cb6663d --- /dev/null +++ b/testcase/fate-vsynth3-dv-fhd.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170618-791844575 +# @用例名称: fate-vsynth3-dv-fhd +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-dv-fhd +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-dv-fhd + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-dv-fhd + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-dv-hd.sh b/testcase/fate-vsynth3-dv-hd.sh new file mode 100755 index 0000000000000000000000000000000000000000..505e4f390221b67f33f1e7fd94e1c1dda521fdcd --- /dev/null +++ b/testcase/fate-vsynth3-dv-hd.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170618-886697738 +# @用例名称: fate-vsynth3-dv-hd +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-dv-hd +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-dv-hd + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-dv-hd + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-ffv1-2pass.sh b/testcase/fate-vsynth3-ffv1-2pass.sh new file mode 100755 index 0000000000000000000000000000000000000000..0b238fc2a58937585f4a0578f5b60dde98eca33d --- /dev/null +++ b/testcase/fate-vsynth3-ffv1-2pass.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170619-076060300 +# @用例名称: fate-vsynth3-ffv1-2pass +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-ffv1-2pass +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-ffv1-2pass + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-ffv1-2pass + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-ffv1-2pass10.sh b/testcase/fate-vsynth3-ffv1-2pass10.sh new file mode 100755 index 0000000000000000000000000000000000000000..9d5fdf4fc43a32767cf5619d7ad6296625b49a66 --- /dev/null +++ b/testcase/fate-vsynth3-ffv1-2pass10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170619-169460053 +# @用例名称: fate-vsynth3-ffv1-2pass10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-ffv1-2pass10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-ffv1-2pass10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-ffv1-2pass10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-ffv1-v0.sh b/testcase/fate-vsynth3-ffv1-v0.sh new file mode 100755 index 0000000000000000000000000000000000000000..29a1bf757e07b1baaafb3de52c5dcd825eee9c9d --- /dev/null +++ b/testcase/fate-vsynth3-ffv1-v0.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170619-259483270 +# @用例名称: fate-vsynth3-ffv1-v0 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-ffv1-v0 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-ffv1-v0 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-ffv1-v0 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-ffv1-v2.sh b/testcase/fate-vsynth3-ffv1-v2.sh new file mode 100755 index 0000000000000000000000000000000000000000..bf8601210643968dcfdfaa110bd4ff61a55b5919 --- /dev/null +++ b/testcase/fate-vsynth3-ffv1-v2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170619-348568026 +# @用例名称: fate-vsynth3-ffv1-v2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-ffv1-v2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-ffv1-v2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-ffv1-v2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-ffv1-v3-bgr0.sh b/testcase/fate-vsynth3-ffv1-v3-bgr0.sh new file mode 100755 index 0000000000000000000000000000000000000000..02aff7fc976bb0b9103a4b21b6e5def294adf191 --- /dev/null +++ b/testcase/fate-vsynth3-ffv1-v3-bgr0.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170619-444393450 +# @用例名称: fate-vsynth3-ffv1-v3-bgr0 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-ffv1-v3-bgr0 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-ffv1-v3-bgr0 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-ffv1-v3-bgr0 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-ffv1-v3-rgb48.sh b/testcase/fate-vsynth3-ffv1-v3-rgb48.sh new file mode 100755 index 0000000000000000000000000000000000000000..bfe1ec3ff1b84beb92d5a96d2c153e8eba0d4099 --- /dev/null +++ b/testcase/fate-vsynth3-ffv1-v3-rgb48.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170619-537022667 +# @用例名称: fate-vsynth3-ffv1-v3-rgb48 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-ffv1-v3-rgb48 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-ffv1-v3-rgb48 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-ffv1-v3-rgb48 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-ffv1-v3-yuv420p.sh b/testcase/fate-vsynth3-ffv1-v3-yuv420p.sh new file mode 100755 index 0000000000000000000000000000000000000000..7f2ca7600f14896e8e8696b12f779444bb61e484 --- /dev/null +++ b/testcase/fate-vsynth3-ffv1-v3-yuv420p.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170619-633535028 +# @用例名称: fate-vsynth3-ffv1-v3-yuv420p +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-ffv1-v3-yuv420p +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-ffv1-v3-yuv420p + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-ffv1-v3-yuv420p + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-ffv1-v3-yuv422p10.sh b/testcase/fate-vsynth3-ffv1-v3-yuv422p10.sh new file mode 100755 index 0000000000000000000000000000000000000000..a75a7d17f0254482b629d44bd95ad58df9ea1fa8 --- /dev/null +++ b/testcase/fate-vsynth3-ffv1-v3-yuv422p10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170619-723996927 +# @用例名称: fate-vsynth3-ffv1-v3-yuv422p10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-ffv1-v3-yuv422p10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-ffv1-v3-yuv422p10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-ffv1-v3-yuv422p10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-ffv1-v3-yuv444p16.sh b/testcase/fate-vsynth3-ffv1-v3-yuv444p16.sh new file mode 100755 index 0000000000000000000000000000000000000000..c1732c4344e6aca805949b1bbb26fdae6ba95e2e --- /dev/null +++ b/testcase/fate-vsynth3-ffv1-v3-yuv444p16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170619-816506227 +# @用例名称: fate-vsynth3-ffv1-v3-yuv444p16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-ffv1-v3-yuv444p16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-ffv1-v3-yuv444p16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-ffv1-v3-yuv444p16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-ffv1.sh b/testcase/fate-vsynth3-ffv1.sh new file mode 100755 index 0000000000000000000000000000000000000000..55a93cf1ab8a627440f319a87e6cefa755f555c6 --- /dev/null +++ b/testcase/fate-vsynth3-ffv1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170618-980933122 +# @用例名称: fate-vsynth3-ffv1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-ffv1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-ffv1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-ffv1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-ffvhuff.sh b/testcase/fate-vsynth3-ffvhuff.sh new file mode 100755 index 0000000000000000000000000000000000000000..8971d2aa747ce0d1d49de6a4603a6155078ad92d --- /dev/null +++ b/testcase/fate-vsynth3-ffvhuff.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170619-909000526 +# @用例名称: fate-vsynth3-ffvhuff +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-ffvhuff +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-ffvhuff + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-ffvhuff + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-ffvhuff420p12.sh b/testcase/fate-vsynth3-ffvhuff420p12.sh new file mode 100755 index 0000000000000000000000000000000000000000..d600fb89bb097b2f2544af4ae45807528a7a3687 --- /dev/null +++ b/testcase/fate-vsynth3-ffvhuff420p12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170620-002614774 +# @用例名称: fate-vsynth3-ffvhuff420p12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-ffvhuff420p12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-ffvhuff420p12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-ffvhuff420p12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-ffvhuff422p10left.sh b/testcase/fate-vsynth3-ffvhuff422p10left.sh new file mode 100755 index 0000000000000000000000000000000000000000..8f563977ef87512935a9d004e8c24e6f25c2ecad --- /dev/null +++ b/testcase/fate-vsynth3-ffvhuff422p10left.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170620-093283698 +# @用例名称: fate-vsynth3-ffvhuff422p10left +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-ffvhuff422p10left +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-ffvhuff422p10left + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-ffvhuff422p10left + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-ffvhuff444.sh b/testcase/fate-vsynth3-ffvhuff444.sh new file mode 100755 index 0000000000000000000000000000000000000000..947b4efd810787fed85ab5b2bb5f3140dfaa80c6 --- /dev/null +++ b/testcase/fate-vsynth3-ffvhuff444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170620-177847482 +# @用例名称: fate-vsynth3-ffvhuff444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-ffvhuff444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-ffvhuff444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-ffvhuff444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-ffvhuff444p16.sh b/testcase/fate-vsynth3-ffvhuff444p16.sh new file mode 100755 index 0000000000000000000000000000000000000000..7ca28c96d1b6f734435130fddf7f8f5d23b31cb6 --- /dev/null +++ b/testcase/fate-vsynth3-ffvhuff444p16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170620-269109677 +# @用例名称: fate-vsynth3-ffvhuff444p16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-ffvhuff444p16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-ffvhuff444p16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-ffvhuff444p16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-flashsv.sh b/testcase/fate-vsynth3-flashsv.sh new file mode 100755 index 0000000000000000000000000000000000000000..ae2540dd5f3803a363a02871a6c51b9a5b67af05 --- /dev/null +++ b/testcase/fate-vsynth3-flashsv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170620-358702323 +# @用例名称: fate-vsynth3-flashsv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-flashsv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-flashsv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-flashsv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-flashsv2.sh b/testcase/fate-vsynth3-flashsv2.sh new file mode 100755 index 0000000000000000000000000000000000000000..f6f4366dbf562e57dbc3726af2977483f89e9235 --- /dev/null +++ b/testcase/fate-vsynth3-flashsv2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170620-448893037 +# @用例名称: fate-vsynth3-flashsv2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-flashsv2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-flashsv2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-flashsv2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-flv.sh b/testcase/fate-vsynth3-flv.sh new file mode 100755 index 0000000000000000000000000000000000000000..3159bd2b7a009e299a722c2ea12520b6bdc3b96c --- /dev/null +++ b/testcase/fate-vsynth3-flv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170620-537474583 +# @用例名称: fate-vsynth3-flv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-flv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-flv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-flv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-huffyuv.sh b/testcase/fate-vsynth3-huffyuv.sh new file mode 100755 index 0000000000000000000000000000000000000000..ef30fda34e13e916f8743e69668d905a3310ef7b --- /dev/null +++ b/testcase/fate-vsynth3-huffyuv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170620-630058600 +# @用例名称: fate-vsynth3-huffyuv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-huffyuv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-huffyuv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-huffyuv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-huffyuvbgr24.sh b/testcase/fate-vsynth3-huffyuvbgr24.sh new file mode 100755 index 0000000000000000000000000000000000000000..2a7e31ec7979888020d9509c004044a3def22fd2 --- /dev/null +++ b/testcase/fate-vsynth3-huffyuvbgr24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170620-719725675 +# @用例名称: fate-vsynth3-huffyuvbgr24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-huffyuvbgr24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-huffyuvbgr24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-huffyuvbgr24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-huffyuvbgra.sh b/testcase/fate-vsynth3-huffyuvbgra.sh new file mode 100755 index 0000000000000000000000000000000000000000..745e113b2749496c8321f476cc01b9f3563b8692 --- /dev/null +++ b/testcase/fate-vsynth3-huffyuvbgra.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170620-811951260 +# @用例名称: fate-vsynth3-huffyuvbgra +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-huffyuvbgra +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-huffyuvbgra + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-huffyuvbgra + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-jpeg2000-97.sh b/testcase/fate-vsynth3-jpeg2000-97.sh new file mode 100755 index 0000000000000000000000000000000000000000..42ec8a4848e7097d1ee15de82e27c7dd24dcf865 --- /dev/null +++ b/testcase/fate-vsynth3-jpeg2000-97.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170620-997340721 +# @用例名称: fate-vsynth3-jpeg2000-97 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-jpeg2000-97 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-jpeg2000-97 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-jpeg2000-97 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-jpeg2000-gbrp12.sh b/testcase/fate-vsynth3-jpeg2000-gbrp12.sh new file mode 100755 index 0000000000000000000000000000000000000000..aacd212a1d486f96ac6c4696bcb8d46bcddb6c8d --- /dev/null +++ b/testcase/fate-vsynth3-jpeg2000-gbrp12.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170621-090586336 +# @用例名称: fate-vsynth3-jpeg2000-gbrp12 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-jpeg2000-gbrp12 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-jpeg2000-gbrp12 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-jpeg2000-gbrp12 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-jpeg2000-yuva444p16.sh b/testcase/fate-vsynth3-jpeg2000-yuva444p16.sh new file mode 100755 index 0000000000000000000000000000000000000000..b4bbb32bc9e614f79fa9f780a4cc847fd8e3194d --- /dev/null +++ b/testcase/fate-vsynth3-jpeg2000-yuva444p16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170621-183667694 +# @用例名称: fate-vsynth3-jpeg2000-yuva444p16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-jpeg2000-yuva444p16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-jpeg2000-yuva444p16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-jpeg2000-yuva444p16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-jpeg2000.sh b/testcase/fate-vsynth3-jpeg2000.sh new file mode 100755 index 0000000000000000000000000000000000000000..4170e3efbcd0cf8f570d7ce5c1fa1d184e6b0fb6 --- /dev/null +++ b/testcase/fate-vsynth3-jpeg2000.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170620-905173485 +# @用例名称: fate-vsynth3-jpeg2000 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-jpeg2000 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-jpeg2000 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-jpeg2000 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-jpegls.sh b/testcase/fate-vsynth3-jpegls.sh new file mode 100755 index 0000000000000000000000000000000000000000..ab18572db50f163b5c9f6145c210d3ea6b9f19eb --- /dev/null +++ b/testcase/fate-vsynth3-jpegls.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170621-274463916 +# @用例名称: fate-vsynth3-jpegls +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-jpegls +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-jpegls + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-jpegls + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-ljpeg.sh b/testcase/fate-vsynth3-ljpeg.sh new file mode 100755 index 0000000000000000000000000000000000000000..956abbfbb81a3ecaeab34a90201ed017bf76be1a --- /dev/null +++ b/testcase/fate-vsynth3-ljpeg.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170621-363013923 +# @用例名称: fate-vsynth3-ljpeg +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-ljpeg +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-ljpeg + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-ljpeg + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-magicyuv.sh b/testcase/fate-vsynth3-magicyuv.sh new file mode 100755 index 0000000000000000000000000000000000000000..88abd716d477c6fcf3cf56dc526d20ed6a60db52 --- /dev/null +++ b/testcase/fate-vsynth3-magicyuv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170621-447011108 +# @用例名称: fate-vsynth3-magicyuv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-magicyuv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-magicyuv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-magicyuv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mjpeg-422.sh b/testcase/fate-vsynth3-mjpeg-422.sh new file mode 100755 index 0000000000000000000000000000000000000000..4c820a74a9049daf3ec47c5d4c011b1bf16416d9 --- /dev/null +++ b/testcase/fate-vsynth3-mjpeg-422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170621-625639562 +# @用例名称: fate-vsynth3-mjpeg-422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mjpeg-422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mjpeg-422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mjpeg-422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mjpeg-444.sh b/testcase/fate-vsynth3-mjpeg-444.sh new file mode 100755 index 0000000000000000000000000000000000000000..adaf5aab13ac82d7b4c518980f275e884a2ee3ea --- /dev/null +++ b/testcase/fate-vsynth3-mjpeg-444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170621-718411266 +# @用例名称: fate-vsynth3-mjpeg-444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mjpeg-444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mjpeg-444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mjpeg-444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mjpeg-huffman.sh b/testcase/fate-vsynth3-mjpeg-huffman.sh new file mode 100755 index 0000000000000000000000000000000000000000..88625368c33687351d26dcd73d9f43c743cb3fa3 --- /dev/null +++ b/testcase/fate-vsynth3-mjpeg-huffman.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170621-810588770 +# @用例名称: fate-vsynth3-mjpeg-huffman +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mjpeg-huffman +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mjpeg-huffman + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mjpeg-huffman + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mjpeg-trell-huffman.sh b/testcase/fate-vsynth3-mjpeg-trell-huffman.sh new file mode 100755 index 0000000000000000000000000000000000000000..91d6abdd65a3f6f99f79d0e8c443f82447b6deb2 --- /dev/null +++ b/testcase/fate-vsynth3-mjpeg-trell-huffman.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170621-992728485 +# @用例名称: fate-vsynth3-mjpeg-trell-huffman +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mjpeg-trell-huffman +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mjpeg-trell-huffman + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mjpeg-trell-huffman + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mjpeg-trell.sh b/testcase/fate-vsynth3-mjpeg-trell.sh new file mode 100755 index 0000000000000000000000000000000000000000..b77279336634667caeec3cbdeb973ee2c7e9b18b --- /dev/null +++ b/testcase/fate-vsynth3-mjpeg-trell.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170621-899557439 +# @用例名称: fate-vsynth3-mjpeg-trell +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mjpeg-trell +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mjpeg-trell + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mjpeg-trell + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mjpeg.sh b/testcase/fate-vsynth3-mjpeg.sh new file mode 100755 index 0000000000000000000000000000000000000000..166c9039ca726b7dd77c601520a83bce405bc8ad --- /dev/null +++ b/testcase/fate-vsynth3-mjpeg.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170621-533664972 +# @用例名称: fate-vsynth3-mjpeg +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mjpeg +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mjpeg + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mjpeg + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mov-bgr24.sh b/testcase/fate-vsynth3-mov-bgr24.sh new file mode 100755 index 0000000000000000000000000000000000000000..f27115c84161b22af4651eed35ea1db4aad4bfe0 --- /dev/null +++ b/testcase/fate-vsynth3-mov-bgr24.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170622-084258234 +# @用例名称: fate-vsynth3-mov-bgr24 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mov-bgr24 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mov-bgr24 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mov-bgr24 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mov-bpp15.sh b/testcase/fate-vsynth3-mov-bpp15.sh new file mode 100755 index 0000000000000000000000000000000000000000..2f3bc1884929e375c97975df21bae0c17b4fbf07 --- /dev/null +++ b/testcase/fate-vsynth3-mov-bpp15.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170622-174702002 +# @用例名称: fate-vsynth3-mov-bpp15 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mov-bpp15 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mov-bpp15 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mov-bpp15 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mov-bpp16.sh b/testcase/fate-vsynth3-mov-bpp16.sh new file mode 100755 index 0000000000000000000000000000000000000000..e4c46d3442cffad262e4d8e91ac71ed264dc5bee --- /dev/null +++ b/testcase/fate-vsynth3-mov-bpp16.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170622-264908337 +# @用例名称: fate-vsynth3-mov-bpp16 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mov-bpp16 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mov-bpp16 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mov-bpp16 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mpeg1.sh b/testcase/fate-vsynth3-mpeg1.sh new file mode 100755 index 0000000000000000000000000000000000000000..e84538b8e8432239e23f0b42214f78b1efc3aed2 --- /dev/null +++ b/testcase/fate-vsynth3-mpeg1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170622-354105931 +# @用例名称: fate-vsynth3-mpeg1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mpeg1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mpeg1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mpeg1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mpeg1b.sh b/testcase/fate-vsynth3-mpeg1b.sh new file mode 100755 index 0000000000000000000000000000000000000000..f836964936107c7f263f51b277b3d7ac16d08fbb --- /dev/null +++ b/testcase/fate-vsynth3-mpeg1b.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170622-445257557 +# @用例名称: fate-vsynth3-mpeg1b +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mpeg1b +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mpeg1b + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mpeg1b + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mpeg2-422.sh b/testcase/fate-vsynth3-mpeg2-422.sh new file mode 100755 index 0000000000000000000000000000000000000000..ea229897457fb7184292043b2bd74b5ae3b94561 --- /dev/null +++ b/testcase/fate-vsynth3-mpeg2-422.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170622-629942851 +# @用例名称: fate-vsynth3-mpeg2-422 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mpeg2-422 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mpeg2-422 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mpeg2-422 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mpeg2-idct-int.sh b/testcase/fate-vsynth3-mpeg2-idct-int.sh new file mode 100755 index 0000000000000000000000000000000000000000..1347e5a2887a2dcefb5fe3788940072b0d1fecf1 --- /dev/null +++ b/testcase/fate-vsynth3-mpeg2-idct-int.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170622-718516867 +# @用例名称: fate-vsynth3-mpeg2-idct-int +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mpeg2-idct-int +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mpeg2-idct-int + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mpeg2-idct-int + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mpeg2-ilace.sh b/testcase/fate-vsynth3-mpeg2-ilace.sh new file mode 100755 index 0000000000000000000000000000000000000000..2875e05c78858faf5a1168db00e360b35224adb9 --- /dev/null +++ b/testcase/fate-vsynth3-mpeg2-ilace.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170622-806177822 +# @用例名称: fate-vsynth3-mpeg2-ilace +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mpeg2-ilace +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mpeg2-ilace + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mpeg2-ilace + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mpeg2-ivlc-qprd.sh b/testcase/fate-vsynth3-mpeg2-ivlc-qprd.sh new file mode 100755 index 0000000000000000000000000000000000000000..018fc6f2440ef5ddb0b31ed664fa8a4f5de9e2d7 --- /dev/null +++ b/testcase/fate-vsynth3-mpeg2-ivlc-qprd.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170622-894835676 +# @用例名称: fate-vsynth3-mpeg2-ivlc-qprd +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mpeg2-ivlc-qprd +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mpeg2-ivlc-qprd + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mpeg2-ivlc-qprd + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mpeg2-thread-ivlc.sh b/testcase/fate-vsynth3-mpeg2-thread-ivlc.sh new file mode 100755 index 0000000000000000000000000000000000000000..6a5613a5eaecfdd562a79e8642029b9a5b9340b1 --- /dev/null +++ b/testcase/fate-vsynth3-mpeg2-thread-ivlc.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170623-077486040 +# @用例名称: fate-vsynth3-mpeg2-thread-ivlc +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mpeg2-thread-ivlc +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mpeg2-thread-ivlc + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mpeg2-thread-ivlc + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mpeg2-thread.sh b/testcase/fate-vsynth3-mpeg2-thread.sh new file mode 100755 index 0000000000000000000000000000000000000000..63a720c9db129e3f539c7b14aeed3896e18f4333 --- /dev/null +++ b/testcase/fate-vsynth3-mpeg2-thread.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170622-985077249 +# @用例名称: fate-vsynth3-mpeg2-thread +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mpeg2-thread +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mpeg2-thread + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mpeg2-thread + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mpeg2.sh b/testcase/fate-vsynth3-mpeg2.sh new file mode 100755 index 0000000000000000000000000000000000000000..b9bf75a2fb89ffcfa8a0a9137562e081479936bb --- /dev/null +++ b/testcase/fate-vsynth3-mpeg2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170622-537283305 +# @用例名称: fate-vsynth3-mpeg2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mpeg2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mpeg2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mpeg2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mpeg4-adap.sh b/testcase/fate-vsynth3-mpeg4-adap.sh new file mode 100755 index 0000000000000000000000000000000000000000..494f38ebbb01755c1e3c13896333cec7f37a68ca --- /dev/null +++ b/testcase/fate-vsynth3-mpeg4-adap.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170623-259974078 +# @用例名称: fate-vsynth3-mpeg4-adap +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mpeg4-adap +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mpeg4-adap + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mpeg4-adap + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mpeg4-adv.sh b/testcase/fate-vsynth3-mpeg4-adv.sh new file mode 100755 index 0000000000000000000000000000000000000000..bae21ef6c6b7b791eb99a8589fbdb4dc23f8ce7e --- /dev/null +++ b/testcase/fate-vsynth3-mpeg4-adv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170623-354457819 +# @用例名称: fate-vsynth3-mpeg4-adv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mpeg4-adv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mpeg4-adv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mpeg4-adv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mpeg4-error.sh b/testcase/fate-vsynth3-mpeg4-error.sh new file mode 100755 index 0000000000000000000000000000000000000000..41a2d22c254ffbbb5cf2eec99f56729533fd0aa8 --- /dev/null +++ b/testcase/fate-vsynth3-mpeg4-error.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170623-448480218 +# @用例名称: fate-vsynth3-mpeg4-error +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mpeg4-error +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mpeg4-error + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mpeg4-error + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mpeg4-nr.sh b/testcase/fate-vsynth3-mpeg4-nr.sh new file mode 100755 index 0000000000000000000000000000000000000000..155a401e3cf283c0f2996fd22dc547e59dc87b83 --- /dev/null +++ b/testcase/fate-vsynth3-mpeg4-nr.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170623-537441477 +# @用例名称: fate-vsynth3-mpeg4-nr +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mpeg4-nr +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mpeg4-nr + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mpeg4-nr + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mpeg4-nsse.sh b/testcase/fate-vsynth3-mpeg4-nsse.sh new file mode 100755 index 0000000000000000000000000000000000000000..2bbb4769ee99fc6edb3687a564cebe2c7d69181d --- /dev/null +++ b/testcase/fate-vsynth3-mpeg4-nsse.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170623-621773155 +# @用例名称: fate-vsynth3-mpeg4-nsse +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mpeg4-nsse +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mpeg4-nsse + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mpeg4-nsse + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mpeg4-qpel.sh b/testcase/fate-vsynth3-mpeg4-qpel.sh new file mode 100755 index 0000000000000000000000000000000000000000..6058a81ccd64560062b73dee33abffdb591e5535 --- /dev/null +++ b/testcase/fate-vsynth3-mpeg4-qpel.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170623-711353562 +# @用例名称: fate-vsynth3-mpeg4-qpel +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mpeg4-qpel +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mpeg4-qpel + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mpeg4-qpel + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mpeg4-qprd.sh b/testcase/fate-vsynth3-mpeg4-qprd.sh new file mode 100755 index 0000000000000000000000000000000000000000..dd1a911abd79977086747c85cffda8f8b2ce6838 --- /dev/null +++ b/testcase/fate-vsynth3-mpeg4-qprd.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170623-802852961 +# @用例名称: fate-vsynth3-mpeg4-qprd +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mpeg4-qprd +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mpeg4-qprd + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mpeg4-qprd + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mpeg4-rc.sh b/testcase/fate-vsynth3-mpeg4-rc.sh new file mode 100755 index 0000000000000000000000000000000000000000..40f5a6f9e7c1d1860298a4c8dd841cdd1a15d275 --- /dev/null +++ b/testcase/fate-vsynth3-mpeg4-rc.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170623-892076264 +# @用例名称: fate-vsynth3-mpeg4-rc +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mpeg4-rc +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mpeg4-rc + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mpeg4-rc + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mpeg4-thread.sh b/testcase/fate-vsynth3-mpeg4-thread.sh new file mode 100755 index 0000000000000000000000000000000000000000..c434b28dad3136ca0f82d276598db5bb6017e2ba --- /dev/null +++ b/testcase/fate-vsynth3-mpeg4-thread.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170623-984245220 +# @用例名称: fate-vsynth3-mpeg4-thread +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mpeg4-thread +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mpeg4-thread + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mpeg4-thread + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mpeg4.sh b/testcase/fate-vsynth3-mpeg4.sh new file mode 100755 index 0000000000000000000000000000000000000000..f05faac78a7cbe0044e2b7a4c363358d28bd0457 --- /dev/null +++ b/testcase/fate-vsynth3-mpeg4.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170623-168850153 +# @用例名称: fate-vsynth3-mpeg4 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mpeg4 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mpeg4 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mpeg4 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-mpng.sh b/testcase/fate-vsynth3-mpng.sh new file mode 100755 index 0000000000000000000000000000000000000000..681db7628c6c26ef744ad602ef1cc2853fe65c22 --- /dev/null +++ b/testcase/fate-vsynth3-mpng.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170624-081191723 +# @用例名称: fate-vsynth3-mpng +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-mpng +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-mpng + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-mpng + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-msmpeg4.sh b/testcase/fate-vsynth3-msmpeg4.sh new file mode 100755 index 0000000000000000000000000000000000000000..4fd74dade7edada0a9df781b4fd69122842ef275 --- /dev/null +++ b/testcase/fate-vsynth3-msmpeg4.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170624-177927769 +# @用例名称: fate-vsynth3-msmpeg4 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-msmpeg4 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-msmpeg4 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-msmpeg4 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-msmpeg4v2.sh b/testcase/fate-vsynth3-msmpeg4v2.sh new file mode 100755 index 0000000000000000000000000000000000000000..bdc62dafc5290312c31ddfa771e351af15eb4b31 --- /dev/null +++ b/testcase/fate-vsynth3-msmpeg4v2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170624-268386558 +# @用例名称: fate-vsynth3-msmpeg4v2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-msmpeg4v2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-msmpeg4v2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-msmpeg4v2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-msrle.sh b/testcase/fate-vsynth3-msrle.sh new file mode 100755 index 0000000000000000000000000000000000000000..8ef49496aae9bfd8dfcf35dec2a18a03456410c4 --- /dev/null +++ b/testcase/fate-vsynth3-msrle.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170624-358100772 +# @用例名称: fate-vsynth3-msrle +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-msrle +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-msrle + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-msrle + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-prores.sh b/testcase/fate-vsynth3-prores.sh new file mode 100755 index 0000000000000000000000000000000000000000..cc616c6dba22e782a828d36e9237bbc261808cb0 --- /dev/null +++ b/testcase/fate-vsynth3-prores.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170624-452990215 +# @用例名称: fate-vsynth3-prores +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-prores +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-prores + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-prores + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-prores_444.sh b/testcase/fate-vsynth3-prores_444.sh new file mode 100755 index 0000000000000000000000000000000000000000..fb2ca98c4159310b801a278fcc33396997d9aaf0 --- /dev/null +++ b/testcase/fate-vsynth3-prores_444.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170624-541951492 +# @用例名称: fate-vsynth3-prores_444 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-prores_444 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-prores_444 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-prores_444 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-prores_444_int.sh b/testcase/fate-vsynth3-prores_444_int.sh new file mode 100755 index 0000000000000000000000000000000000000000..640ced42af7a76915c5fce98d1eeb29f8659fe86 --- /dev/null +++ b/testcase/fate-vsynth3-prores_444_int.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170624-624677823 +# @用例名称: fate-vsynth3-prores_444_int +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-prores_444_int +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-prores_444_int + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-prores_444_int + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-prores_int.sh b/testcase/fate-vsynth3-prores_int.sh new file mode 100755 index 0000000000000000000000000000000000000000..836b2480cc1153ba5824810108a56205efe481cd --- /dev/null +++ b/testcase/fate-vsynth3-prores_int.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170624-714475976 +# @用例名称: fate-vsynth3-prores_int +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-prores_int +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-prores_int + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-prores_int + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-prores_ks.sh b/testcase/fate-vsynth3-prores_ks.sh new file mode 100755 index 0000000000000000000000000000000000000000..44737bc258123ee179b3a9ec5b6dbd222bb542f9 --- /dev/null +++ b/testcase/fate-vsynth3-prores_ks.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170624-807682371 +# @用例名称: fate-vsynth3-prores_ks +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-prores_ks +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-prores_ks + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-prores_ks + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-qtrle.sh b/testcase/fate-vsynth3-qtrle.sh new file mode 100755 index 0000000000000000000000000000000000000000..aa387ab483561a64bfb6a62d9a44382110966106 --- /dev/null +++ b/testcase/fate-vsynth3-qtrle.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170624-900117272 +# @用例名称: fate-vsynth3-qtrle +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-qtrle +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-qtrle + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-qtrle + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-r210.sh b/testcase/fate-vsynth3-r210.sh new file mode 100755 index 0000000000000000000000000000000000000000..d3e947621b5e6d23c3714bc9fa83a280163f9cbb --- /dev/null +++ b/testcase/fate-vsynth3-r210.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170624-996118702 +# @用例名称: fate-vsynth3-r210 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-r210 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-r210 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-r210 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-rgb.sh b/testcase/fate-vsynth3-rgb.sh new file mode 100755 index 0000000000000000000000000000000000000000..9562f59af69a790529de0c0db32b7318641abed2 --- /dev/null +++ b/testcase/fate-vsynth3-rgb.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170625-089322577 +# @用例名称: fate-vsynth3-rgb +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-rgb +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-rgb + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-rgb + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-rpza.sh b/testcase/fate-vsynth3-rpza.sh new file mode 100755 index 0000000000000000000000000000000000000000..69dcd1235453109dfa8c04a978314ca77bdaf049 --- /dev/null +++ b/testcase/fate-vsynth3-rpza.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170625-181697890 +# @用例名称: fate-vsynth3-rpza +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-rpza +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-rpza + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-rpza + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-smc.sh b/testcase/fate-vsynth3-smc.sh new file mode 100755 index 0000000000000000000000000000000000000000..85b7cafc78aba68ecff79802e16f6ccf56e71df9 --- /dev/null +++ b/testcase/fate-vsynth3-smc.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170625-271537420 +# @用例名称: fate-vsynth3-smc +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-smc +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-smc + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-smc + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-svq1.sh b/testcase/fate-vsynth3-svq1.sh new file mode 100755 index 0000000000000000000000000000000000000000..f20ff3efa8d3acfb55582dc0f6796d22435f7e8e --- /dev/null +++ b/testcase/fate-vsynth3-svq1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170625-363738676 +# @用例名称: fate-vsynth3-svq1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-svq1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-svq1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-svq1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-v210-10.sh b/testcase/fate-vsynth3-v210-10.sh new file mode 100755 index 0000000000000000000000000000000000000000..d82e8c95864974e39f5050f39ce4b00336b04a4b --- /dev/null +++ b/testcase/fate-vsynth3-v210-10.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170625-553177297 +# @用例名称: fate-vsynth3-v210-10 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-v210-10 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-v210-10 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-v210-10 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-v210.sh b/testcase/fate-vsynth3-v210.sh new file mode 100755 index 0000000000000000000000000000000000000000..b7743f67a1b7aa37c0e7494929352949f1ee5f3a --- /dev/null +++ b/testcase/fate-vsynth3-v210.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170625-458603899 +# @用例名称: fate-vsynth3-v210 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-v210 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-v210 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-v210 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-v308.sh b/testcase/fate-vsynth3-v308.sh new file mode 100755 index 0000000000000000000000000000000000000000..74be2c39bd201e9790fd11a1765b80699d4f050f --- /dev/null +++ b/testcase/fate-vsynth3-v308.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170625-649107219 +# @用例名称: fate-vsynth3-v308 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-v308 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-v308 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-v308 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-v408.sh b/testcase/fate-vsynth3-v408.sh new file mode 100755 index 0000000000000000000000000000000000000000..6bdba88dcd78952e88c3ccc68906273bef3f310f --- /dev/null +++ b/testcase/fate-vsynth3-v408.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170625-742260566 +# @用例名称: fate-vsynth3-v408 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-v408 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-v408 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-v408 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-v410.sh b/testcase/fate-vsynth3-v410.sh new file mode 100755 index 0000000000000000000000000000000000000000..035cdd0a06a702e6025b1469f50398e662b73601 --- /dev/null +++ b/testcase/fate-vsynth3-v410.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170625-835242346 +# @用例名称: fate-vsynth3-v410 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-v410 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-v410 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-v410 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-wmv1.sh b/testcase/fate-vsynth3-wmv1.sh new file mode 100755 index 0000000000000000000000000000000000000000..c0a775984446469f5c6a641518dfa5b97188a20c --- /dev/null +++ b/testcase/fate-vsynth3-wmv1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170625-930161898 +# @用例名称: fate-vsynth3-wmv1 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-wmv1 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-wmv1 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-wmv1 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-wmv2.sh b/testcase/fate-vsynth3-wmv2.sh new file mode 100755 index 0000000000000000000000000000000000000000..33339d6c458a7156a760c911cdea4aa1797aad9e --- /dev/null +++ b/testcase/fate-vsynth3-wmv2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170626-027304966 +# @用例名称: fate-vsynth3-wmv2 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-wmv2 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-wmv2 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-wmv2 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-xface.sh b/testcase/fate-vsynth3-xface.sh new file mode 100755 index 0000000000000000000000000000000000000000..c074cad7f53f535f05393eb7d6546f5abad375d1 --- /dev/null +++ b/testcase/fate-vsynth3-xface.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170626-119118169 +# @用例名称: fate-vsynth3-xface +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-xface +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-xface + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-xface + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-yuv.sh b/testcase/fate-vsynth3-yuv.sh new file mode 100755 index 0000000000000000000000000000000000000000..97fae30938ec68ab2a394485c3cbb7083198d715 --- /dev/null +++ b/testcase/fate-vsynth3-yuv.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170626-210927102 +# @用例名称: fate-vsynth3-yuv +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-yuv +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-yuv + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-yuv + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-yuv4.sh b/testcase/fate-vsynth3-yuv4.sh new file mode 100755 index 0000000000000000000000000000000000000000..fabe80c4f91efa12c80e256047ac849201c9c7f2 --- /dev/null +++ b/testcase/fate-vsynth3-yuv4.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170626-302517029 +# @用例名称: fate-vsynth3-yuv4 +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-yuv4 +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-yuv4 + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-yuv4 + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/testcase/fate-vsynth3-zlib.sh b/testcase/fate-vsynth3-zlib.sh new file mode 100755 index 0000000000000000000000000000000000000000..f6dfb34986367ff88cbea82206031edd58e3c668 --- /dev/null +++ b/testcase/fate-vsynth3-zlib.sh @@ -0,0 +1,49 @@ +#!/bin/bash +############################################################################### +# @用例ID: 20260317-170626-396468440 +# @用例名称: fate-vsynth3-zlib +# @用例级别: 3 +# @用例标签: +# @扩展属性: +# @用例类型: 功能测试 +# @自动化: 1 +# @超时时间: 0 +# @用例描述: 执行ffmpeg fate测试用例fate-vsynth3-zlib +############################################################################### +if [ -z "$TST_TS_TOPDIR" ]; then + TST_TS_TOPDIR="$(realpath "$(dirname "$0")/..")" + while [ "$TST_TS_TOPDIR" != "/" ]; do + [ -f "${TST_TS_TOPDIR}/tsuite" ] && break + TST_TS_TOPDIR="$(dirname "$TST_TS_TOPDIR")" + done + export TST_TS_TOPDIR +fi +source "${TST_TS_TOPDIR}/common/lib/common.sh" || exit 1 +############################################################################### + +g_tmpdir="$(mktemp -d)" + +tc_setup() { + msg "this is tc_setup" + + return 0 +} + +do_test() { + msg "this is do_test" + + # @测试步骤:1: 执行ffmpeg fate测试用例fate-vsynth3-zlib + # @预期结果:1: 用例返回0 + assert_true run_single_case fate-vsynth3-zlib + return 0 +} + +tc_teardown() { + msg "this is tc_teardown" + rm -rfv "$g_tmpdir" || return 1 + return 0 +} + +############################################################################### +tst_main "$@" +############################################################################### diff --git a/tst-open-ffmpeg b/tst-open-ffmpeg index f2ad6afdbdf226af89062478723a05b5565b5ed1..25b38bcde319b8d98bac6d3ac35de161b89eb607 160000 --- a/tst-open-ffmpeg +++ b/tst-open-ffmpeg @@ -1 +1 @@ -Subproject commit f2ad6afdbdf226af89062478723a05b5565b5ed1 +Subproject commit 25b38bcde319b8d98bac6d3ac35de161b89eb607