diff options
Diffstat (limited to '.gitlab-ci/deqp-runner.sh')
-rwxr-xr-x | .gitlab-ci/deqp-runner.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.gitlab-ci/deqp-runner.sh b/.gitlab-ci/deqp-runner.sh index 2e93a643a36..9a18c9fc6ce 100755 --- a/.gitlab-ci/deqp-runner.sh +++ b/.gitlab-ci/deqp-runner.sh @@ -73,7 +73,9 @@ if [ $DEQP_EXITCODE -ne 0 ]; then cat $RESULTS/cts-runner-results.txt | \ grep -v ",Pass" | \ grep -v ",Skip" | \ - grep -v ",ExpectedFail" | \ - head -n 50 - exit $DEQP_EXITCODE + grep -v ",ExpectedFail" > \ + $RESULTS/cts-runner-unexpected-results.txt + head -n 50 $RESULTS/cts-runner-unexpected-results.txt fi + +exit $DEQP_EXITCODE |