Skip to content

Rollup of 14 pull requests #106708

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

Merged
merged 30 commits into from
Jan 11, 2023
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
9971018
std test: better type name, clarifying comment
RalfJung Jan 9, 2023
c5ee72c
Add test for issue 106062
albertlarsan68 Jan 9, 2023
d0c47bd
Fix help docs for -Zallow-features
ehuss Jan 9, 2023
2ee546a
Remove myself from rust-lang/rust reviewers
jyn514 Jan 9, 2023
c43faf1
[RFC 2397] Initial implementation
c410-f3r Jan 9, 2023
f75eb24
remove E0280 and ICE instead
oskgo Jan 6, 2023
203bbfa
impl: specialize impl of `ToString` on `bool`
Ezrashaw Jan 9, 2023
5fb9ca3
create helper function for `rustc_lint_defs::Level` and remove it's d…
onur-ozkan Jan 10, 2023
836ef61
Add comment to cleanup_kinds
tmiasko Dec 3, 2022
78075e1
Change type of mutable_noalias to bool
tmiasko Jan 6, 2023
72f8d6a
Change type of box_noalias to bool
tmiasko Jan 6, 2023
2214c6d
Fix invalid files array re-creation in rustdoc-gui tester
GuillaumeGomez Jan 10, 2023
0399a63
Fix scrolling for item declaration block
GuillaumeGomez Jan 10, 2023
719f545
Add GUI test for item declaration block scrolling
GuillaumeGomez Jan 10, 2023
36c9b49
Remove unneeded ItemId::Primitive variant
GuillaumeGomez Jan 9, 2023
7c2d48b
Add compiler-errors to some trait system notification groups
compiler-errors Jan 11, 2023
8d7a06a
Rollup merge of #105194 - tmiasko:cleanup-kinds, r=davidtwco
Jan 11, 2023
12b1242
Rollup merge of #106521 - oskgo:remove-E0280, r=jackh726
Jan 11, 2023
b0ffc11
Rollup merge of #106628 - GuillaumeGomez:rm-itemid-primitive, r=notri…
Jan 11, 2023
397013d
Rollup merge of #106635 - RalfJung:std-test-nits, r=thomcc
Jan 11, 2023
f547c4b
Rollup merge of #106642 - albertlarsan68:test-106062, r=JohnTitor
Jan 11, 2023
e078d82
Rollup merge of #106645 - c410-f3r:rfc-2397-1, r=oli-obk
Jan 11, 2023
8f57062
Rollup merge of #106653 - ehuss:allow-features-help, r=nilstrieb
Jan 11, 2023
80c3ec8
Rollup merge of #106657 - jyn514:review, r=Mark-Simulacrum
Jan 11, 2023
feca61e
Rollup merge of #106662 - Ezrashaw:specialize-bool-tostring, r=cuviper
Jan 11, 2023
0e92e1d
Rollup merge of #106669 - ozkanonur:helper-function-for-lint-level, r…
Jan 11, 2023
c2d1cac
Rollup merge of #106671 - tmiasko:opt-bool, r=wesleywiser
Jan 11, 2023
2c946bc
Rollup merge of #106689 - GuillaumeGomez:rustdoc-gui-files-array, r=n…
Jan 11, 2023
8248f1d
Rollup merge of #106690 - GuillaumeGomez:item-declaration-scrolling, …
Jan 11, 2023
a804980
Rollup merge of #106698 - compiler-errors:notify-mr-errs, r=Mark-Simu…
Jan 11, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix invalid files array re-creation in rustdoc-gui tester
  • Loading branch information
GuillaumeGomez committed Jan 10, 2023
commit 2214c6d194d668efe6b1ee000a150372110c114b
3 changes: 2 additions & 1 deletion src/tools/rustdoc-gui/tester.js
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,8 @@ async function main(argv) {
await runTests(opts, framework_options, files, new_results, status_bar, it + 1 >= NB_RETRY);
Array.prototype.push.apply(results.successful, new_results.successful);
// We generate the new list of files with the previously failing tests.
files = Array.prototype.concat(new_results.failed, new_results.errored);
files = Array.prototype.concat(new_results.failed, new_results.errored).map(
f => f['file_name']);
if (files.length > originalFilesLen / 2) {
// If we have too many failing tests, it's very likely not flaky failures anymore so
// no need to retry.
Expand Down