Rollup merge of #132700 - matthiaskrgr:plzno, r=fmease

add note not to re-report crashes from `crashes` tests

for reasons... 😅
r? `@fmease`
This commit is contained in:
Guillaume Gomez 2024-11-07 02:09:53 +08:00 committed by GitHub
commit 4c7e92f76b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,7 +8,7 @@ A test will "pass" if rustc exits with something other than 1 or 0.
When adding crashes from https://github.com/rust-lang/rust/issues, the When adding crashes from https://github.com/rust-lang/rust/issues, the
issue number should be noted in the file name (12345.rs should suffice) issue number should be noted in the file name (12345.rs should suffice)
and perhaps also inside the file via `//@ known-bug #4321` and also inside the file via `//@ known-bug #4321` if possible.
If you happen to fix one of the crashes, please move it to a fitting If you happen to fix one of the crashes, please move it to a fitting
subdirectory in `tests/ui` and give it a meaningful name. subdirectory in `tests/ui` and give it a meaningful name.
@ -21,3 +21,5 @@ to the description of your pull request will ensure the
corresponding tickets will be closed automatically upon merge. corresponding tickets will be closed automatically upon merge.
The ticket ids can be found in the file name or the `known-bug` annotation The ticket ids can be found in the file name or the `known-bug` annotation
inside the testfile. inside the testfile.
Please do not re-report any crashes that you find here!