Revision 01098e34c188b4ec93944e14dbece6818d786aec authored by Lars Uebernickel on 15 June 2014, 13:42:31 UTC, committed by Matthias Clasen on 28 June 2014, 18:05:23 UTC
https://bugzilla.gnome.org/show_bug.cgi?id=731623
1 parent baef9d1
Raw File
sanity_check
#!/bin/sh

VERSION=$1

if [ ! -f glib-$VERSION.tar.gz ]; then
	echo "ERROR: glib-$VERSION.tar.gz does not exist..."
	exit 1
fi

echo ""

echo "Checking glib-$VERSION.tar.gz..."
tar xfz glib-$VERSION.tar.gz


for file in INSTALL NEWS README 
do
	echo -n "$file... "
	if [ "x`grep $VERSION glib-$VERSION/$file | wc -l | awk -F' ' '{print $1}'`" = "x0" ]; then
		echo "failed."
		#exit 1
	else
		echo "ok"
	fi
done

echo -n "INSTALL..."
if [ "x`grep $VERSION glib-$VERSION/INSTALL | wc -l | awk -F' ' '{print $1}'`" = "x2" ]; then 
	echo "ok" 
else
	echo "failed."
	exit 1
fi

echo ""
echo "Number of lines in created documentation files:"

wc -l glib-$VERSION/docs/reference/*/html/*.html | grep total 

rm -rf glib-$VERSION
back to top