Don't redirect grep output to /dev/null, otherwise we lose reference of the tests log
This commit is contained in:
parent
6f67fb67d4
commit
d6c236a5b1
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ run_tests() {
|
|||
}
|
||||
|
||||
check_test_results() {
|
||||
failed_tests=$(grep -e '^FAILED' "$TEST_LOG" >/dev/null)
|
||||
failed_tests=$(grep -e '^FAILED' "$TEST_LOG")
|
||||
ret=0
|
||||
|
||||
if [[ ! -z "$failed_tests" ]]; then
|
||||
|
|
Loading…
Reference in a new issue