about summary refs log tree commit diff
path: root/src/test/ui/parser/increment-autofix.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-31/+0
2022-03-27Fix from rebaseNoah Lev-4/+4
I changed the test functions to be `pub` rather than called from a `main` function too, for easier future modification of tests.
2022-03-23Fix rustfix panic on testNoah Lev-32/+11
`run-rustfix` applies all suggestions regardless of their Applicability. There's a flag, `rustfix-only-machine-applicable`, that does what it says, but then the produced `.fixed` file would have invalid code from the suggestions that weren't applied. So, I moved the cases of postfix increment, in which case multiple suggestions are given, to the `-notfixed` test, which does not run rustfix. I also changed the Applicability to Unspecified since MaybeIncorrect requires that the code be valid, even if it's incorrect.
2022-03-23Improve handling of `tmp` variable name conflictsNoah Lev-0/+16
2022-03-23Refactor, handle fields better, add field testsNoah Lev-0/+36