2018-08-22 13:40:26 -04:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
if [ -d testdir ]
|
|
|
|
then
|
|
|
|
true # do nothing
|
|
|
|
elif [ -f awktest.tar ]
|
|
|
|
then
|
|
|
|
echo extracting testdir
|
|
|
|
tar -xpf awktest.tar
|
|
|
|
else
|
|
|
|
echo $0: No testdir directory and no awktest.tar to extract it from! >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2018-08-16 09:41:13 -04:00
|
|
|
cd testdir
|
|
|
|
pwd
|
2018-08-22 13:40:26 -04:00
|
|
|
PATH=.:$PATH
|
|
|
|
export PATH
|
|
|
|
|
2018-08-16 09:41:13 -04:00
|
|
|
REGRESS
|