##// END OF EJS Templates
rust-cpython: mark all PyLeaked methods as unsafe...
rust-cpython: mark all PyLeaked methods as unsafe Unfortunately, these methods can be abused to obtain the inner 'static reference. The simplest (pseudo-code) example is: let leaked: PyLeaked<&'static _> = shared.leak_immutable(); let static_ref: &'static _ = &*leaked.try_borrow(py)?; // PyLeakedRef::deref() tries to bound the lifetime to itself, but // the underlying data is a &'static reference, so the returned // reference can be &'static. This problem can be easily fixed by coercing the lifetime, but there are many other ways to achieve that, and there wouldn't be a generic solution: let leaked: PyLeaked<&'static [_]> = shared.leak_immutable(); let leaked_iter: PyLeaked<slice::Iter<'static, _>> = unsafe { leaked.map(|v| v.iter()) }; let static_slice: &'static [_] = leaked_iter.try_borrow(py)?.as_slice(); So basically I failed to design the safe borrowing interface. Maybe we'll instead have to add much more restricted interface on top of the unsafe PyLeaked methods? For instance, Iterator::next() could be implemented if its Item type is not &'a (where 'a may be cheated.) Anyway, this seems not an easy issue, so it's probably better to leave the current interface as unsafe, and get broader comments while upstreaming this feature.

File last commit:

r43193:a7abc608 default
r44689:e960c30d default
Show More
python3-whitelist
789 lines | 16.8 KiB | text/plain | TextLexer
Pulkit Goyal
py3: whitelist another 8 passing tests...
r36409 test-abort-checkin.t
Augie Fackler
absorb: add a pycompat.bytestr() to fix --edit-lines functionality on Python 3...
r41296 test-absorb-edit-lines.t
Augie Fackler
tests: port test-absorb-filefixupstate to Python 3...
r39024 test-absorb-filefixupstate.py
Augie Fackler
absorb: port partway to Python 3...
r39023 test-absorb-phase.t
Pulkit Goyal
py3: fix kwargs handling in hgext/absorb.py...
r39822 test-absorb-rename.t
Augie Fackler
absorb: port partway to Python 3...
r39023 test-absorb-strip.t
Pulkit Goyal
py3: add 5 new passing tests...
r42492 test-absorb-unfinished.t
Pulkit Goyal
py3: fix kwargs handling in hgext/absorb.py...
r39822 test-absorb.t
Pulkit Goyal
py3: pass str into grp.getgrnam...
r41645 test-acl.t
Augie Fackler
python3: whitelist many more passing tests...
r35228 test-add.t
test-addremove-similar.t
Augie Fackler
python3: whitelist another 5 passing tests found with the ratchet script
r34026 test-addremove.t
Yuya Nishihara
py3: use bytes.endswith() instead of bytes[n]
r38611 test-alias.t
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-amend-subrepo.t
Yuya Nishihara
ui: do not use rawinput() when we have to replace sys.stdin/stdout...
r36813 test-amend.t
Pulkit Goyal
py3: pass the path in hg.repository() as bytes...
r32894 test-ancestor.py
Augie Fackler
python3: whitelist an additional 11 tests...
r35976 test-annotate.py
Yuya Nishihara
py3: fix some membership tests on linkrev adjustment
r36657 test-annotate.t
Augie Fackler
py3: fix missing b prefixes in test-arbitraryfilectx.t...
r41365 test-arbitraryfilectx.t
Augie Fackler
py3: whitelist three more cases...
r36727 test-archive-symlinks.t
Augie Fackler
tests: accept slightly different zip file in Python 3...
r40285 test-archive.t
Augie Fackler
py3: whitelist another 15 passing tests...
r36682 test-atomictempfile.py
Yuya Nishihara
py3: fix formatting of path-auditing errors
r36667 test-audit-path.t
test-audit-subrepo.t
Augie Fackler
python3: whitelist many more passing tests...
r35228 test-automv.t
Augie Fackler
py3: whitelist another nine passing tests...
r36558 test-backout.t
Pulkit Goyal
py3: update the python3-whitelist with new tests which pass on Python 3...
r33118 test-backwards-remove.t
Augie Fackler
py3: one new passing tests...
r40274 test-bad-extension.t
Yuya Nishihara
py3: fix dumbhttp.py to convert --daemon-postexec arguments back to bytes
r38612 test-bad-pull.t
Yuya Nishihara
py3: make test-basic.t pass on Python 3
r36656 test-basic.t
Augie Fackler
py3: port test-batching.py to python3...
r41366 test-batching.py
Pulkit Goyal
tests: use assertTrue() instead of assert_() in test-bdiff.py...
r39825 test-bdiff.py
Pulkit Goyal
py3: whitelist 15 more tests passing on Python 3...
r34352 test-bheads.t
Yuya Nishihara
py3: make test-bisect.t bytes-safe
r36847 test-bisect.t
Pulkit Goyal
py3: whitelist 15 more tests passing on Python 3...
r34352 test-bisect2.t
Yuya Nishihara
py3: fix slicing of bisect label in templatefilters.shortbisect()
r36849 test-bisect3.t
Yuya Nishihara
py3: byte-stringify test-blackbox.t
r36758 test-blackbox.t
Augie Fackler
py3: buildbot spotted more passing tests...
r41153 test-bookflow.t
Pulkit Goyal
py3: fix test-bookmarks-corner-case.t...
r42623 test-bookmarks-corner-case.t
Augie Fackler
py3: whitelist another 11 passing tests...
r36148 test-bookmarks-current.t
Pulkit Goyal
py3: whitelist 15 more tests passing on Python 3...
r34352 test-bookmarks-merge.t
Yuya Nishihara
py3: suppress write() result and close file in test-bookmarks-pushpull.t
r38625 test-bookmarks-pushpull.t
Augie Fackler
py3: whitelist another six passing tests...
r36174 test-bookmarks-rebase.t
Augie Fackler
python3: another 3 tests whitelisted
r34220 test-bookmarks-strip.t
Augie Fackler
py3: sixteen more passing tests...
r36597 test-bookmarks.t
Yuya Nishihara
py3: drop b'' from debug message "moving bookmarks"
r36854 test-branch-change.t
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-branch-option.t
Pulkit Goyal
py3: update the python3-whitelist with new tests which pass on Python 3...
r33118 test-branch-tag-confict.t
Augie Fackler
py3: sixteen more passing tests...
r36597 test-branches.t
Augie Fackler
py3: port test-bugzilla.t to Python 3...
r41379 test-bugzilla.t
Augie Fackler
py3: whitelist another 11 passing tests...
r36148 test-bundle-phases.t
Yuya Nishihara
py3: fix bundle heads to be consumable more than once
r38616 test-bundle-r.t
Augie Fackler
py3: more passing tests (ten this time)...
r36743 test-bundle-type.t
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-bundle-vs-outgoing.t
Yuya Nishihara
py3: fix bundle heads to be consumable more than once
r38616 test-bundle.t
Yuya Nishihara
py3: drop b'' while formatting ResponseError
r38624 test-bundle2-exchange.t
Yuya Nishihara
bundle2: use ProgrammingError to report bad use of addparam()...
r38628 test-bundle2-format.t
Pulkit Goyal
py3: add 14 new passing tests to whitelist...
r36507 test-bundle2-multiple-changegroups.t
Pulkit Goyal
py3: add b'' prefixes in tests/test-bundle2-pushback.t...
r38489 test-bundle2-pushback.t
Yuya Nishihara
py3: use bytes() to byte-stringify Abort message in handleremotechangegroup()
r38723 test-bundle2-remote-changegroup.t
Yuya Nishihara
py3: use __code__ instead of func_code to test if func is cachable...
r40269 test-cache-abuse.t
Pulkit Goyal
py3: whitelist another 8 passing tests...
r36409 test-cappedreader.py
Augie Fackler
py3: these two casefolding tests pass for me on my Mac...
r41380 test-casecollision-merge.t
Pulkit Goyal
py3: update the python3-whitelist with new tests which pass on Python 3...
r33118 test-casecollision.t
Augie Fackler
py3: these two casefolding tests pass for me on my Mac...
r41380 test-casefolding.t
Pulkit Goyal
py3: add 32 new tests passing to the whitelist...
r35376 test-cat.t
Augie Fackler
tests: port test-cbor.py to Python 3...
r37916 test-cbor.py
Augie Fackler
py3: whitelist another eight passing tests...
r36267 test-censor.t
Pulkit Goyal
py3: whitelist 15 more tests passing on Python 3...
r34352 test-changelog-exec.t
Augie Fackler
tests: add missing b'' prefix in test-check-code.t...
r39092 test-check-code.t
Pulkit Goyal
py3: update the python3-whitelist with new tests which pass on Python 3...
r33118 test-check-commit.t
Augie Fackler
py3: 3 more passing tests...
r40297 test-check-config.t
Augie Fackler
contrib: check in a whitelist of passing tests in Python 3
r32854 test-check-execute.t
Augie Fackler
py3: buildbot spotted more passing tests...
r41153 test-check-help.t
Augie Fackler
tests: make test-check-interfaces.py work on Python 3...
r37887 test-check-interfaces.py
Augie Fackler
contrib: add test-check-module-imports.t to the Python 3 whitelist...
r33994 test-check-module-imports.t
Yuya Nishihara
test-check-py3-compat: don't run py2 part if $PYTHON is python3
r39438 test-check-py3-compat.t
Pulkit Goyal
py3: update the python3-whitelist with new tests which pass on Python 3...
r33118 test-check-pyflakes.t
test-check-pylint.t
Augie Fackler
contrib: check in a whitelist of passing tests in Python 3
r32854 test-check-shbang.t
Augie Fackler
python3: whitelist many more passing tests...
r35228 test-children.t
Augie Fackler
churn: use integer division consistently...
r40277 test-churn.t
Augie Fackler
wsgicgi: un-do some prior porting work that is now wrong...
r37765 test-clone-cgi.t
Augie Fackler
py3: whitelist another six passing tests...
r36338 test-clone-pull-corruption.t
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-clone-r.t
Augie Fackler
py3: whitelist two more passing tests...
r39842 test-clone-uncompressed.t
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-clone-update-order.t
Pulkit Goyal
py3: glob some difference between py2 and py3 output...
r40255 test-clone.t
Yuya Nishihara
py3: fix dumbhttp.py to convert --daemon-postexec arguments back to bytes
r38612 test-clonebundles.t
Pulkit Goyal
py3: use '%d' for rev nums instead of '%s'...
r40264 test-close-head.t
Yuya Nishihara
py3: get around IOError variants in test-commandserver.t
r40398 test-commandserver.t
Augie Fackler
py3: whitelist another nine passing tests...
r36558 test-commit-amend.t
Pulkit Goyal
py3: use bytes.startswith() instead of comparing with bytes[0]...
r41772 test-commit-interactive-curses.t
Yuya Nishihara
py3: make test-commit-interactive.t byte-safe
r36857 test-commit-interactive.t
Yuya Nishihara
py3: make test-commit-multiple.t byte-safe
r36803 test-commit-multiple.t
Pulkit Goyal
py3: whitelist 15 more tests passing on Python 3...
r34352 test-commit-unresolved.t
Augie Fackler
py3: whitelist another nine passing tests...
r36558 test-commit.t
Yuya Nishihara
py3: fix type of default username
r36802 test-committer.t
Pulkit Goyal
py3: add 32 new tests passing to the whitelist...
r35376 test-completion.t
Yuya Nishihara
py3: byte-stringify test-config.t and test-config-env.py
r36748 test-config-env.py
test-config.t
Pulkit Goyal
py3: whitelist 14 new tests passing...
r36555 test-conflict.t
Augie Fackler
python3: whitelist another 7 passing tests...
r35859 test-confused-revert.t
Augie Fackler
tests: add missing b prefix in test-context-metadata.t...
r40339 test-context-metadata.t
Augie Fackler
tests: port test-context.py to Python 3...
r37941 test-context.py
Augie Fackler
contrib: check in a whitelist of passing tests in Python 3
r32854 test-contrib-check-code.t
test-contrib-check-commit.t
Augie Fackler
py3: sort passing test list...
r40198 test-contrib-dumprevlog.t
Pulkit Goyal
py3: add test-contrib-emacs.t to passing tests list...
r42625 test-contrib-emacs.t
Pulkit Goyal
py3: make test-contrib-perf.t work on python 3...
r40250 test-contrib-perf.t
Augie Fackler
py3: moar passing tests...
r40275 test-contrib-relnotes.t
Augie Fackler
py3: whitelist another passing test...
r40201 test-contrib-testparseutil.t
Augie Fackler
py3: 3 more passing tests...
r40297 test-contrib.t
Augie Fackler
py3: whitelist another eight passing tests...
r36362 test-convert-authormap.t
Augie Fackler
py3: whitelist test-convert-clonebranches.t...
r36152 test-convert-clonebranches.t
Augie Fackler
py3: whitelist three passing cvs convert tests...
r37938 test-convert-cvs-branch.t
test-convert-cvs-detectmerge.t
Augie Fackler
py3: two more passing tests from the ratchet in buildbot...
r38329 test-convert-cvs-synthetic.t
Augie Fackler
py3: whitelist three passing cvs convert tests...
r37938 test-convert-cvs.t
Augie Fackler
py3: two more passing tests from the ratchet in buildbot...
r38329 test-convert-cvsnt-mergepoints.t
Augie Fackler
py3: whitelist another eight passing tests...
r36362 test-convert-datesort.t
Augie Fackler
py3: whitelist three more passing tests...
r36579 test-convert-filemap.t
Augie Fackler
git: a little pycompat.bytestring() love to make this code work in py3...
r41619 test-convert-git.t
Augie Fackler
py3: whitelist three more passing tests...
r36579 test-convert-hg-sink.t
Augie Fackler
py3: sixteen more passing tests...
r36597 test-convert-hg-source.t
Augie Fackler
py3: whitelist another eight passing tests...
r36362 test-convert-hg-startrev.t
Pulkit Goyal
py3: add one more test to list of passing tests...
r42892 test-convert-identity.t
Pulkit Goyal
py3: use pycompat.bytestr() on extra values because it can be int...
r41715 test-convert-mtn.t
Augie Fackler
py3: whitelist another six passing tests...
r37626 test-convert-splicemap.t
Augie Fackler
py3: buildbot found more passing tests, thanks to indygreg for most of them...
r41363 test-convert-svn-sink.t
Augie Fackler
py3: two more passing tests...
r37689 test-convert-tagsbranch-topology.t
Pulkit Goyal
py3: whitelist couple more passing tests found by buildbot...
r41487 test-convert.t
Pulkit Goyal
py3: add 5 new passing tests...
r42492 test-copies-in-changeset.t
Augie Fackler
py3: another passing test...
r42847 test-copies-unrelated.t
Pulkit Goyal
py3: add two new passing tests found by buildbot...
r41981 test-copies.t
Augie Fackler
python3: whitelist an additional 11 tests...
r35976 test-copy-move-merge.t
Augie Fackler
py3: more passing tests (ten this time)...
r36743 test-copy.t
Augie Fackler
py3: whitelist another six passing tests...
r36174 test-copytrace-heuristics.t
Pulkit Goyal
py3: add __pycache__ to .hgignore...
r40645 test-custom-filters.t
Augie Fackler
py3: whitelist another six passing tests...
r36338 test-debugbuilddag.t
Pulkit Goyal
py3: add 14 new passing tests to whitelist...
r36507 test-debugbundle.t
Pulkit Goyal
py3: add one more passing test to whitelist caught by buildbot...
r39960 test-debugcommands.t
Augie Fackler
py3: sixteen more passing tests...
r36597 test-debugextensions.t
Augie Fackler
python3: whitelist another 7 passing tests...
r35859 test-debugindexdot.t
Augie Fackler
python3: whitelist another 5 passing tests found with the ratchet script
r34026 test-debugrename.t
Yuya Nishihara
py3: don't use str() to stringify pushloc
r36749 test-default-push.t
Pulkit Goyal
py3: add three new passing tests found by buildbot...
r41665 test-demandimport.py
Pulkit Goyal
py3: add 5 new passing tests...
r42492 test-devel-warnings.t
Pulkit Goyal
py3: make tests/test-diff-antipatience.t work with python 3...
r38488 test-diff-antipatience.t
Augie Fackler
python3: whitelist an additional 11 tests...
r35976 test-diff-binary-file.t
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-diff-change.t
Mark Thomas
py3: fix test-diff-color.t...
r40318 test-diff-color.t
Augie Fackler
python3: whitelist another 5 passing tests found with the ratchet script
r34026 test-diff-copy-depth.t
test-diff-hashes.t
Pulkit Goyal
py3: whitelist 13 new passing tests...
r37402 test-diff-ignore-whitespace.t
test-diff-indent-heuristic.t
Pulkit Goyal
py3: update the python3-whitelist with new tests which pass on Python 3...
r33118 test-diff-issue2761.t
Boris Feld
py3: fix test-diff-newlines.t to be compatible with py3
r33305 test-diff-newlines.t
Pulkit Goyal
py3: update the python3-whitelist with new tests which pass on Python 3...
r33118 test-diff-reverse.t
test-diff-subdir.t
Pulkit Goyal
py3: whitelist 13 new passing tests...
r37402 test-diff-unified.t
test-diff-upgrade.t
Pulkit Goyal
py3: add 8 new passing tests to the whitelist...
r35608 test-diffdir.t
Augie Fackler
py3: whitelist another nine passing tests...
r37625 test-diffstat.t
Pulkit Goyal
py3: add 8 new passing tests to the whitelist...
r35608 test-directaccess.t
Augie Fackler
python3: whitelist another four passing tests...
r36095 test-dirstate-backup.t
Pulkit Goyal
py3: update the python3-whitelist with new tests which pass on Python 3...
r33118 test-dirstate-nonnormalset.t
Mark Thomas
py3: fix test-dirstate-race.t...
r40332 test-dirstate-race.t
Pulkit Goyal
py3: add test-dirstate-race2.t to list of passing tests...
r42671 test-dirstate-race2.t
Augie Fackler
py3: whitelist another nine passing tests...
r37625 test-dirstate.t
Augie Fackler
tests: port test-dispatch.py to Python 3...
r37943 test-dispatch.py
Pulkit Goyal
py3: whitelist couple more passing tests found by buildbot...
r41487 test-dispatch.t
Augie Fackler
contrib: check in a whitelist of passing tests in Python 3
r32854 test-doctest.py
Pulkit Goyal
py3: whitelist 15 more tests passing on Python 3...
r34352 test-double-merge.t
Augie Fackler
python3: whitelist another 24 passing tests...
r35895 test-drawdag.t
Augie Fackler
python3: whitelist four more passing tests...
r33837 test-duplicateoptions.py
Pulkit Goyal
py3: whitelist 13 new passing tests...
r37402 test-editor-filename.t
Pulkit Goyal
py3: update the python3-whitelist with new tests which pass on Python 3...
r33118 test-empty-dir.t
Pulkit Goyal
py3: whitelist 15 more tests passing on Python 3...
r34352 test-empty-file.t
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-empty-group.t
Augie Fackler
python3: whitelist another *13* tests that now pass...
r33839 test-empty.t
Augie Fackler
py3: more passing tests (ten this time)...
r36743 test-encode.t
Augie Fackler
py3: fix up test-encoding-align.t for python3...
r41381 test-encoding-align.t
Yuya Nishihara
encoding: add function to test if a str consists of ASCII characters...
r33927 test-encoding-func.py
Pulkit Goyal
py3: add 5 new passing tests to whitelist caught by buildbot...
r40387 test-encoding-textwrap.t
Augie Fackler
py3: sixteen more passing tests...
r36597 test-encoding.t
Augie Fackler
python3: whitelist another 5 passing tests...
r36197 test-eol-add.t
test-eol-clone.t
Augie Fackler
py3: whitelist three more cases...
r36727 test-eol-hook.t
Yuya Nishihara
py3: replace s[-1] with s.endswith() in eol handling
r38351 test-eol-patch.t
Augie Fackler
python3: whitelist another 5 passing tests...
r36197 test-eol-tag.t
test-eol-update.t
Yuya Nishihara
py3: remove b'' from output of test-eol.t
r38352 test-eol.t
Yuya Nishihara
py3: remove b'' from error message of disallowed filename
r38353 test-eolfilename.t
Pulkit Goyal
py3: update the python3-whitelist with new tests which pass on Python 3...
r33118 test-excessive-merge.t
Augie Fackler
python3: whitelist another 24 passing tests...
r35895 test-exchange-obsmarkers-case-A1.t
test-exchange-obsmarkers-case-A2.t
test-exchange-obsmarkers-case-A3.t
test-exchange-obsmarkers-case-A4.t
test-exchange-obsmarkers-case-A5.t
test-exchange-obsmarkers-case-A6.t
test-exchange-obsmarkers-case-A7.t
test-exchange-obsmarkers-case-B1.t
test-exchange-obsmarkers-case-B2.t
test-exchange-obsmarkers-case-B3.t
test-exchange-obsmarkers-case-B4.t
test-exchange-obsmarkers-case-B5.t
test-exchange-obsmarkers-case-B6.t
test-exchange-obsmarkers-case-B7.t
test-exchange-obsmarkers-case-C1.t
test-exchange-obsmarkers-case-C2.t
test-exchange-obsmarkers-case-C3.t
test-exchange-obsmarkers-case-C4.t
test-exchange-obsmarkers-case-D1.t
test-exchange-obsmarkers-case-D2.t
test-exchange-obsmarkers-case-D3.t
test-exchange-obsmarkers-case-D4.t
Augie Fackler
python3: whitelist many more passing tests...
r35228 test-execute-bit.t
Augie Fackler
py3: whitelist another six passing tests...
r37626 test-export.t
Augie Fackler
py3: another three passing...
r37757 test-extdata.t
Yuya Nishihara
py3: make test-extdiff.t pass on Python 3
r36282 test-extdiff.t
Augie Fackler
py3: ratchet caught two more passing tests...
r40592 test-extension-timing.t
Pulkit Goyal
py3: add three new passing tests found by buildbot...
r41665 test-extension.t
Pulkit Goyal
py3: add 13 new passing tests to whitelist...
r38102 test-extensions-afterloaded.t
Augie Fackler
tests: port test-extensions-wrapfunction to Python 3...
r37957 test-extensions-wrapfunction.py
Augie Fackler
python3: whitelist an additional 11 tests...
r35976 test-extra-filelog-entry.t
Augie Fackler
py3: all fastannotate tests now pass...
r41301 test-fastannotate-corrupt.t
test-fastannotate-diffopts.t
test-fastannotate-hg.t
test-fastannotate-perfhack.t
test-fastannotate-protocol.t
test-fastannotate-renames.t
Pulkit Goyal
py3: use pycompat.bytechr() instead of chr() in test-fastannotate-revmap.py...
r40982 test-fastannotate-revmap.py
Augie Fackler
py3: all fastannotate tests now pass...
r41301 test-fastannotate.t
Augie Fackler
py3: whitelist another 5 passing tests thanks to the ratchet...
r38358 test-fetch.t
Augie Fackler
python3: whitelist another 7 passing tests...
r35859 test-filebranch.t
Augie Fackler
tests: port test-filecache.py to Python 3...
r37917 test-filecache.py
Augie Fackler
tests: port test-filelog.py to Python 3...
r37952 test-filelog.py
Pulkit Goyal
py3: whitelist another 8 passing tests...
r36409 test-fileset-generated.t
Yuya Nishihara
py3: glob out some error messages in test-fileset.t...
r38349 test-fileset.t
Pulkit Goyal
py3: fix test-fix-metadata.t...
r42622 test-fix-metadata.t
Augie Fackler
py3: whitelist six new passing tests...
r37804 test-fix-topology.t
Augie Fackler
py3: 3 more passing tests...
r40297 test-fix.t
Pulkit Goyal
py3: add three new passing tests found by buildbot...
r41665 test-flagprocessor.t
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-flags.t
Augie Fackler
tests: fix inline extension in test-fncache.t for Python 3...
r40298 test-fncache.t
Augie Fackler
py3: test*gendoc*.t passes on Python 3...
r41306 test-gendoc-da.t
test-gendoc-de.t
test-gendoc-el.t
test-gendoc-fr.t
test-gendoc-it.t
test-gendoc-ja.t
test-gendoc-pt_BR.t
test-gendoc-ro.t
test-gendoc-ru.t
test-gendoc-sv.t
test-gendoc-zh_CN.t
test-gendoc-zh_TW.t
test-gendoc.t
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-generaldelta.t
Pulkit Goyal
py3: add 14 new passing tests to whitelist...
r36507 test-getbundle.t
Augie Fackler
py3: whitelist another eight passing tests...
r36267 test-git-export.t
Augie Fackler
py3: more tests from the ratchet...
r41467 test-githelp.t
Pulkit Goyal
py3: add some py3 specific output to test...
r40260 test-globalopts.t
Augie Fackler
tests: port inline extension in test for beautifygraph to Python 3...
r39090 test-glog-beautifygraph.t
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-glog-topological.t
Augie Fackler
tests: port test-glog.t to Python 3 by using extracted printrevset...
r39094 test-glog.t
Augie Fackler
python3: whitelist many more passing tests...
r35228 test-gpg.t
Augie Fackler
py3: whitelist another nine passing tests...
r36558 test-graft.t
Augie Fackler
tests: allow more detailed error message from re.compile...
r39079 test-grep.t
Mark Thomas
py3: fix test-hardlinks.t...
r40368 test-hardlinks.t
Augie Fackler
py3: ratchet caught two more passing tests...
r40592 test-help-hide.t
Pulkit Goyal
py3: add 5 new passing tests to whitelist caught by buildbot...
r40387 test-help.t
Augie Fackler
hgwebdir: un-bytes the env dict before re-parsing env...
r37730 test-hg-parseurl.py
Augie Fackler
python3: whitelist four more passing tests...
r33837 test-hghave.t
Augie Fackler
py3: sixteen more passing tests...
r36597 test-hgignore.t
Pulkit Goyal
py3: whitelist 14 new tests passing...
r36555 test-hgk.t
Pulkit Goyal
py3: add 13 new passing tests to whitelist...
r38102 test-hgrc.t
Pulkit Goyal
py3: add 3 more passing tests to whitelist caught by buildbot...
r40249 test-hgweb-annotate-whitespace.t
Augie Fackler
tests: port test-hgweb-auth.py to Python 3...
r41494 test-hgweb-auth.py
Augie Fackler
hgweb: fix up trailing slash detection on Python 3...
r36731 test-hgweb-bundle.t
Augie Fackler
py3: buildbot found more passing tests, thanks to indygreg for most of them...
r41363 test-hgweb-commands.t
Augie Fackler
py3: more passing tests...
r40202 test-hgweb-csp.t
Augie Fackler
hgweb: fix up trailing slash detection on Python 3...
r36731 test-hgweb-descend-empties.t
Augie Fackler
py3: more passing tests...
r40202 test-hgweb-diffs.t
Augie Fackler
py3: whitelist another nine passing tests...
r37625 test-hgweb-empty.t
Augie Fackler
py3: more passing tests...
r40202 test-hgweb-filelog.t
Augie Fackler
py3: record several more passes from the buildbot ratchet...
r41655 test-hgweb-json.t
Augie Fackler
py3: buildbot found more passing tests, thanks to indygreg for most of them...
r41363 test-hgweb-no-path-info.t
test-hgweb-no-request-uri.t
Augie Fackler
py3: whitelist one additional test...
r39963 test-hgweb-non-interactive.t
Augie Fackler
py3: more passing tests...
r40202 test-hgweb-raw.t
Augie Fackler
py3: whitelist more passing tests...
r36623 test-hgweb-removed.t
Augie Fackler
py3: buildbot found more passing tests, thanks to indygreg for most of them...
r41363 test-hgweb-symrev.t
Augie Fackler
py3: more passing tests...
r40202 test-hgweb.t
Augie Fackler
tests: port test-hgwebdir-paths.py to Python 3...
r37896 test-hgwebdir-paths.py
Augie Fackler
py3: buildbot found more passing tests, thanks to indygreg for most of them...
r41363 test-hgwebdir.t
Augie Fackler
py3: whitelist six new passing tests...
r37804 test-hgwebdirsym.t
Connor Sheehan
highlight: fix encoding issues to enable Py3 compatibility...
r43193 test-highlight.t
Augie Fackler
py3: whitelist more passing tests...
r36194 test-histedit-arguments.t
test-histedit-base.t
Augie Fackler
py3: whitelist another 8 passing tests...
r36187 test-histedit-bookmark-motion.t
test-histedit-commute.t
test-histedit-drop.t
test-histedit-edit.t
Augie Fackler
py3: whitelist more passing tests...
r36194 test-histedit-fold-non-commute.t
Pulkit Goyal
py3: add 14 new passing tests to whitelist...
r36507 test-histedit-fold.t
Pulkit Goyal
py3: add one new passing test found by buildbot...
r42266 test-histedit-merge-tools.t
Augie Fackler
py3: whitelist 3 more passing tests caught with the ratchet...
r38676 test-histedit-no-backup.t
Augie Fackler
py3: whitelist another 8 passing tests...
r36187 test-histedit-no-change.t
Pulkit Goyal
py3: whitelist 14 new tests passing...
r36555 test-histedit-non-commute-abort.t
Augie Fackler
py3: whitelist more passing tests...
r36194 test-histedit-non-commute.t
Augie Fackler
py3: whitelist another 8 passing tests...
r36187 test-histedit-obsolete.t
test-histedit-outgoing.t
Pulkit Goyal
py3: whitelist 14 new tests passing...
r36555 test-histedit-templates.t
Augie Fackler
py3: more tests from the ratchet...
r41467 test-http-api-httpv2.t
Augie Fackler
py3: buildbot found more passing tests, thanks to indygreg for most of them...
r41363 test-http-api.t
Gregory Szorc
tests: conditionalize test-http-bad-server.t for Python 3.5...
r41608 test-http-bad-server.t
Augie Fackler
py3: whitelist five more passing tests...
r36312 test-http-branchmap.t
Augie Fackler
url: more bytes/unicodes fussing in url.py around auth handling...
r36670 test-http-bundle1.t
Augie Fackler
py3: whitelist another 11 passing tests...
r36148 test-http-clone-r.t
Pulkit Goyal
py3: add new passing tests spotted by the buildbot...
r39493 test-http-permissions.t
Augie Fackler
py3: new tests from the ratchet...
r41435 test-http-protocol.t
Pulkit Goyal
py3: whitelist 5 new passing tests caught by buildbot...
r41912 test-http-proxy.t
Augie Fackler
py3: another three passing...
r37757 test-http.t
Augie Fackler
py3: record several more passes from the buildbot ratchet...
r41655 test-https.t
Augie Fackler
tests: port test-hybridencode.py to unittest...
r37888 test-hybridencode.py
Pulkit Goyal
py3: add 3 more passing tests to whitelist caught by buildbot...
r40249 test-i18n.t
Augie Fackler
py3: whitelist another six passing tests...
r36338 test-identify.t
Pulkit Goyal
py3: add 4 new passing tests to whitelist...
r38387 test-impexp-branch.t
Yuya Nishihara
py3: replace s[-1] with s.endswith() in eol handling
r38351 test-import-bypass.t
Pulkit Goyal
py3: add one more passing test to whitelist...
r40447 test-import-context.t
Yuya Nishihara
py3: ditch email.parser.BytesParser which appears to be plain crap...
r38354 test-import-eol.t
Augie Fackler
tests: alter email `From` line to a value that's consistently parsed...
r41641 test-import-git.t
Pulkit Goyal
py3: add 13 new passing tests to whitelist...
r38102 test-import-merge.t
Augie Fackler
py3: more passing tests (ten this time)...
r36743 test-import-unknown.t
Yuya Nishihara
py3: use s.startswith() instead of s[n] while parsing patches...
r37489 test-import.t
Augie Fackler
python3: whitelist test-imports-checker.t, which now passes
r33880 test-imports-checker.t
Augie Fackler
py3: whitelist another nine passing tests...
r37625 test-incoming-outgoing.t
Mark Thomas
py3: fix infinitepush extension tests...
r40288 test-infinitepush-bundlestore.t
test-infinitepush-ci.t
test-infinitepush.t
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-inherit-mode.t
Yuya Nishihara
py3: fix loop over byte string in wireprotov1peer...
r38350 test-init.t
Augie Fackler
py3: buildbot found more passing tests, thanks to indygreg for most of them...
r41363 test-install.t
Pulkit Goyal
py3: update the python3-whitelist with new tests which pass on Python 3...
r33118 test-issue1089.t
Augie Fackler
py3: sixteen more passing tests...
r36597 test-issue1102.t
Augie Fackler
python3: whitelist two more passing tests...
r35718 test-issue1175.t
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-issue1306.t
Augie Fackler
python3: whitelist another four passing tests...
r36095 test-issue1438.t
Pulkit Goyal
py3: add 32 new tests passing to the whitelist...
r35376 test-issue1502.t
test-issue1802.t
Pulkit Goyal
py3: whitelist 15 more tests passing on Python 3...
r34352 test-issue1877.t
Pulkit Goyal
py3: update the python3-whitelist with new tests which pass on Python 3...
r33118 test-issue1993.t
Augie Fackler
py3: sixteen more passing tests...
r36597 test-issue2137.t
Augie Fackler
py3: whitelist another six passing tests...
r36338 test-issue3084.t
Augie Fackler
py3: whitelist another three passing tests...
r36316 test-issue4074.t
Augie Fackler
python3: whitelist many more passing tests...
r35228 test-issue522.t
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-issue586.t
Augie Fackler
py3: whitelist a test caught by the ratchet...
r39614 test-issue5979.t
Pulkit Goyal
py3: whitelist 15 more tests passing on Python 3...
r34352 test-issue612.t
test-issue619.t
Pulkit Goyal
py3: whitelist 13 new passing tests...
r37402 test-issue660.t
Pulkit Goyal
py3: whitelist 15 more tests passing on Python 3...
r34352 test-issue672.t
Pulkit Goyal
py3: update the python3-whitelist with new tests which pass on Python 3...
r33118 test-issue842.t
Augie Fackler
python3: another 3 tests whitelisted
r34220 test-journal-exists.t
Pulkit Goyal
py3: whitelist 13 new passing tests...
r37402 test-journal-share.t
test-journal.t
Yuya Nishihara
py3: byte-stringify literals in test-keyword.t...
r40355 test-keyword.t
Yuya Nishihara
py3: fix loop over byte string in wireprotov1peer...
r38350 test-known.t
Augie Fackler
py3: whitelist another 15 passing tests...
r36682 test-largefiles-cache.t
Augie Fackler
archival: use py3 friendly replacements for chr() and long()...
r36746 test-largefiles-misc.t
Augie Fackler
py3: whitelist another 11 passing tests...
r36148 test-largefiles-small-disk.t
Yuya Nishihara
ui: do not use rawinput() when we have to replace sys.stdin/stdout...
r36813 test-largefiles-update.t
Matt Harbison
py3: adapt test-largefiles-wireproto.t to python3
r40906 test-largefiles-wireproto.t
Augie Fackler
largefiles: opts appears to already be bytes in this instance...
r37773 test-largefiles.t
Pulkit Goyal
py3: whitelist three more passing test caught by buildbot...
r40724 test-lfconvert.t
test-lfs-bundle.t
Yuya Nishihara
ui: do not use rawinput() when we have to replace sys.stdin/stdout...
r36813 test-lfs-largefiles.t
Augie Fackler
tests: port test-lfs-pointer.py to Python 3...
r37947 test-lfs-pointer.py
Pulkit Goyal
py3: whitelist 5 new passing tests caught by buildbot...
r41912 test-lfs-serve.t
Matt Harbison
lfs: explicitly add the Content-Length header when uploading blobs, for py3...
r41485 test-lfs-test-server.t
Pulkit Goyal
py3: whitelist three more passing test caught by buildbot...
r40724 test-lfs.t
Augie Fackler
linelog: port to Python 3...
r38845 test-linelog.py
Augie Fackler
py3: whitelist another six passing tests...
r37626 test-linerange.py
Pulkit Goyal
py3: update the python3-whitelist with new tests which pass on Python 3...
r33118 test-locate.t
Yuya Nishihara
py3: add some b'' to make test-lock-badness.t happy
r36661 test-lock-badness.t
Gregory Szorc
tests: compare against a bytes in test-lock.py...
r41623 test-lock.py
Augie Fackler
py3: port test-log-exthook.t to Python 3...
r40468 test-log-exthook.t
Pulkit Goyal
py3: whitelist 13 new passing tests...
r37402 test-log-linerange.t
Augie Fackler
tests: port test-log to Python 3...
r36711 test-log.t
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-logexchange.t
Yuya Nishihara
py3: byte-stringify inline extension in test-logtoprocess.t
r40655 test-logtoprocess.t
Augie Fackler
contrib: check in a whitelist of passing tests in Python 3
r32854 test-lrucachedict.py
Augie Fackler
py3: whitelist another 11 passing tests...
r36148 test-mactext.t
Pulkit Goyal
py3: whitelist 13 new passing tests...
r37402 test-mailmap.t
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-manifest-merging.t
Pulkit Goyal
py3: update the python3-whitelist with new tests which pass on Python 3...
r33118 test-manifest.py
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-manifest.t
Augie Fackler
python3: whitelist four more passing tests...
r33837 test-match.py
Augie Fackler
py3: whitelist another eight passing tests...
r36362 test-mdiff.py
Yuya Nishihara
ui: do not use rawinput() when we have to replace sys.stdin/stdout...
r36813 test-merge-changedelete.t
Augie Fackler
py3: whitelist another 11 passing tests...
r36148 test-merge-closedheads.t
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-merge-commit.t
Augie Fackler
py3: whitelist five more passing tests...
r36312 test-merge-criss-cross.t
Pulkit Goyal
py3: update the python3-whitelist with new tests which pass on Python 3...
r33118 test-merge-default.t
Yuya Nishihara
py3: drop b'' from generate-working-copy-states.py output...
r36804 test-merge-force.t
Yuya Nishihara
ui: do not use rawinput() when we have to replace sys.stdin/stdout...
r36813 test-merge-halt.t
Pulkit Goyal
py3: add 32 new tests passing to the whitelist...
r35376 test-merge-internal-tools-pattern.t
Augie Fackler
python3: whitelist another 7 passing tests...
r35859 test-merge-local.t
Augie Fackler
py3: whitelist another test caught by the ratchet...
r39254 test-merge-no-file-change.t
Augie Fackler
python3: whitelist many more passing tests...
r35228 test-merge-remove.t
test-merge-revert.t
Pulkit Goyal
py3: add 32 new tests passing to the whitelist...
r35376 test-merge-revert2.t
Augie Fackler
python3: whitelist many more passing tests...
r35228 test-merge-subrepos.t
Pulkit Goyal
py3: add 14 new passing tests to whitelist...
r36507 test-merge-symlinks.t
Augie Fackler
tests: stop over-specifying tempfile name...
r37007 test-merge-tools.t
Pulkit Goyal
py3: whitelist 14 new tests passing...
r36555 test-merge-types.t
Augie Fackler
py3: whitelist another eight passing tests...
r36362 test-merge1.t
Pulkit Goyal
py3: add 32 new tests passing to the whitelist...
r35376 test-merge10.t
Pulkit Goyal
py3: update the python3-whitelist with new tests which pass on Python 3...
r33118 test-merge2.t
Pulkit Goyal
py3: whitelist 15 more tests passing on Python 3...
r34352 test-merge4.t
Pulkit Goyal
py3: update the python3-whitelist with new tests which pass on Python 3...
r33118 test-merge5.t
Pulkit Goyal
py3: add 32 new tests passing to the whitelist...
r35376 test-merge6.t
test-merge7.t
test-merge8.t
Pulkit Goyal
py3: whitelist 14 new tests passing...
r36555 test-merge9.t
Augie Fackler
tests: port test-minifileset.py to Python 3...
r37894 test-minifileset.py
Augie Fackler
minirst: fix bytes slicing defect on Python 3...
r37900 test-minirst.py
Augie Fackler
py3: buildbot found more passing tests, thanks to indygreg for most of them...
r41363 test-missing-capability.t
Augie Fackler
py3: new tests from the ratchet...
r41435 test-mq-eol.t
Pulkit Goyal
py3: whitelist another 8 passing tests...
r36409 test-mq-git.t
Augie Fackler
mq: use stringutil.pprint instead of pycompat.byterepr...
r39084 test-mq-guards.t
Augie Fackler
py3: whitelist another 15 passing tests...
r36682 test-mq-header-date.t
test-mq-header-from.t
Augie Fackler
py3: whitelist another nine passing tests...
r37625 test-mq-merge.t
Augie Fackler
py3: buildbot found more passing tests, thanks to indygreg for most of them...
r41363 test-mq-missingfiles.t
Pulkit Goyal
py3: whitelist another 8 passing tests...
r36409 test-mq-pull-from-bundle.t
Augie Fackler
py3: whitelist six new passing tests...
r37804 test-mq-qclone-http.t
Augie Fackler
py3: whitelist another nine passing tests...
r37625 test-mq-qdelete.t
Pulkit Goyal
py3: whitelist another 8 passing tests...
r36409 test-mq-qdiff.t
Augie Fackler
py3: whitelist another 15 passing tests...
r36682 test-mq-qfold.t
test-mq-qgoto.t
Pulkit Goyal
py3: add 32 new tests passing to the whitelist...
r35376 test-mq-qimport-fail-cleanup.t
Augie Fackler
py3: buildbot found more passing tests, thanks to indygreg for most of them...
r41363 test-mq-qimport.t
Augie Fackler
py3: whitelist another nine passing tests...
r37625 test-mq-qnew.t
Augie Fackler
py3: whitelist another 15 passing tests...
r36682 test-mq-qpush-exact.t
Augie Fackler
mq: use stringutil.pprint instead of pycompat.byterepr...
r39084 test-mq-qpush-fail.t
Augie Fackler
py3: whitelist another 11 passing tests...
r36148 test-mq-qqueue.t
Yuya Nishihara
ui: do not use rawinput() when we have to replace sys.stdin/stdout...
r36813 test-mq-qrefresh-interactive.t
Augie Fackler
py3: whitelist another 15 passing tests...
r36682 test-mq-qrefresh-replace-log-message.t
Pulkit Goyal
py3: whitelist another 8 passing tests...
r36409 test-mq-qrefresh.t
Augie Fackler
py3: whitelist another 15 passing tests...
r36682 test-mq-qrename.t
Augie Fackler
python3: whitelist an additional 11 tests...
r35976 test-mq-qsave.t
Augie Fackler
py3: whitelist another 15 passing tests...
r36682 test-mq-safety.t
Augie Fackler
py3: record several more passes from the buildbot ratchet...
r41655 test-mq-subrepo-svn.t
Yuya Nishihara
ui: do not use rawinput() when we have to replace sys.stdin/stdout...
r36813 test-mq-subrepo.t
Augie Fackler
py3: whitelist another 15 passing tests...
r36682 test-mq-symlinks.t
Pulkit Goyal
py3: add two passing tests to whitelist found by buildbot...
r39692 test-mq.t
Augie Fackler
py3: whitelist another 15 passing tests...
r36682 test-mv-cp-st-diff.t
Augie Fackler
py3: whitelist another 3 tests caught by the ratchet...
r38861 test-narrow-acl.t
Augie Fackler
archival: use py3 friendly replacements for chr() and long()...
r36746 test-narrow-archive.t
Augie Fackler
py3: whitelist another 11 passing tests...
r36376 test-narrow-clone-no-ellipsis.t
Augie Fackler
py3: two more passing tests...
r37689 test-narrow-clone-non-narrow-server.t
Augie Fackler
py3: whitelist another 11 passing tests...
r36376 test-narrow-clone-nonlinear.t
Pulkit Goyal
py3: add 5 new passing tests to whitelist caught by buildbot...
r40387 test-narrow-clone-stream.t
Augie Fackler
py3: whitelist another 11 passing tests...
r36376 test-narrow-clone.t
Augie Fackler
py3: sixteen more passing tests...
r36597 test-narrow-commit.t
Augie Fackler
py3: whitelist another 11 passing tests...
r36376 test-narrow-copies.t
Augie Fackler
py3: more passing tests (ten this time)...
r36743 test-narrow-debugcommands.t
Augie Fackler
py3: whitelist another 11 passing tests...
r36376 test-narrow-debugrebuilddirstate.t
test-narrow-exchange-merges.t
Augie Fackler
py3: whitelist three more passing tests...
r36579 test-narrow-exchange.t
Augie Fackler
py3: more passing tests (ten this time)...
r36743 test-narrow-expanddirstate.t
Augie Fackler
py3: whitelist another 11 passing tests...
r36376 test-narrow-merge.t
test-narrow-patch.t
Augie Fackler
py3: two more narrow tests passing...
r36378 test-narrow-patterns.t
Augie Fackler
py3: whitelist another 11 passing tests...
r36376 test-narrow-pull.t
test-narrow-rebase.t
Augie Fackler
py3: two more narrow tests passing...
r36378 test-narrow-shallow-merges.t
Pulkit Goyal
py3: add 14 new passing tests to whitelist...
r36507 test-narrow-shallow.t
Augie Fackler
py3: buildbot spotted more passing tests...
r41153 test-narrow-share.t
Pulkit Goyal
py3: add a test to whitelist caught by buildbot...
r41218 test-narrow-sparse.t
Augie Fackler
py3: more passing tests (ten this time)...
r36743 test-narrow-strip.t
Pulkit Goyal
py3: add new passing tests spotted by the buildbot...
r39493 test-narrow-trackedcmd.t
Augie Fackler
py3: whitelist another 11 passing tests...
r36376 test-narrow-update.t
Pulkit Goyal
py3: add new passing test to whitelist found by buildbot...
r39445 test-narrow-widen-no-ellipsis.t
Augie Fackler
py3: whitelist another 5 passing tests thanks to the ratchet...
r38358 test-narrow-widen.t
test-narrow.t
Augie Fackler
py3: whitelist another 15 passing tests...
r36682 test-nested-repo.t
Augie Fackler
py3: whitelist another 11 passing tests...
r36148 test-newbranch.t
Augie Fackler
py3: fix test-newcgi.t...
r41382 test-newcgi.t
Augie Fackler
py3: mark another passing test...
r39791 test-newercgi.t
Augie Fackler
py3: whitelist 3 more passing tests caught with the ratchet...
r38676 test-nointerrupt.t
Augie Fackler
py3: more tests from the ratchet...
r41467 test-notify-changegroup.t
Augie Fackler
python3: whitelist two more passing tests...
r35718 test-obshistory.t
Augie Fackler
py3: whitelist more passing tests...
r36623 test-obsmarker-template.t
Augie Fackler
py3: whitelist another 11 passing tests...
r36148 test-obsmarkers-effectflag.t
Augie Fackler
py3: whitelist another passing test...
r39648 test-obsolete-bounds-checking.t
Augie Fackler
py3: whitelist another eight passing tests...
r36267 test-obsolete-bundle-strip.t
Augie Fackler
python3: whitelist another 24 passing tests...
r35895 test-obsolete-changeset-exchange.t
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-obsolete-checkheads.t
Augie Fackler
python3: whitelist an additional 11 tests...
r35976 test-obsolete-distributed.t
Pulkit Goyal
py3: add b'' prefixes in tests/test-obsolete-divergent.t...
r38464 test-obsolete-divergent.t
Augie Fackler
py3: sixteen more passing tests...
r36597 test-obsolete-tag-cache.t
Augie Fackler
py3: another one started passing...
r40205 test-obsolete.t
Augie Fackler
py3: more tests from the ratchet...
r41467 test-oldcgi.t
Pulkit Goyal
py3: add some glob to make output compatible with python 3...
r40266 test-origbackup-conflict.t
Pulkit Goyal
py3: use stringutil.pprint() instead of '%r'...
r40262 test-pager-legacy.t
Pulkit Goyal
py3: add 13 new passing tests to whitelist...
r38102 test-pager.t
Augie Fackler
python3: whitelist another 7 passing tests...
r35859 test-parents.t
Mark Thomas
py3: fix test-parse-date.t...
r40292 test-parse-date.t
Augie Fackler
py3: port test-parseindex.t to Python 3...
r41389 test-parseindex.t
Augie Fackler
tests: port test-parseindex2.py to Python 3...
r37911 test-parseindex2.py
Pulkit Goyal
py3: add 4 new passing tests to whitelist...
r38387 test-patch-offset.t
Augie Fackler
py3: whitelist another 5 passing tests thanks to the ratchet...
r38358 test-patch.t
Augie Fackler
patchbomb: don't unintentionally duplicate headers...
r39070 test-patchbomb-bookmark.t
Augie Fackler
dummysmtpd: accept additional kwargs from stdlib smtpd...
r39064 test-patchbomb-tls.t
Augie Fackler
tests: allow for a bonus newline in base64'd email payload...
r39075 test-patchbomb.t
Pulkit Goyal
py3: add some glob to make output compatible with python 3...
r40266 test-pathconflicts-basic.t
Pulkit Goyal
py3: whitelist 14 new tests passing...
r36555 test-pathconflicts-merge.t
test-pathconflicts-update.t
Augie Fackler
tests: port test-pathencode.py to Python 3...
r37897 test-pathencode.py
Pulkit Goyal
py3: hack around inconsistency of type of name passed to DNSQuestion...
r42754 test-paths.t
Pulkit Goyal
py3: add 14 new passing tests to whitelist...
r36507 test-pending.t
Augie Fackler
python3: whitelist another 5 passing tests found with the ratchet script
r34026 test-permissions.t
Ian Moody
py3: add test-phabricator.py to python3-whitelist...
r42138 test-phabricator.t
Pulkit Goyal
py3: add two new passing tests found by buildbot...
r41981 test-phase-archived.t
Augie Fackler
py3: one more passing test...
r40204 test-phases-exchange.t
Pulkit Goyal
py3: add 14 new passing tests to whitelist...
r36507 test-phases.t
Augie Fackler
py3: moar passing tests...
r40275 test-profile.t
Pulkit Goyal
py3: add b'' prefixes in tests/test-progress.t...
r40258 test-progress.t
Pulkit Goyal
py3: add 5 new passing tests to whitelist caught by buildbot...
r40387 test-propertycache.py
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-pull-branch.t
Gregory Szorc
wireprotov1server: use binascii.unhexlify...
r41609 test-pull-bundle.t
Augie Fackler
py3: whitelist test-pull-http.t...
r36277 test-pull-http.t
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-pull-permission.t
Augie Fackler
py3: whitelist another six passing tests...
r36338 test-pull-pull-corruption.t
Augie Fackler
py3: whitelist another eight passing tests...
r36362 test-pull-r.t
test-pull-update.t
Augie Fackler
py3: consolidate down some (case ...) entries...
r38109 test-pull.t
Augie Fackler
py3: sixteen more passing tests...
r36597 test-purge.t
Pulkit Goyal
py3: add two passing tests to whitelist found by buildbot...
r39692 test-push-cgi.t
Pulkit Goyal
py3: add 32 new tests passing to the whitelist...
r35376 test-push-checkheads-partial-C1.t
test-push-checkheads-partial-C2.t
test-push-checkheads-partial-C3.t
test-push-checkheads-partial-C4.t
Augie Fackler
python3: whitelist another *13* tests that now pass...
r33839 test-push-checkheads-pruned-B1.t
Pulkit Goyal
py3: add 32 new tests passing to the whitelist...
r35376 test-push-checkheads-pruned-B2.t
test-push-checkheads-pruned-B3.t
test-push-checkheads-pruned-B4.t
test-push-checkheads-pruned-B5.t
Augie Fackler
python3: whitelist another *13* tests that now pass...
r33839 test-push-checkheads-pruned-B6.t
test-push-checkheads-pruned-B7.t
Pulkit Goyal
py3: add 32 new tests passing to the whitelist...
r35376 test-push-checkheads-pruned-B8.t
Augie Fackler
python3: whitelist another *13* tests that now pass...
r33839 test-push-checkheads-superceed-A1.t
Pulkit Goyal
py3: add 32 new tests passing to the whitelist...
r35376 test-push-checkheads-superceed-A2.t
test-push-checkheads-superceed-A3.t
Augie Fackler
python3: whitelist another *13* tests that now pass...
r33839 test-push-checkheads-superceed-A4.t
test-push-checkheads-superceed-A5.t
Pulkit Goyal
py3: add 32 new tests passing to the whitelist...
r35376 test-push-checkheads-superceed-A6.t
test-push-checkheads-superceed-A7.t
Augie Fackler
python3: whitelist another *13* tests that now pass...
r33839 test-push-checkheads-superceed-A8.t
test-push-checkheads-unpushed-D1.t
Pulkit Goyal
py3: add 32 new tests passing to the whitelist...
r35376 test-push-checkheads-unpushed-D2.t
test-push-checkheads-unpushed-D3.t
test-push-checkheads-unpushed-D4.t
test-push-checkheads-unpushed-D5.t
Augie Fackler
python3: whitelist another *13* tests that now pass...
r33839 test-push-checkheads-unpushed-D6.t
test-push-checkheads-unpushed-D7.t
Augie Fackler
py3: whitelist test-push-http.t as passing...
r36451 test-push-http.t
Matt Harbison
py3: byteify test-push-race.t
r40905 test-push-race.t
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-push-warn.t
Pulkit Goyal
py3: add 3 new passing tests to whitelist...
r38197 test-push.t
Pulkit Goyal
py3: add 14 new passing tests to whitelist...
r36507 test-pushvars.t
Pulkit Goyal
py3: add 4 new passing tests to whitelist...
r38387 test-qrecord.t
Pulkit Goyal
py3: whitelist 14 new tests passing...
r36555 test-rebase-abort.t
Augie Fackler
py3: whitelist another 3 tests caught by the ratchet...
r38861 test-rebase-backup.t
Pulkit Goyal
py3: add 14 new passing tests to whitelist...
r36507 test-rebase-base-flag.t
Augie Fackler
py3: whitelist another six passing tests...
r36174 test-rebase-bookmarks.t
Pulkit Goyal
py3: add 14 new passing tests to whitelist...
r36507 test-rebase-brute-force.t
Pulkit Goyal
py3: whitelist 14 new tests passing...
r36555 test-rebase-cache.t
Augie Fackler
py3: whitelist another six passing tests...
r36174 test-rebase-check-restore.t
Augie Fackler
py3: whitelist another nine passing tests...
r36558 test-rebase-collapse.t
Pulkit Goyal
py3: whitelist 13 new passing tests...
r37402 test-rebase-conflicts.t
Augie Fackler
py3: whitelist five more passing tests...
r36312 test-rebase-dest.t
Pulkit Goyal
py3: whitelist 14 new tests passing...
r36555 test-rebase-detach.t
Augie Fackler
py3: whitelist five more passing tests...
r36312 test-rebase-emptycommit.t
Augie Fackler
python3: whitelist an additional 11 tests...
r35976 test-rebase-inmemory.t
Pulkit Goyal
py3: add 14 new passing tests to whitelist...
r36507 test-rebase-interruptions.t
Augie Fackler
python3: whitelist an additional 11 tests...
r35976 test-rebase-issue-noparam-single-rev.t
Augie Fackler
py3: whitelist another six passing tests...
r36174 test-rebase-legacy.t
Augie Fackler
py3: whitelist another 15 passing tests...
r36682 test-rebase-mq-skip.t
Augie Fackler
py3: whitelist another nine passing tests...
r37625 test-rebase-mq.t
Augie Fackler
py3: whitelist another eight passing tests...
r36267 test-rebase-named-branches.t
Augie Fackler
py3: whitelist five more passing tests...
r36312 test-rebase-newancestor.t
Augie Fackler
py3: whitelist another nine passing tests...
r36558 test-rebase-obsolete.t
Pulkit Goyal
py3: whitelist 14 new tests passing...
r36555 test-rebase-parameters.t
Augie Fackler
py3: whitelist another three passing tests...
r36316 test-rebase-partial.t
Augie Fackler
py3: whitelist another 8 passing tests...
r36187 test-rebase-pull.t
Augie Fackler
py3: whitelist another three passing tests...
r36316 test-rebase-rename.t
Augie Fackler
py3: whitelist another nine passing tests...
r36558 test-rebase-scenario-global.t
Pulkit Goyal
py3: whitelist 14 new tests passing...
r36555 test-rebase-templates.t
Augie Fackler
python3: whitelist an additional 11 tests...
r35976 test-rebase-transaction.t
Pulkit Goyal
py3: add 13 new passing tests to whitelist...
r38102 test-rebuildstate.t
Pulkit Goyal
py3: add 8 new passing tests to the whitelist...
r35608 test-record.t
Augie Fackler
py3: moar passing tests...
r40275 test-releasenotes-formatting.t
test-releasenotes-merging.t
test-releasenotes-parsing.t
Pulkit Goyal
py3: add 14 new passing tests to whitelist...
r36507 test-relink.t
Pulkit Goyal
py3: add 5 new passing tests...
r42492 test-remote-hidden.t
Pulkit Goyal
py3: add 9 new passing tests caught by buildbot...
r40704 test-remotefilelog-bad-configs.t
Pulkit Goyal
py3: add 10 more passing tests caught by ratchet...
r41303 test-remotefilelog-bgprefetch.t
Pulkit Goyal
py3: add 9 new passing tests caught by buildbot...
r40704 test-remotefilelog-blame.t
Pulkit Goyal
py3: add 10 more passing tests caught by ratchet...
r41303 test-remotefilelog-bundle2.t
test-remotefilelog-bundles.t
Augie Fackler
py3: two more passing tests from the ratchet...
r41307 test-remotefilelog-cacheprocess.t
Pulkit Goyal
py3: add 9 new passing tests caught by buildbot...
r40704 test-remotefilelog-clone-tree.t
test-remotefilelog-clone.t
Augie Fackler
py3: record several more passes from the buildbot ratchet...
r41655 test-remotefilelog-corrupt-cache.t
Gregory Szorc
remotefilelog: cast division result to an int...
r41616 test-remotefilelog-datapack.py
Augie Fackler
py3: record several more passes from the buildbot ratchet...
r41655 test-remotefilelog-gc.t
Pulkit Goyal
py3: add 10 more passing tests caught by ratchet...
r41303 test-remotefilelog-gcrepack.t
Augie Fackler
py3: buildbot found more passing tests, thanks to indygreg for most of them...
r41363 test-remotefilelog-histpack.py
Pulkit Goyal
py3: add 10 more passing tests caught by ratchet...
r41303 test-remotefilelog-http.t
Pulkit Goyal
py3: add 9 new passing tests caught by buildbot...
r40704 test-remotefilelog-keepset.t
Pulkit Goyal
py3: whitelist 5 new passing tests caught by buildbot...
r41912 test-remotefilelog-linknodes.t
Pulkit Goyal
py3: add 10 more passing tests caught by ratchet...
r41303 test-remotefilelog-local.t
test-remotefilelog-log.t
Pulkit Goyal
py3: add 9 new passing tests caught by buildbot...
r40704 test-remotefilelog-partial-shallow.t
Augie Fackler
py3: two more passing tests from the ratchet...
r41307 test-remotefilelog-permissions.t
Pulkit Goyal
py3: add 9 new passing tests caught by buildbot...
r40704 test-remotefilelog-prefetch.t
Pulkit Goyal
py3: add a b'' prefix in tests/test-remotefilelog-pull-noshallow.t...
r40986 test-remotefilelog-pull-noshallow.t
Pulkit Goyal
py3: whitelist 5 new passing tests caught by buildbot...
r41912 test-remotefilelog-push-pull.t
Augie Fackler
py3: record several more passes from the buildbot ratchet...
r41655 test-remotefilelog-repack-fast.t
Augie Fackler
py3: fix test-remotefilelog-repack.t...
r41642 test-remotefilelog-repack.t
Pulkit Goyal
py3: add 9 new passing tests caught by buildbot...
r40704 test-remotefilelog-share.t
Pulkit Goyal
py3: add 10 more passing tests caught by ratchet...
r41303 test-remotefilelog-sparse.t
Pulkit Goyal
py3: add 9 new passing tests caught by buildbot...
r40704 test-remotefilelog-tags.t
Pulkit Goyal
py3: add 10 more passing tests caught by ratchet...
r41303 test-remotefilelog-wireproto.t
Augie Fackler
py3: whitelist another six passing tests...
r36174 test-remove.t
Augie Fackler
py3: whitelist 3 more passing tests caught with the ratchet...
r38676 test-removeemptydirs.t
Augie Fackler
python3: whitelist another 7 passing tests...
r35859 test-rename-after-merge.t
Pulkit Goyal
py3: add 32 new tests passing to the whitelist...
r35376 test-rename-dir-merge.t
Pulkit Goyal
py3: whitelist 15 more tests passing on Python 3...
r34352 test-rename-merge1.t
Pulkit Goyal
py3: add new passing tests spotted by the buildbot...
r39493 test-rename-merge2.t
Augie Fackler
python3: whitelist another *13* tests that now pass...
r33839 test-rename.t
Augie Fackler
py3: whitelist another eight passing tests...
r36267 test-repair-strip.t
Augie Fackler
py3: whitelist another six passing tests...
r36338 test-repo-compengines.t
Pulkit Goyal
py3: add a b'' prefix in tests/test-requires.t...
r40265 test-requires.t
Pulkit Goyal
py3: whitelist 14 new tests passing...
r36555 test-resolve.t
Augie Fackler
py3: re-sort test whitelist...
r38108 test-revert-flags.t
Pulkit Goyal
py3: add 13 new passing tests to whitelist...
r38102 test-revert-interactive.t
Augie Fackler
python3: whitelist many more passing tests...
r35228 test-revert-unknown.t
Pulkit Goyal
py3: use print as a function in tests/test-revert.t...
r39776 test-revert.t
Augie Fackler
py3: whitelist another test caught by the ratchet...
r39009 test-revisions.t
Pulkit Goyal
py3: add 14 new passing tests to whitelist...
r36507 test-revlog-ancestry.py
Augie Fackler
python3: whitelist many more passing tests...
r35228 test-revlog-group-emptyiter.t
Pulkit Goyal
py3: add 8 new passing tests to the whitelist...
r35608 test-revlog-mmapindex.t
Pulkit Goyal
py3: update the python3-whitelist with new tests which pass on Python 3...
r33118 test-revlog-packentry.t
Augie Fackler
py3: whitelist two more passing tests observed by buildbot...
r38062 test-revlog-raw.py
Pulkit Goyal
py3: add 4 new passing tests to whitelist...
r38387 test-revlog-v2.t
Mark Thomas
py3: fix test-revlog.t...
r40317 test-revlog.t
Augie Fackler
python3: whitelist an additional 11 tests...
r35976 test-revset-dirstate-parents.t
Augie Fackler
py3: whitelist six new passing tests...
r37804 test-revset-legacy-lookup.t
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-revset-outgoing.t
Pulkit Goyal
py3: whitelist 5 new passing tests caught by buildbot...
r41912 test-revset.t
Augie Fackler
py3: have test-revset2.t write test scripts in a more portable way...
r41618 test-revset2.t
Augie Fackler
transaction: fix an error string with bytestr() on a repr()d value...
r36753 test-rollback.t
Augie Fackler
contrib: check in a whitelist of passing tests in Python 3
r32854 test-run-tests.py
Augie Fackler
tests: fix up a couple of minor bytes inconsistencies in run-tests.py...
r37759 test-run-tests.t
Augie Fackler
py3: buildbot spotted more passing tests...
r41153 test-rust-ancestor.py
Pulkit Goyal
py3: add 5 new passing tests...
r42492 test-rust-discovery.py
Augie Fackler
py3: whitelist three more cases...
r36727 test-schemes.t
Augie Fackler
python3: whitelist another four passing tests...
r36095 test-serve.t
Pulkit Goyal
py3: add a new passing test found by buildbot...
r42011 test-server-view.t
Augie Fackler
py3: whitelist another nine passing tests...
r37625 test-setdiscovery.t
Pulkit Goyal
py3: add one new passing test found by buildbot...
r42547 test-share-bookmarks.t
Augie Fackler
py3: whitelist more passing tests...
r36623 test-share.t
Augie Fackler
py3: fix test-shelve.t on Python 3...
r37760 test-shelve.t
Pulkit Goyal
py3: whitelist another passing test caught by buildbot...
r40979 test-shelve2.t
Pulkit Goyal
py3: whitelist 15 more tests passing on Python 3...
r34352 test-show-stack.t
Augie Fackler
py3: sixteen more passing tests...
r36597 test-show-work.t
Augie Fackler
python3: whitelist another four passing tests...
r36095 test-show.t
Pulkit Goyal
py3: add 32 new tests passing to the whitelist...
r35376 test-simple-update.t
Augie Fackler
tests: port test-simplekeyvaluefile.py to Python 3...
r37958 test-simplekeyvaluefile.py
Augie Fackler
tests: port test-simplemerge.py to Python 3...
r37909 test-simplemerge.py
Augie Fackler
python3: whitelist another 7 passing tests...
r35859 test-single-head.t
Pulkit Goyal
py3: add 8 new passing tests to the whitelist...
r35608 test-sparse-clear.t
Pulkit Goyal
py3: add 3 new passing tests to whitelist...
r38197 test-sparse-clone.t
Augie Fackler
py3: whitelist another six passing tests...
r37626 test-sparse-import.t
Pulkit Goyal
py3: add 8 new passing tests to the whitelist...
r35608 test-sparse-merges.t
Augie Fackler
py3: whitelist another six passing tests...
r37626 test-sparse-profiles.t
Pulkit Goyal
py3: add 8 new passing tests to the whitelist...
r35608 test-sparse-requirement.t
test-sparse-verbose-json.t
Pulkit Goyal
py3: add 3 new passing tests to whitelist...
r38197 test-sparse.t
Augie Fackler
py3: consolidate down some (case ...) entries...
r38109 test-split.t
Yuya Nishihara
py3: fix loop over byte string in wireprotov1peer...
r38350 test-ssh-bundle1.t
Augie Fackler
py3: whitelist another 11 passing tests...
r36148 test-ssh-clone-r.t
Augie Fackler
tests: suppress read(-1) -> '' calls in fileobjectobserver...
r38334 test-ssh-proto-unbundle.t
Augie Fackler
py3: whitelist another eight passing tests...
r36267 test-ssh-proto.t
Pulkit Goyal
py3: more globing of things to make output compatible between py2 and py3...
r40263 test-ssh-repoerror.t
Yuya Nishihara
py3: fix loop over byte string in wireprotov1peer...
r38350 test-ssh.t
Augie Fackler
py3: whitelist another eight passing tests...
r36267 test-sshserver.py
Pulkit Goyal
py3: whitelist 13 new passing tests...
r37402 test-stack.t
Augie Fackler
py3: more tests from the ratchet...
r41467 test-static-http.t
Pulkit Goyal
py3: use stringutil.pprint() in color.py instead of '%r'...
r40259 test-status-color.t
Augie Fackler
tests: fix test-status-inprocess.py on Python 3...
r37918 test-status-inprocess.py
Pulkit Goyal
py3: whitelist another 8 passing tests...
r36409 test-status-rev.t
Augie Fackler
python3: another 3 tests whitelisted
r34220 test-status-terse.t
Mark Thomas
py3: fix test-status.t...
r40314 test-status.t
Pulkit Goyal
py3: whitelist another passing tests caught by buildbot...
r40024 test-storage.py
Augie Fackler
py3: whitelist two more passing tests...
r39842 test-stream-bundle-v2.t
Augie Fackler
py3: buildbot informs me we have two new passing tests...
r38312 test-strict.t
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-strip-cross.t
Augie Fackler
python3: whitelist another 24 passing tests...
r35895 test-strip.t
Augie Fackler
archival: use py3 friendly replacements for chr() and long()...
r36746 test-subrepo-deep-nested-change.t
Augie Fackler
subrepo: bytes/str cleanups on Git support...
r41624 test-subrepo-git.t
Augie Fackler
py3: whitelist another six passing tests...
r37626 test-subrepo-missing.t
Augie Fackler
py3: re-sort test whitelist...
r38108 test-subrepo-paths.t
Augie Fackler
py3: whitelist six new passing tests...
r37804 test-subrepo-recursion.t
test-subrepo-relative-path.t
Augie Fackler
py3: record several more passes from the buildbot ratchet...
r41655 test-subrepo-svn.t
Augie Fackler
py3: more passing tests (ten this time)...
r36743 test-subrepo.t
Augie Fackler
tests: port test-symlink-os-yes-fs-no.py to Python 3...
r37954 test-symlink-os-yes-fs-no.py
Pulkit Goyal
py3: add 13 new passing tests to whitelist...
r38102 test-symlink-placeholder.t
Augie Fackler
py3: whitelist another 15 passing tests...
r36682 test-symlinks.t
Yuya Nishihara
py3: work around comparison between int and None in tagmerge
r36752 test-tag.t
Yuya Nishihara
py3: read/write plain lock file in binary mode...
r36801 test-tags.t
Yuya Nishihara
tests: rename and document test-command-template.t...
r38456 test-template-basic.t
Yuya Nishihara
tests: extract test-template-functions.t from test-command-template.t...
r38453 test-template-functions.t
Yuya Nishihara
tests: extract test-template-keywords.t from test-command-template.t
r38455 test-template-keywords.t
Yuya Nishihara
tests: extract test-template-map.t from test-command-template.t...
r38452 test-template-map.t
Augie Fackler
tests: fix last failure in test-tools.t...
r40282 test-tools.t
Pulkit Goyal
py3: add `and None` to suppress return values of .write() calls...
r38390 test-transplant.t
Augie Fackler
py3: buildbot found more passing tests, thanks to indygreg for most of them...
r41363 test-treediscovery-legacy.t
test-treediscovery.t
Augie Fackler
py3: more passing tests (ten this time)...
r36743 test-treemanifest.t
Augie Fackler
py3: record several more passes from the buildbot ratchet...
r41655 test-trusted.py
Augie Fackler
tests: port test-ui-color.py to Python 3...
r37944 test-ui-color.py
Augie Fackler
tests: port test-ui-config to Python 3...
r37956 test-ui-config.py
Augie Fackler
tests: port test-ui-verbosity.py to Python 3...
r37946 test-ui-verbosity.py
Augie Fackler
python3: whitelist an additional 11 tests...
r35976 test-unamend.t
Augie Fackler
py3: whitelist another 5 passing tests thanks to the ratchet...
r38358 test-unbundlehash.t
Augie Fackler
python3: whitelist many more passing tests...
r35228 test-uncommit.t
Augie Fackler
contrib: check in a whitelist of passing tests in Python 3
r32854 test-unified-test.t
Pulkit Goyal
py3: add 13 new passing tests to whitelist...
r38102 test-unionrepo.t
Pulkit Goyal
py3: add 32 new tests passing to the whitelist...
r35376 test-unrelated-pull.t
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-up-local-change.t
Augie Fackler
py3: fix test-update-atomic.t...
r41383 test-update-atomic.t
Augie Fackler
py3: whitelist another 11 passing tests...
r36148 test-update-branches.t
Augie Fackler
python3: whitelist an additional 23 passing tests...
r35865 test-update-dest.t
Pulkit Goyal
py3: whitelist 15 more tests passing on Python 3...
r34352 test-update-issue1456.t
Augie Fackler
python3: whitelist many more passing tests...
r35228 test-update-names.t
Pulkit Goyal
py3: update the python3-whitelist with new tests which pass on Python 3...
r33118 test-update-reverse.t
Augie Fackler
py3: more passing tests (ten this time)...
r36743 test-upgrade-repo.t
Augie Fackler
py3: another three passing...
r37757 test-url-download.t
Augie Fackler
py3: whitelist another eight passing tests...
r36362 test-url-rev.t
Augie Fackler
tests: port test-url.py to Python 3...
r37892 test-url.py
Augie Fackler
py3: whitelist another eight passing tests...
r36267 test-username-newline.t
Augie Fackler
py3: whitelist another 3 tests caught by the ratchet...
r38861 test-util.py
Augie Fackler
py3: sixteen more passing tests...
r36597 test-verify.t
Augie Fackler
py3: whitelist two more passing tests observed by buildbot...
r38062 test-walk.t
Augie Fackler
tests: port test-walkrepo.py to Python 3...
r37895 test-walkrepo.py
Augie Fackler
py3: whitelist more passing tests...
r36623 test-websub.t
Augie Fackler
python3: whitelist another 5 passing tests...
r36197 test-win32text.t
Augie Fackler
py3: new tests from the ratchet...
r41435 test-wireproto-caching.t
Augie Fackler
tests: add all missing b prefixes in reactor tests...
r37700 test-wireproto-clientreactor.py
Pulkit Goyal
py3: add 8 new passing tests to whitelist found by buildbot...
r40113 test-wireproto-command-branchmap.t
Augie Fackler
py3: new tests from the ratchet...
r41435 test-wireproto-command-capabilities.t
Pulkit Goyal
py3: add 8 new passing tests to whitelist found by buildbot...
r40113 test-wireproto-command-changesetdata.t
test-wireproto-command-filedata.t
Pulkit Goyal
py3: add 3 more passing tests to whitelist caught by buildbot...
r40249 test-wireproto-command-filesdata.t
Pulkit Goyal
py3: add 8 new passing tests to whitelist found by buildbot...
r40113 test-wireproto-command-heads.t
Augie Fackler
py3: new tests from the ratchet...
r41435 test-wireproto-command-known.t
Pulkit Goyal
py3: add 8 new passing tests to whitelist found by buildbot...
r40113 test-wireproto-command-listkeys.t
test-wireproto-command-lookup.t
test-wireproto-command-manifestdata.t
test-wireproto-command-pushkey.t
Pulkit Goyal
py3: add 5 new passing tests to whitelist caught by buildbot...
r40387 test-wireproto-command-rawstorefiledata.t
Augie Fackler
py3: new tests from the ratchet...
r41435 test-wireproto-content-redirects.t
test-wireproto-exchangev2.t
Augie Fackler
stringutil: ast.literal_eval needs a unicode on py3...
r37699 test-wireproto-framing.py
Augie Fackler
tests: add all missing b prefixes in reactor tests...
r37700 test-wireproto-serverreactor.py
Augie Fackler
tests: port test-wireproto.py to Python 3...
r37942 test-wireproto.py
Augie Fackler
py3: buildbot found more passing tests, thanks to indygreg for most of them...
r41363 test-wireproto.t
Pulkit Goyal
py3: add 1 new passing test found by buildbot...
r41712 test-worker.t
Augie Fackler
tests: migrate test-wsgirequest.py to Python 3...
r37912 test-wsgirequest.py
Augie Fackler
contrib: check in a whitelist of passing tests in Python 3
r32854 test-xdg.t