[FFmpeg-cvslog] tests/fate-run: do not attempt to parse tiny_psnrs output if it failed

2015-06-17 Thread Michael Niedermayer
ffmpeg | branch: release/2.2 | Michael Niedermayer  | Thu Apr 
23 04:27:56 2015 +0200| [fe8a763bc7064ebac9c51f8d0bcb79d51c9bea58] | committer: 
Michael Niedermayer

tests/fate-run: do not attempt to parse tiny_psnrs output if it failed

This avoids confusing syntax errors with awk later

Likely fixes awk errors at:
http://buildd.debian-ports.org/status/fetch.php?pkg=ffmpeg&arch=sparc64&ver=7%3A2.6.2-1&stamp=1428928967

Reviewed-by: Timothy Gu 
Thanks-to: Andreas Cadhalpun  for the link
Signed-off-by: Michael Niedermayer 
(cherry picked from commit c0d847e457c1ef72843a63853f1135d52b74131e)

Signed-off-by: Michael Niedermayer 

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fe8a763bc7064ebac9c51f8d0bcb79d51c9bea58
---

 tests/fate-run.sh |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/fate-run.sh b/tests/fate-run.sh
index 8958e92..fcdfe01 100755
--- a/tests/fate-run.sh
+++ b/tests/fate-run.sh
@@ -42,7 +42,7 @@ compare(){
 }
 
 do_tiny_psnr(){
-psnr=$(tests/tiny_psnr "$1" "$2" $cmp_unit $cmp_shift 0)
+psnr=$(tests/tiny_psnr "$1" "$2" $cmp_unit $cmp_shift 0) || return 1
 val=$(expr "$psnr" : ".*$3: *\([0-9.]*\)")
 size1=$(expr "$psnr" : '.*bytes: *\([0-9]*\)')
 size2=$(expr "$psnr" : '.*bytes:[ 0-9]*/ *\([0-9]*\)')

___
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog


[FFmpeg-cvslog] tests/fate-run: do not attempt to parse tiny_psnrs output if it failed

2015-05-21 Thread Michael Niedermayer
ffmpeg | branch: release/2.5 | Michael Niedermayer  | Thu Apr 
23 04:27:56 2015 +0200| [3afb2653bdaa5b785e9af8bdd7f7d9e48abb0eb4] | committer: 
Michael Niedermayer

tests/fate-run: do not attempt to parse tiny_psnrs output if it failed

This avoids confusing syntax errors with awk later

Likely fixes awk errors at:
http://buildd.debian-ports.org/status/fetch.php?pkg=ffmpeg&arch=sparc64&ver=7%3A2.6.2-1&stamp=1428928967

Reviewed-by: Timothy Gu 
Thanks-to: Andreas Cadhalpun  for the link
Signed-off-by: Michael Niedermayer 
(cherry picked from commit c0d847e457c1ef72843a63853f1135d52b74131e)

Signed-off-by: Michael Niedermayer 

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3afb2653bdaa5b785e9af8bdd7f7d9e48abb0eb4
---

 tests/fate-run.sh |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/fate-run.sh b/tests/fate-run.sh
index 824d5f4..ed36a68 100755
--- a/tests/fate-run.sh
+++ b/tests/fate-run.sh
@@ -42,7 +42,7 @@ compare(){
 }
 
 do_tiny_psnr(){
-psnr=$(tests/tiny_psnr "$1" "$2" $cmp_unit $cmp_shift 0)
+psnr=$(tests/tiny_psnr "$1" "$2" $cmp_unit $cmp_shift 0) || return 1
 val=$(expr "$psnr" : ".*$3: *\([0-9.]*\)")
 size1=$(expr "$psnr" : '.*bytes: *\([0-9]*\)')
 size2=$(expr "$psnr" : '.*bytes:[ 0-9]*/ *\([0-9]*\)')

___
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog


[FFmpeg-cvslog] tests/fate-run: do not attempt to parse tiny_psnrs output if it failed

2015-05-14 Thread Michael Niedermayer
ffmpeg | branch: release/2.6 | Michael Niedermayer  | Thu Apr 
23 04:27:56 2015 +0200| [8e94e5d3395ef08622e60033fd8c2969621832e0] | committer: 
James Almer

tests/fate-run: do not attempt to parse tiny_psnrs output if it failed

This avoids confusing syntax errors with awk later

Likely fixes awk errors at:
http://buildd.debian-ports.org/status/fetch.php?pkg=ffmpeg&arch=sparc64&ver=7%3A2.6.2-1&stamp=1428928967

Reviewed-by: Timothy Gu 
Thanks-to: Andreas Cadhalpun  for the link
Signed-off-by: Michael Niedermayer 
(cherry picked from commit c0d847e457c1ef72843a63853f1135d52b74131e)

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8e94e5d3395ef08622e60033fd8c2969621832e0
---

 tests/fate-run.sh |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/fate-run.sh b/tests/fate-run.sh
index 824d5f4..ed36a68 100755
--- a/tests/fate-run.sh
+++ b/tests/fate-run.sh
@@ -42,7 +42,7 @@ compare(){
 }
 
 do_tiny_psnr(){
-psnr=$(tests/tiny_psnr "$1" "$2" $cmp_unit $cmp_shift 0)
+psnr=$(tests/tiny_psnr "$1" "$2" $cmp_unit $cmp_shift 0) || return 1
 val=$(expr "$psnr" : ".*$3: *\([0-9.]*\)")
 size1=$(expr "$psnr" : '.*bytes: *\([0-9]*\)')
 size2=$(expr "$psnr" : '.*bytes:[ 0-9]*/ *\([0-9]*\)')

___
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog


[FFmpeg-cvslog] tests/fate-run: do not attempt to parse tiny_psnrs output if it failed

2015-04-25 Thread Michael Niedermayer
ffmpeg | branch: release/2.4 | Michael Niedermayer  | Thu Apr 
23 04:27:56 2015 +0200| [f6dd6b4fd28fbd3250d61956ab2c3de6cfaa13a7] | committer: 
Michael Niedermayer

tests/fate-run: do not attempt to parse tiny_psnrs output if it failed

This avoids confusing syntax errors with awk later

Likely fixes awk errors at:
http://buildd.debian-ports.org/status/fetch.php?pkg=ffmpeg&arch=sparc64&ver=7%3A2.6.2-1&stamp=1428928967

Reviewed-by: Timothy Gu 
Thanks-to: Andreas Cadhalpun  for the link
Signed-off-by: Michael Niedermayer 
(cherry picked from commit c0d847e457c1ef72843a63853f1135d52b74131e)

Signed-off-by: Michael Niedermayer 

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f6dd6b4fd28fbd3250d61956ab2c3de6cfaa13a7
---

 tests/fate-run.sh |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/fate-run.sh b/tests/fate-run.sh
index c466e06..6e3373a 100755
--- a/tests/fate-run.sh
+++ b/tests/fate-run.sh
@@ -42,7 +42,7 @@ compare(){
 }
 
 do_tiny_psnr(){
-psnr=$(tests/tiny_psnr "$1" "$2" $cmp_unit $cmp_shift 0)
+psnr=$(tests/tiny_psnr "$1" "$2" $cmp_unit $cmp_shift 0) || return 1
 val=$(expr "$psnr" : ".*$3: *\([0-9.]*\)")
 size1=$(expr "$psnr" : '.*bytes: *\([0-9]*\)')
 size2=$(expr "$psnr" : '.*bytes:[ 0-9]*/ *\([0-9]*\)')

___
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog


[FFmpeg-cvslog] tests/fate-run: do not attempt to parse tiny_psnrs output if it failed

2015-04-23 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer  | Thu Apr 23 
04:27:56 2015 +0200| [c0d847e457c1ef72843a63853f1135d52b74131e] | committer: 
Michael Niedermayer

tests/fate-run: do not attempt to parse tiny_psnrs output if it failed

This avoids confusing syntax errors with awk later

Likely fixes awk errors at:
http://buildd.debian-ports.org/status/fetch.php?pkg=ffmpeg&arch=sparc64&ver=7%3A2.6.2-1&stamp=1428928967

Reviewed-by: Timothy Gu 
Thanks-to: Andreas Cadhalpun  for the link
Signed-off-by: Michael Niedermayer 

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c0d847e457c1ef72843a63853f1135d52b74131e
---

 tests/fate-run.sh |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/fate-run.sh b/tests/fate-run.sh
index 1a8ff94..7f129d7 100755
--- a/tests/fate-run.sh
+++ b/tests/fate-run.sh
@@ -43,7 +43,7 @@ compare(){
 }
 
 do_tiny_psnr(){
-psnr=$(tests/tiny_psnr "$1" "$2" $cmp_unit $cmp_shift 0)
+psnr=$(tests/tiny_psnr "$1" "$2" $cmp_unit $cmp_shift 0) || return 1
 val=$(expr "$psnr" : ".*$3: *\([0-9.]*\)")
 size1=$(expr "$psnr" : '.*bytes: *\([0-9]*\)')
 size2=$(expr "$psnr" : '.*bytes:[ 0-9]*/ *\([0-9]*\)')

___
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog