Welcome to mirror list, hosted at ThFree Co, Russian Federation.

asan.sh « ci « scripts - github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: deeeca0b9d85ce3fce3418c5eff476cf917eeebc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash

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=$?

shopt -s globstar nullglob
for i in /**/asan.log*; do
	echo "$i"
	echo ========================================
	cat "$i"
	echo ========================================
	ret=1
done
exit $ret