We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57bf1b7 commit 8d4710dCopy full SHA for 8d4710d
test/ffmpegtest.sh
@@ -60,25 +60,24 @@ for x in $(grep -o -P "\-o .*\.o" $logfile | sed -e 's/-o //' | grep -v "/ffconf
60
do
61
if ! [ -f ${x}.1 ]; then
62
echo file ${x}.1 does not exist
63
- rev=1
64
fi
65
66
if ! [ -f ${x}.2 ]; then
67
echo file ${x}.2 does not exist
68
69
70
71
objdump -d ${x}.1 | tail -n +4 >/tmp/1.dump
72
objdump -d ${x}.2 | tail -n +4 >/tmp/2.dump
73
if ! diff /tmp/1.dump /tmp/2.dump >/dev/null; then
74
echo [differs] $x
75
#diff /tmp/1.dump /tmp/2.dump
76
77
else
78
echo [matches] $x
79
80
rm -f /tmp/1.dump /tmp/2.dump
81
done
82
} | tee "$here/results"
83
+rev=$(grep -e " does not exist" -e "\[differs\]" $here/results >/dev/null)
+
84
exit $rev
0 commit comments