-
-
Notifications
You must be signed in to change notification settings - Fork 31k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gh-116622: Android test script improvements #124012
Conversation
"-v", "--verbose", action="count", default=0, | ||
help="Show Gradle output, and non-Python logcat messages. " | ||
"Use twice to include high-volume messages which are rarely useful.") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Once this is merged, I'll switch the the buildbot over to -v
mode so it will capture all non-Python log messages except the high-volume ones from test_syslog. These messages have been critical for understanding test failures in the past, including SELinux errors, low memory warnings, and signals being delivered to the wrong thread.
Since -v
also displays the Gradle build log, there will no longer be any need for the buildbot to have a separate build_testbed
step, hence the change to its comment above.
Thanks @mhsmith for the PR, and @freakboy3742 for merging it 🌮🎉.. I'm working now to backport this PR to: 3.13. |
* Set Android test script stdout to line-buffered * Print warning logcat messages on stderr * Add a -vv option to display high-volume messages which are rarely useful * Documentation and comment improvements (cherry picked from commit 1f9d163) Co-authored-by: Malcolm Smith <smith@chaquo.com>
GH-124034 is a backport of this pull request to the 3.13 branch. |
gh-116622: Android test script improvements (GH-124012) * Set Android test script stdout to line-buffered * Print warning logcat messages on stderr * Add a -vv option to display high-volume messages which are rarely useful * Documentation and comment improvements (cherry picked from commit 1f9d163) Co-authored-by: Malcolm Smith <smith@chaquo.com>
Fixes or documents various issues encountered while setting up the Android buildbot.