From 7c7103b22fe50ca0a1412883d836b006954199b3 Mon Sep 17 00:00:00 2001 From: Gert Wollny Date: Wed, 11 Sep 2019 12:13:43 +0200 Subject: [PATCH] ci: dump regressions head of diff to log If there are regressions dump the number of changes and the head of the diff file so one doesn't have to search in the artifacts for a quick look at the problem. Signed-off-by: Gert Wollny Reviewed-by: Gurchetan Singh --- ci/run_test_suite.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/run_test_suite.sh b/ci/run_test_suite.sh index 3cce2ee..911a59e 100755 --- a/ci/run_test_suite.sh +++ b/ci/run_test_suite.sh @@ -154,6 +154,9 @@ interpret_results() 1) echo "Fail - diff against previous results: $RESULTS_DIR/regression_diff.txt" + echo -n "Changes detected: " + grep ^+ $RESULTS_DIR/regression_diff.txt | wc -l + head -n20 $RESULTS_DIR/regression_diff.txt return 1 ;;