about summary refs log tree commit diff
path: root/src/test/ui/lint/command-line-lint-group-warn.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-7/+0
2019-11-10Make error and warning annotations mandatory in UI testsTomasz Miąsko-1/+2
This change makes error and warning annotations mandatory in UI tests. The only exception are tests that use error patterns to match compiler output and don't have any annotations.
2019-07-03Migrate compile-pass annotations to build-passYuki Okushi-1/+1
2018-12-25Remove licensesMark Rousskov-10/+0
2018-04-13Rename must-compile-successfully into compile-passGuillaume Gomez-1/+1
2017-12-10Add must-compile-successfully comment to appropriate ui tests.Tommy Ip-0/+1
2017-02-04note lint group set on command line triggering individual lintZack M. Davis-0/+15
Previously, the note/message for the source of a lint being the command line unconditionally named the individual lint, even if the actual command specified a lint group (e.g., `-D warnings`); here, we take note of the actual command options so we can be more specific. This remains in the matter of #36846.