summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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