Fix ordering of auto-generated trait bounds in rustdoc output#49196
Merged
bors merged 2 commits intorust-lang:masterfrom Mar 21, 2018
Merged
Fix ordering of auto-generated trait bounds in rustdoc output#49196bors merged 2 commits intorust-lang:masterfrom
bors merged 2 commits intorust-lang:masterfrom
Conversation
While the order of the where clauses was deterministic, the ordering of bounds and lifetimes was not. This made the order flip- flop randomly when new traits and impls were added to libstd. This PR makes the ordering of bounds and lifetimes deterministic, and re-enables the test that was causing the issue. Fixes rust-lang#49123
Contributor
Author
Contributor
|
Great! Thanks for getting this set up! @bors r+ p=1 (fixes a flaky test) |
Collaborator
|
📌 Commit 7daf3f9 has been approved by |
Collaborator
bors
added a commit
that referenced
this pull request
Mar 20, 2018
…etMisdreavus Fix ordering of auto-generated trait bounds in rustdoc output While the order of the where clauses was deterministic, the ordering of bounds and lifetimes was not. This made the order flip- flop randomly when new traits and impls were added to libstd. This PR makes the ordering of bounds and lifetimes deterministic, and re-enables the test that was causing the issue. Fixes #49123
Collaborator
|
💔 Test failed - status-travis |
Member
|
@bors retry |
Collaborator
|
⌛ Testing commit 7daf3f9 with merge 72da16c27ea66d734b4fd058ef03acfa41b1cadb... |
Collaborator
|
💔 Test failed - status-travis |
Contributor
Currently waiting on #49217 or some other resolution to travis-ci/dpl#788... |
Member
|
@bors retry travis-ci/dpl#788 |
Collaborator
|
⌛ Testing commit 7daf3f9 with merge 33a0ca2a3c6574e258f184b237ee301e4c9948f2... |
kennytm
added a commit
to kennytm/rust
that referenced
this pull request
Mar 20, 2018
…ions, r=QuietMisdreavus Fix ordering of auto-generated trait bounds in rustdoc output While the order of the where clauses was deterministic, the ordering of bounds and lifetimes was not. This made the order flip- flop randomly when new traits and impls were added to libstd. This PR makes the ordering of bounds and lifetimes deterministic, and re-enables the test that was causing the issue. Fixes rust-lang#49123
Member
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
Sign up for free
to 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.
While the order of the where clauses was deterministic, the
ordering of bounds and lifetimes was not. This made the order flip-
flop randomly when new traits and impls were added to libstd.
This PR makes the ordering of bounds and lifetimes deterministic,
and re-enables the test that was causing the issue.
Fixes #49123