File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ if [ "$QEMU" != "" ]; then
79
79
-net user \
80
80
-nographic \
81
81
-vga none 2>&1 | tee " ${CARGO_TARGET_DIR} /out.log"
82
- exec egrep " ^(PASSED)|(test result: ok)" " ${CARGO_TARGET_DIR} /out.log"
82
+ exec grep -E " ^(PASSED)|(test result: ok)" " ${CARGO_TARGET_DIR} /out.log"
83
83
fi
84
84
85
85
if [ " $TARGET " = " s390x-unknown-linux-gnu" ]; then
Original file line number Diff line number Diff line change @@ -20,6 +20,6 @@ timeout 30s qemu-system-$arch \
20
20
-append init=/run_prog.sh > output || true
21
21
22
22
# remove kernel messages
23
- tr -d ' \r' < output | egrep -v ' ^\['
23
+ tr -d ' \r' < output | grep -Ev ' ^\['
24
24
25
- egrep " (PASSED)|(test result: ok)" output > /dev/null
25
+ grep -E " (PASSED)|(test result: ok)" output > /dev/null
You can’t perform that action at this time.
0 commit comments