2020-09-17 17:05:33 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-03-30 02:34:01 +03:00
|
|
|
set -x
|
|
|
|
|
|
|
|
cat /proc/self/mountinfo
|
|
|
|
|
2023-09-23 08:50:05 -07:00
|
|
|
time make ASAN=1 -j 4 V=1
|
|
|
|
time make -j4 -C test/zdtm V=1
|
|
|
|
|
2017-03-30 02:34:01 +03:00
|
|
|
chmod 0777 test
|
|
|
|
chmod 0777 test/zdtm/transition/
|
|
|
|
chmod 0777 test/zdtm/static
|
|
|
|
|
2017-10-02 21:45:48 +03:00
|
|
|
./test/zdtm.py run -a --keep-going -k always --parallel 4 -x zdtm/static/rtc "$@"
|
2017-03-30 02:34:01 +03:00
|
|
|
ret=$?
|
|
|
|
|
2022-04-12 16:07:56 -07:00
|
|
|
shopt -s globstar nullglob
|
|
|
|
for i in /**/asan.log*; do
|
2020-09-17 17:05:33 +00:00
|
|
|
echo "$i"
|
2017-03-30 02:34:01 +03:00
|
|
|
echo ========================================
|
2020-09-17 17:05:33 +00:00
|
|
|
cat "$i"
|
2017-03-30 02:34:01 +03:00
|
|
|
echo ========================================
|
2020-09-17 17:05:33 +00:00
|
|
|
ret=1
|
|
|
|
done
|
2017-03-30 02:34:01 +03:00
|
|
|
exit $ret
|