diff options
Diffstat (limited to 'ci/test-runner-linux')
-rwxr-xr-x | ci/test-runner-linux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/test-runner-linux b/ci/test-runner-linux index cad31ec4c0..3ce551944d 100755 --- a/ci/test-runner-linux +++ b/ci/test-runner-linux @@ -20,6 +20,6 @@ timeout 30s qemu-system-$arch \ -append init=/run_prog.sh > output || true # remove kernel messages -tr -d '\r' < output | egrep -v '^\[' +tr -d '\r' < output | grep -Ev '^\[' -egrep "(PASSED)|(test result: ok)" output > /dev/null +grep -E "(PASSED)|(test result: ok)" output > /dev/null |