summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSantiago Aboy Solanes <solanes@google.com>2024-05-01 14:36:58 +0100
committerTreehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com>2024-05-01 14:48:51 +0000
commitb747d1f86ebd69e96dd5f16b744daadcec90a8be (patch)
treecee621d35237598e05891657159c1bb8d64b36cd
parent33ab3ac9a8616e3d7f2e3f67685d9811d0ffb65c (diff)
downloadart-b747d1f86ebd69e96dd5f16b744daadcec90a8be.tar.gz
Temporarily skip the crash symbolizer step for ART
We are seeing timeouts in this step for ARM Bug: 338199464 Test: Presubmit Change-Id: I0b07236bc03a943f16e7c735c2189e594abc93bb
-rwxr-xr-xtools/buildbot-symbolize-crashes.sh12
1 files changed, 7 insertions, 5 deletions
diff --git a/tools/buildbot-symbolize-crashes.sh b/tools/buildbot-symbolize-crashes.sh
index 0200346fa0..c12567c8e8 100755
--- a/tools/buildbot-symbolize-crashes.sh
+++ b/tools/buildbot-symbolize-crashes.sh
@@ -17,11 +17,13 @@
# We push art and its dependencies to '/data/local/tmp', but the 'stack'
# script expect things to be in '/'. So we just remove the
# '/data/local/tmp' prefix.
-if [[ -n "$1" ]]; then
- cat $1
-else
- adb logcat -d
-fi | sed 's,/data/local/tmp,,g' | development/scripts/stack
+
+# TODO(solanes, b/338199464): Reactivate this
+# if [[ -n "$1" ]]; then
+# cat $1
+# else
+# adb logcat -d
+# fi | sed 's,/data/local/tmp,,g' | development/scripts/stack
# Always return 0 to avoid having the buildbot complain about wrong stacks.
exit 0