criu/scripts/ci/asan.sh
Adrian Reber e7cbeddff3 CI: rename 'travis' to 'ci'
CRIU is already using multiple CI systems and not just Travis. This
renames all Travis related things to 'ci' to show it is actually
independent of Travis.

Just a simple rename.

Signed-off-by: Adrian Reber <areber@redhat.com>
2020-11-08 14:04:12 -08:00

23 lines
420 B
Bash
Executable file

#!/bin/bash
# shellcheck disable=2044
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