Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.3k
gh-115122: Add --bisect option to regrtest#115123
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
Merged
Uh oh!
There was an error while loading.Please reload this page.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
MemberAuthor
vstinner commentedFeb 7, 2024
!buildbot Windows11 Bigmem |
bedevere-bot commentedFeb 7, 2024
7cbb66d toe87af95Compare* test.bisect_cmd now exit with code 0 on success, and code 1 on failure. Before, it was the opposite.* test.bisect_cmd now runs the test worker process with -X faulthandler.* regrtest RunTests: Add create_python_cmd() and bisect_cmd() methods.
woodruffw pushed a commit to woodruffw-forks/cpython that referenced this pull requestMar 4, 2024
* test.bisect_cmd now exit with code 0 on success, and code 1 on failure. Before, it was the opposite.* test.bisect_cmd now runs the test worker process with -X faulthandler.* regrtest RunTests: Add create_python_cmd() and bisect_cmd() methods.
vstinner added a commit to vstinner/cpython that referenced this pull requestMar 26, 2024
* test.bisect_cmd now exit with code 0 on success, and code 1 on failure. Before, it was the opposite.* test.bisect_cmd now runs the test worker process with -X faulthandler.* regrtest RunTests: Add create_python_cmd() and bisect_cmd() methods.(cherry picked from commit1e5719a)
vstinner added a commit to vstinner/cpython that referenced this pull requestMar 26, 2024
* test.bisect_cmd now exit with code 0 on success, and code 1 on failure. Before, it was the opposite.* test.bisect_cmd now runs the test worker process with -X faulthandler.* regrtest RunTests: Add create_python_cmd() and bisect_cmd() methods.(cherry picked from commit1e5719a)
vstinner added a commit that referenced this pull requestMar 26, 2024
…nch (#117250)*gh-115122: Add --bisect option to regrtest (#115123)* test.bisect_cmd now exit with code 0 on success, and code 1 on failure. Before, it was the opposite.* test.bisect_cmd now runs the test worker process with -X faulthandler.* regrtest RunTests: Add create_python_cmd() and bisect_cmd() methods.(cherry picked from commit1e5719a)*gh-115720: Show number of leaks in huntrleaks progress reports (GH-115726)Instead of showing a dot for each iteration, show:- '.' for zero (on negative) leaks- number of leaks for 1-9- 'X' if there are more leaksThis allows more rapid iteration: when bisecting, I don't needto wait for the final report to see if the test still leaks.Also, show the full result if there are any non-zero entries.This shows negative entries, for the unfortunate cases wherea reference is created and cleaned up in different runs.Test *failure* is still determined by the existing heuristic.(cherry picked from commitaf5f9d6)*gh-83434: Disable XML in regrtest when -R option is used (#117232)(cherry picked from commitd52bdfb)---------Co-authored-by: Petr Viktorin <encukou@gmail.com>
miss-islington pushed a commit to miss-islington/cpython that referenced this pull requestMar 26, 2024
…in branch (pythonGH-117250)*pythongh-115122: Add --bisect option to regrtest (pythonGH-115123)* test.bisect_cmd now exit with code 0 on success, and code 1 on failure. Before, it was the opposite.* test.bisect_cmd now runs the test worker process with -X faulthandler.* regrtest RunTests: Add create_python_cmd() and bisect_cmd() methods.(cherry picked from commit1e5719a)*pythongh-115720: Show number of leaks in huntrleaks progress reports (pythonGH-115726)Instead of showing a dot for each iteration, show:- '.' for zero (on negative) leaks- number of leaks for 1-9- 'X' if there are more leaksThis allows more rapid iteration: when bisecting, I don't needto wait for the final report to see if the test still leaks.Also, show the full result if there are any non-zero entries.This shows negative entries, for the unfortunate cases wherea reference is created and cleaned up in different runs.Test *failure* is still determined by the existing heuristic.(cherry picked from commitaf5f9d6)*pythongh-83434: Disable XML in regrtest when -R option is used (pythonGH-117232)(cherry picked from commitd52bdfb)---------(cherry picked from commit477ef90)Co-authored-by: Victor Stinner <vstinner@python.org>Co-authored-by: Petr Viktorin <encukou@gmail.com>
vstinner added a commit that referenced this pull requestMar 26, 2024
…ain branch (GH-117250) (#117251)[3.12]gh-83434: Sync libregrtest and test_regrtest with the main branch (GH-117250)*gh-115122: Add --bisect option to regrtest (GH-115123)* test.bisect_cmd now exit with code 0 on success, and code 1 on failure. Before, it was the opposite.* test.bisect_cmd now runs the test worker process with -X faulthandler.* regrtest RunTests: Add create_python_cmd() and bisect_cmd() methods.(cherry picked from commit1e5719a)*gh-115720: Show number of leaks in huntrleaks progress reports (GH-115726)Instead of showing a dot for each iteration, show:- '.' for zero (on negative) leaks- number of leaks for 1-9- 'X' if there are more leaksThis allows more rapid iteration: when bisecting, I don't needto wait for the final report to see if the test still leaks.Also, show the full result if there are any non-zero entries.This shows negative entries, for the unfortunate cases wherea reference is created and cleaned up in different runs.Test *failure* is still determined by the existing heuristic.(cherry picked from commitaf5f9d6)*gh-83434: Disable XML in regrtest when -R option is used (GH-117232)(cherry picked from commitd52bdfb)---------(cherry picked from commit477ef90)Co-authored-by: Victor Stinner <vstinner@python.org>Co-authored-by: Petr Viktorin <encukou@gmail.com>
diegorusso pushed a commit to diegorusso/cpython that referenced this pull requestApr 17, 2024
* test.bisect_cmd now exit with code 0 on success, and code 1 on failure. Before, it was the opposite.* test.bisect_cmd now runs the test worker process with -X faulthandler.* regrtest RunTests: Add create_python_cmd() and bisect_cmd() methods.
LukasWoodtli pushed a commit to LukasWoodtli/cpython that referenced this pull requestJan 22, 2025
* test.bisect_cmd now exit with code 0 on success, and code 1 on failure. Before, it was the opposite.* test.bisect_cmd now runs the test worker process with -X faulthandler.* regrtest RunTests: Add create_python_cmd() and bisect_cmd() methods.
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading.Please reload this page.