f39dd6a978
Import the latest bsd-features branch of the one-true-awk upstream: o Move to bison for $YACC o Set close-on-exec flag for file and pipe redirects that aren't std* o lots of little fixes to modernize ocde base o free sval member before setting it o fix a bug where a{0,3} could match aaaa o pull in systime and strftime from NetBSD awk o pull in fixes from {Net,Free,Open}BSD (normalized our code with them) o add BSD extensions and, or, xor, compl, lsheift, rshift (mostly a nop) Also revert a few of the trivial FreeBSD changes that were done slightly differently in the upstreaming process. Also, our PR database may have been mined by upstream for these fixes, and Mikolaj Golub may deserve credit for some of the fixes in this update. Suggested by: Mikolaj Golub <to.my.trociny@gmail.com> PR: 143363,143365,143368,143369,143373,143375,214782 Sponsored by: Netflix
40 lines
511 B
Bash
Executable File
40 lines
511 B
Bash
Executable File
#! /bin/sh
|
|
|
|
case `uname` in
|
|
CYGWIN) EXE=a.exe ;;
|
|
*) EXE=a.out ;;
|
|
esac
|
|
|
|
if [ ! -f $EXE ]
|
|
then
|
|
make || exit 1
|
|
fi
|
|
|
|
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
|
|
if (ulimit -c unlimited > /dev/null 2>&1)
|
|
then
|
|
# Workaround broken default on MacOS X
|
|
ulimit -c unlimited
|
|
fi
|
|
|
|
REGRESS
|
|
|
|
cd ..
|
|
cd bugs-fixed
|
|
REGRESS
|