| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
|
!buildbot iOS |
Sorry, something went wrong.
|
🤖 New build scheduled with the buildbot fleet by @freakboy3742 for commit e6c7195 🤖 The command will test the builders whose names match following regular expression: iOS The builders matched are:
|
Sorry, something went wrong.
There was a problem hiding this comment.
LGTM
Sorry, something went wrong.
|
Thanks @freakboy3742 for the PR 🌮🎉.. I'm working now to backport this PR to: 3.13. |
Sorry, something went wrong.
…tput. (pythonGH-129252) Filter out the iOS log prefix from testbed runner output. (cherry picked from commit a580838) Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
|
GH-129283 is a backport of this pull request to the 3.13 branch. |
Sorry, something went wrong.
…nner output. (pythonGH-129252) (python#129283) Filter out the iOS log prefix from testbed runner output. (cherry picked from commit a580838) Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
…nner output. (pythonGH-129252) (python#129283) Filter out the iOS log prefix from testbed runner output. (cherry picked from commit a580838) Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
…ner output. (pythonGH-129252) (python#129283) Filter out the iOS log prefix from testbed runner output. (cherry picked from commit a580838) Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
…nner output. (pythonGH-129252) (python#129283) Filter out the iOS log prefix from testbed runner output. (cherry picked from commit a580838) Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
…nner output. (pythonGH-129252) (python#129283) Filter out the iOS log prefix from testbed runner output. (cherry picked from commit a580838) Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
…nner output. (pythonGH-129252) (python#129283) Filter out the iOS log prefix from testbed runner output. (cherry picked from commit a580838) Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
…nner output. (pythonGH-129252) (python#129283) Filter out the iOS log prefix from testbed runner output. (cherry picked from commit a580838) Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
…nner output. (pythonGH-129252) (python#129283) Filter out the iOS log prefix from testbed runner output. (cherry picked from commit a580838) Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
| Back | FazBrowse Home | New Git URL |
Modifies the iOS test runner to strip out the log prefix inserted by the Apple system log.
iOS test logs are gathered by streaming the Apple System log looking for log items from the test process. These log prefixes look like:
The existence of these prefixes was preventing the buildbots from parsing log output to discover test failures. Since the prefix doesn't actually help diagnose issues with the Python test suite, this PR strips out the prefix. This matches what the Android test runner does with ADB log prefixes. It doesn't strip the prefix from the iOS setup/teardown code (the ObjC code that instantiates the XUnit test case, which might be helpful in a diagnostic context, but won't interfere with the Python operation
The acid test for this fix is a test failing and being correctly parsed by the buildbot; that's a little difficult to manufacture, though. For review purposes, you can inspect the test log for the buildbot to see that it matches the test output from other platforms; at which point the buildbot log parser should work as it does on any other platform.
Fixes #129248.