summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2021-09-08 17:52:38 +0000
committerMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2021-09-08 17:52:38 +0000
commit5ea0aa1fc153c5d8292e33d25e96fd23dfe4836f (patch)
tree09c6bc06495cdcf1a90996c83648b826ae60defc
parent424153a8d1882db84acda697e2ca527a014c634c (diff)
round-robin-bisect.sh: Stop reporting bogus regressions in GCC and GDB
... dejagnu testsuites. Change-Id: I44c7c1286b23bfb2580b09c0529432cbe62e206c
-rwxr-xr-xround-robin-bisect.sh12
1 files changed, 10 insertions, 2 deletions
diff --git a/round-robin-bisect.sh b/round-robin-bisect.sh
index 87e15601..5c709143 100755
--- a/round-robin-bisect.sh
+++ b/round-robin-bisect.sh
@@ -675,6 +675,16 @@ Could not identify regression in *$current_project* in CI configuration ${rr[ci_
EOF
fi
+case "${rr[ci_project]}" in
+ tcwg_gcc_check*|tcwg_gnu_*_check_*)
+ # We are building up lists of flaky tests and we need to stabilize
+ # GCC and GDB testsuites. Currently dejagnu testsuites are too flaky
+ # for automated regression detection.
+ notify_devs=false
+ notify_author=""
+ ;;
+esac
+
if [ x"${TCWG_JIRA_TOKEN+set}" = x"set" ] && [ x"$first_bad" != x"" ]; then
case "${rr[ci_project]}/${rr[ci_config]}:$current_project" in
tcwg_kernel/gnu-*:linux) jira_card="GNU-681" ;;
@@ -819,8 +829,6 @@ fi
CI_MAIL_RECIPIENTS=("bcc:tcwg-validation@linaro.org")
case "$notify_author@${rr[ci_project]}/${rr[ci_config]}:$current_project" in
""@*/*:*) ;;
- *@tcwg_gcc_check*/*:*) ;; # We are building up list of flaky tests
- *@tcwg_gnu_*_check_*/*:*) ;; # We are building up list of flaky tests
*@tcwg_gcc*/*:*)
CI_MAIL_RECIPIENTS+=("$notify_author")
CI_MAIL_RECIPIENTS+=("cc:linaro-toolchain@lists.linaro.org")