d67268bef9
Properly detect failures in bootrr Signed-off-by: Caleb Connolly <caleb@connolly.tech>
9 lines
173 B
Bash
9 lines
173 B
Bash
#!/bin/sh -e
|
|
# Description: bootrr sanity check
|
|
|
|
bootrr | tee bootrr.log
|
|
|
|
if [ grep -q 'fail' bootrr.log ]; then
|
|
echo "PMOS-CI-TEST: bootrr sanity check failed"
|
|
exit 1
|
|
fi
|