Initial revision

This commit is contained in:
Paul Eggert
1997-02-26 05:12:21 +00:00
parent 4cc7679c2b
commit 5830fe2195

18
tests/version.sh Executable file
View File

@@ -0,0 +1,18 @@
#! /bin/sh
# Check if the proper version is being tested.
. ./preset
PATH=../src:$PATH
if test -n "`$PACKAGE --version | sed -n s/$PACKAGE.*$VERSION/OK/p`"; then
banner="Regression testing for GNU $PACKAGE, version $VERSION"
dashes=`echo $banner | sed s/./=/g`
echo $dashes
echo $banner
echo $dashes
else
echo '=============================================================='
echo 'WARNING: Not using the proper version, *all* checks dubious...'
echo '=============================================================='
exit 1
fi