blob: 10966c3fdf92c8f18e08e0bf382ab206708c7fc9 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
for p in 1 2 3
do
echo "============>>> ERROR: Pass $p <<<============"
make main 2>&1 | tee makelog-pass-$p-main.txt | grep ">>> ERROR:"
make testing 2>&1 | tee makelog-pass-$p-testing.txt | grep ">>> ERROR:"
done
|