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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user