diff options
author | Nicolas Gaullier <nicolas.gaullier@cji.paris> | 2024-03-12 13:00:26 +0100 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2024-03-12 23:01:46 +0100 |
commit | 275add93287fb9f5a9e89c097df0fc6c5c0ca9f4 (patch) | |
tree | f8272f977847b60233acc10308847a4fd20c5c60 | |
parent | 51d303e20cbb0874172f50b5172c515a973587d4 (diff) | |
download | ffmpeg-275add93287fb9f5a9e89c097df0fc6c5c0ca9f4.tar.gz |
fate: fix generating references when sh=dash
Regression since 0b98f28c46a7e3e914c51debc461
Signed-off-by: Nicolas Gaullier <nicolas.gaullier@cji.paris>
Signed-off-by: Marton Balint <cus@passwd.hu>
-rwxr-xr-x | tests/fate-run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh index 0fead78c58..9863e4f2d9 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -672,7 +672,7 @@ else fi echo "${test}:${sig:-$err}:$cmpo:$erro" >$repfile -if test $err != 0 && test $gen != "no" && test "${ref#tests/data/}" == "$ref" ; then +if test $err != 0 && test $gen != "no" && test "${ref#tests/data/}" = "$ref" ; then echo "GEN $ref" cp -f "$outfile" "$ref" err=$? |