mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 21:50:11 +01:00
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 <robdclark@chromium.org> Acked-by: Eric Engestrom <eric.engestrom@intel.com>
This commit is contained in:
parent
5fa397a0d9
commit
59ed90fc74
1 changed files with 5 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue