From: Rob Clark Date: Sun, 17 Nov 2019 19:16:09 +0000 (-0800) Subject: gitlab-ci/deqp: preserve full list of unexpected results X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=59ed90fc74c6de09d3d8ee5157f7be5be7472dec;p=mesa.git gitlab-ci/deqp: preserve full list of unexpected results The log only shows the first 50, but preserve the full list for easier browsing. (Also move return of exit code to end which makes later patches in the series easier) Signed-off-by: Rob Clark Acked-by: Eric Engestrom --- 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