summaryrefslogtreecommitdiff
path: root/sanity_check
blob: 5f6e66e20656f0c79140927a89144e6907c7ecbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/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