This commit is contained in:
biosvos
2026-08-07 17:38:18 +09:00
commit 873193a243
9613 changed files with 2755992 additions and 0 deletions
@@ -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