mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 15:06:14 +01:00
Remove sanity_check script unused for years.
Signed-off-by: Frederic Martinsons <frederic.martinsons@sigfox.com>
This commit is contained in:
parent
e817a049f0
commit
bafc7cf1b1
40
sanity_check
40
sanity_check
@ -1,40 +0,0 @@
|
||||
#!/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
|
||||
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
|
Loading…
Reference in New Issue
Block a user