Skip to content

Commit c20d7ee

Browse files
committedMar 11, 2020
Auto merge of #69919 - Centril:rollup-fxo33zs, r=Centril
Rollup of 8 pull requests Successful merges: - #66472 (--show-coverage json) - #69603 (tidy: replace `make check` with `./x.py test` in documentation) - #69760 (Improve expression & attribute parsing) - #69828 (fix memory leak when vec::IntoIter panics during drop) - #69850 (panic_bounds_check: use caller_location, like PanicFnLangItem) - #69876 (Add long error explanation for E0739) - #69888 ([Miri] Use a session variable instead of checking for an env var always) - #69893 (librustc_codegen_llvm: Use slices instead of 0-terminated strings) Failed merges: r? @ghost
·
1.88.01.44.0
2 parents 303d8af + a77206f commit c20d7ee

File tree

92 files changed

+1262
-511
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+1262
-511
lines changed
 

‎CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ the issue in question.
142142
Please make sure your pull request is in compliance with Rust's style
143143
guidelines by running
144144

145-
$ python x.py test src/tools/tidy
145+
$ python x.py test tidy
146146

147147
Make this check before every pull request (and every new commit in a pull
148148
request); you can add [git hooks](https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks)

‎src/bootstrap/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ The script accepts commands, flags, and arguments to determine what to do:
5555
# run all unit tests
5656
./x.py test
5757
58+
# execute tool tests
59+
./x.py test tidy
60+
5861
# execute the UI test suite
5962
./x.py test src/test/ui
6063

0 commit comments

Comments
 (0)
Please sign in to comment.