about summary refs log tree commit diff
path: root/src/tools
AgeCommit message (Collapse)AuthorLines
2021-08-12Merge commit '7bfc26ec8e7a454786668e7e52ffe527fc649735' into clippyupflip1995-375/+1311
2021-08-12Bless clippy tests.Mara Bos-3/+3
2021-08-12Rollup merge of #87928 - ehuss:update-cargo, r=ehussYuki Okushi-0/+0
Update cargo 9 commits in cc17afbb0067b1f57d8882640f63b2168d5b7624..b51439fd8b505d4800a257acfecf3c69f81e35cf 2021-08-02 20:28:08 +0000 to 2021-08-09 18:40:05 +0000 - Deduplicate entries in cargo --list (rust-lang/cargo#9773) - Include aliases with other commands (rust-lang/cargo#9764) - Add a profile option to select the codegen backend (rust-lang/cargo#9118) - remove useless conversions (rust-lang/cargo#9617) - collapse nested if blocks (rust-lang/cargo#9613) - Refactor fake_file() away from cargo_command tests (rust-lang/cargo#9767) - Update cargo-platform to 0.1.2 (rust-lang/cargo#9762) - Bump to the latest jobserver dependency (rust-lang/cargo#9760) - Fix semver check for rust 1.54.0 (rust-lang/cargo#9763)
2021-08-12Rollup merge of #87878 - lnicola:rust-analyzer-2021-08-09, r=lnicolaYuki Okushi-16/+37
:arrow_up: rust-analyzer
2021-08-11Fix rustdoc-js tool string "parsing"Guillaume Gomez-14/+19
Improve tool: add support for multiline comments
2021-08-11update clippyEsteban Kuber-906/+961
2021-08-10Update cargoEric Huss-0/+0
2021-08-10Move some UI tests to more suitable subdirsYuki Okushi-1/+1
2021-08-10Implement summarised resultsStefan Schindler-37/+54
2021-08-10Switch to stderr for failed testsStefan Schindler-1/+1
2021-08-10Review by @GuillaumeGomezStefan Schindler-11/+4
Co-authored-by: Guillaume Gomez <guillaume1.gomez@gmail.com>
2021-08-10Implement sequential executionStefan Schindler-3/+7
2021-08-10Capture outputs and show output when debug flag is passedStefan Schindler-28/+72
2021-08-10Run rustdoc-gui tests in parallelStefan Schindler-4/+33
2021-08-09:arrow_up: rust-analyzerLaurențiu Nicola-16/+37
2021-08-07Auto merge of #87851 - JohnTitor:rollup-odvmr47, r=JohnTitorbors-8/+16
Rollup of 6 pull requests Successful merges: - #87744 (Add x.py option to --force-rerun compiletest tests) - #87789 (Make vec-shrink-panic test compatible with v0 mangling) - #87833 (Fix typo -- "The" -> "They") - #87834 (Fix small typo) - #87838 (Document that fs::read_dir skips . and ..) - #87842 (Fix intra doc link in hidden doc of Iterator::__iterator_get_unchecked) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2021-08-08Rollup merge of #87833 - m-rsha:patch-1, r=Aaron1011Yuki Okushi-1/+1
Fix typo -- "The" -> "They" I was reading through source code to try to learn more about the language and how to make the most of it when I ran into a small typo, so I figured I'd offer up a fix! I'm pretty new now, but hopefully I can offer up more substantial changes later. :D
2021-08-08Rollup merge of #87744 - Smittyvb:xpy-test-force-rerun, r=Mark-SimulacrumYuki Okushi-7/+15
Add x.py option to --force-rerun compiletest tests This can be used like `./x.py test src/test/ui/abi/ --force-rerun`, and is useful when verifying that newly blessed tests don't change between test runs (such as due to being dependent on the current time or memory layout or RNG), without needing to change the test file or find the right file in `build` to remove.
2021-08-07update MiriRalf Jung-8/+8
2021-08-06Fix typo -- "The" -> "They"await Marsha-1/+1
I was reading through source code to try to learn more about the language and how to make the most of it when I ran into a small typo, so I figured I'd offer up a fix! I'm pretty new now, but hopefully I can offer up more substantial changes later. :D
2021-08-06Auto merge of #87462 - ibraheemdev:tidy-file-length-ignore-comment, ↵bors-1/+4
r=Mark-Simulacrum Ignore comments in tidy-filelength Ref https://github.com/rust-lang/rust/issues/60302#issuecomment-652402127
2021-08-04Auto merge of #87568 - petrochenkov:localevel, r=cjgillotbors-47/+47
rustc: Replace `HirId`s with `LocalDefId`s in `AccessLevels` tables and passes using those tables - primarily privacy checking, stability checking and dead code checking. All these passes work with definitions rather than with arbitrary HIR nodes. r? `@cjgillot` cc `@lambinoo` (#87487)
2021-08-03Add x.py option to --force-rerun compiletest testsSmitty-7/+15
2021-08-03Update cargoEric Huss-0/+0
2021-08-03Rollup merge of #87693 - badboy:enable-ios-sim-target-manifest, ↵Yuki Okushi-0/+1
r=Mark-Simulacrum Add `aarch64-apple-ios-sim` as a possible target to the manifest This should allow rustup and similar to actually make use of this new target now. r? ```@Mark-Simulacrum``` Followup to #85782
2021-08-02Auto merge of #87706 - RalfJung:miri, r=RalfJungbors-8/+8
update miri Fixes https://github.com/rust-lang/rust/issues/87703 Cc `@rust-lang/miri` r? `@ghost`
2021-08-02update miriRalf Jung-8/+8
2021-08-02Update mdbook.Eric Huss-1/+1
2021-08-02Add `aarch64-apple-ios-sim` as a possible target to the manifestJan-Erik Rediger-0/+1
This should allow rustup and similar to actually make use of this new target now.
2021-08-02Auto merge of #87535 - lf-:authors, r=Mark-Simulacrumbors-31/+0
rfc3052 followup: Remove authors field from Cargo manifests Since RFC 3052 soft deprecated the authors field, hiding it from crates.io, docs.rs, and making Cargo not add it by default, and it is not generally up to date/useful information for contributors, we may as well remove it from crates in this repo.
2021-08-02Rollup merge of #87504 - ehuss:update-mdbook, r=Mark-SimulacrumYuki Okushi-1/+1
Update mdbook. Just a few minor changes. The changelog may be found at https://github.com/rust-lang/mdBook/blob/master/CHANGELOG.md, for changes from 0.4.8 to 0.4.11.
2021-08-02Rollup merge of #87468 - calebcartwright:update-rustfmt, r=Mark-SimulacrumYuki Okushi-291/+276
Update rustfmt Believe this gets everything back in order as both push and pull are working fine again. May do another small sync in the near future for my own sanity, but going forward will try to get on the same recurring cadence that clippy follows
2021-08-01bump bootstrap compiler to 1.55Pietro Albini-2/+0
2021-07-31Fix clippyVadim Petrochenkov-47/+47
2021-07-30Auto merge of #86754 - estebank:use-multispans-more, r=varkorbors-4/+6
Use `multipart_suggestions` more Built on top of #86532
2021-07-31Rollup merge of #87385 - Aaron1011:final-enable-semi, r=petrochenkovYuki Okushi-2/+2
Make `SEMICOLON_IN_EXPRESSIONS_FROM_MACROS` warn by default This PR makes the `SEMICOLON_IN_EXPRESSIONS_FROM_MACROS` lint warn by default. To avoid showing a large number of un-actionable warnings to users, we only enable the lint for macros defined in the same crate. This ensures that users will be able to fix the warning by simply removing a semicolon. In the future, I'd like to enable this lint unconditionally, and eventually make it into a hard error in a future edition. This PR is a step towards that goal.
2021-07-30Use multispan suggestions more oftenEsteban Küber-4/+6
* Use more accurate span for `async move` suggestion * Use more accurate span for deref suggestion * Use `multipart_suggestion` more often
2021-07-29rfc3052: Remove authors field from Cargo manifestsJade-31/+0
Since RFC 3052 soft deprecated the authors field anyway, hiding it from crates.io, docs.rs, and making Cargo not add it by default, and it is not generally up to date/useful information, we should remove it from crates in this repo.
2021-07-29Remove unnecessary trailing semicolons from clippy testsAaron Hill-2/+2
2021-07-29Merge commit '0cce3f643bfcbb92d5a1bb71858c9cbaff749d6b' into clippyupflip1995-3113/+3436
2021-07-28update MiriRalf Jung-8/+8
2021-07-27Update testsJacob Pratt-32/+30
2021-07-27Auto merge of #83484 - JulianKnodt:infer, r=oli-obk,lcnrbors-9/+35
Add hir::GenericArg::Infer In order to extend inference to consts, make an Infer type on hir::GenericArg.
2021-07-27Rollup merge of #87502 - ehuss:update-cargo, r=ehussYuki Okushi-0/+0
Update cargo 8 commits in cebef2951ee69617852844894164b54ed478a7da..d21c22870e58499d6c31f1bef3bf1255eb021666 2021-07-22 13:01:52 +0000 to 2021-07-26 20:23:21 +0000 - Fix version string. (rust-lang/cargo#9727) - Allow publishing from workspace root. (rust-lang/cargo#9559) - Better msg for wrong position (rust-lang/cargo#9723) - Stabilize the rustc-link-arg option (rust-lang/cargo#9557) - Warning when using features in replace (rust-lang/cargo#9681) - Refactor if let chains to matches! macro (rust-lang/cargo#9721) - Weather is not nice today.. (rust-lang/cargo#9720) - Update should_use_metadata function (rust-lang/cargo#9653)
2021-07-26Update mdbook.Eric Huss-1/+1
2021-07-26Update cargoEric Huss-0/+0
2021-07-27Auto merge of #83491 - jyn514:remove-pretty, r=pnkfelixbors-2/+2
Remove unstable `--pretty` flag It doesn't do anything `--unpretty` doesn't, and due to a bug, also didn't show up in `--help`. I don't think there's any reason to keep it around, I haven't seen anyone using it. Closes https://github.com/rust-lang/rust/issues/36473.
2021-07-26Actually infer args in visitorskadmin-52/+6
2021-07-25Merge commit '4236289b75ee55c78538c749512cdbeea5e1c332' into update-rustfmtCaleb Cartwright-291/+276
2021-07-25Auto merge of #87390 - notriddle:notriddle/rustdoc-headers-patch, ↵bors-0/+5
r=GuillaumeGomez Rustdoc accessibility: use real headers for doc items Part of #87059 Partially reverts #84703 Preview at: https://notriddle.com/notriddle-rustdoc-test/real-headers/std/index.html