aboutsummaryrefslogtreecommitdiff
path: root/REGRESS
blob: facbd832b583ebfd7a19670fbd8556daebf543a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#! /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

cd testdir
pwd
PATH=.:$PATH
export PATH

REGRESS