mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
9987a75b1b
Original commit message from CVS: Implemented some test cases... they all fail :-( Added a flag to identity to for loop_based behaviour. Added a signal to fakesink when a buffer is consumed.
15 lines
198 B
Text
Executable file
15 lines
198 B
Text
Executable file
#/bin/bash
|
|
|
|
echo "log" > log.txt
|
|
|
|
for i in cases/*.xml
|
|
do
|
|
./runxml $i
|
|
error=$?
|
|
if test $error -ne 0;
|
|
then
|
|
echo $i " error," $error >>log.txt
|
|
else
|
|
echo $i " ok" >>log.txt
|
|
fi
|
|
done
|