2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-25 11:27:40 +00:00
criu/scripts/travis/asan.sh
Andrei Vagin 061a407ce3 alpine: compile all tests
Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
2017-10-17 08:40:44 +03:00

22 lines
390 B
Bash
Executable File

#!/bin/sh
set -x
cat /proc/self/mountinfo
chmod 0777 test
chmod 0777 test/zdtm/transition/
chmod 0777 test/zdtm/static
./test/zdtm.py run -a --keep-going -k always --parallel 4 -x zdtm/static/rtc "$@"
ret=$?
for i in `find / -name 'asan.log*'`; do
echo $i;
echo ========================================
cat $i;
echo ========================================
ret=1;
done;
exit $ret