base
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
#!/bin/sh
|
||||
|
||||
rm -f debug.log child.log
|
||||
|
||||
ulimit -c unlimited
|
||||
ulimit -v 10240
|
||||
|
||||
# enable an safety-checking malloc in glibc which will abort() if
|
||||
# heap corruption is detected.
|
||||
MALLOC_CHECK_=2
|
||||
export MALLOC_CHECK_
|
||||
|
||||
for f in $*; do
|
||||
if ${HARNESS} ./$f ${SRCDIR}; then
|
||||
:
|
||||
else
|
||||
echo FAILURE
|
||||
[ -z "$CARRYON" ] && exit 1
|
||||
fi
|
||||
done
|
||||
|
||||
exit 0
|
||||
Reference in New Issue
Block a user