| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -160/+0 | |
| 2022-07-19 | Mention first and last macro in backtrace | Michael Goulet | -2/+2 | |
| 2022-07-01 | Shorten def_span for more items. | Camille GILLOT | -49/+39 | |
| 2021-10-15 | Bless tests | Cameron Steffen | -11/+11 | |
| 2021-08-04 | Remove trailing whitespace from error messages | Fabian Wolff | -2/+2 | |
| 2021-05-12 | Show macro name in 'this error originates in macro' message | Aaron Hill | -3/+3 | |
| When there are multiple macros in use, it can be difficult to tell which one was responsible for producing an error. | ||||
| 2020-08-05 | Show backtrace numbers in backtrace whenever more than one is involved | Aaron Hill | -4/+4 | |
| Previously, we only displayed 'frame' numbers in a macro backtrace when more than two frames were involved. This commit should help make backtrace more readable, since these kinds of messages can quickly get confusing. | ||||
| 2020-03-10 | --bless some tests | Mazdak Farrokhzad | -50/+54 | |
| 2020-02-06 | tests: add a revision to macro_backtrace without -Zmacro-backtrace. | Eduard-Mihai Burtescu | -4/+40 | |
| 2020-02-06 | rustc: rename -Zexternal-macro-backtrace to -Zmacro-backtrace. | Eduard-Mihai Burtescu | -1/+1 | |
| 2019-11-06 | Remove "here" from "expected one of X here" | Esteban Küber | -3/+3 | |
| 2019-07-15 | pprust: Fix formatting regressions from the previous commits | Vadim Petrochenkov | -20/+20 | |
| Fix some remaining cases of bad formatting Update some failing tests | ||||
| 2019-07-15 | pprust: Use `print_mac_common` for delimited token groups | Vadim Petrochenkov | -20/+20 | |
| 2019-04-22 | Remove double trailing newlines | varkor | -1/+0 | |
| 2018-12-27 | Fix rebase and more CI failures | Vadim Petrochenkov | -0/+1 | |
| 2018-12-27 | Do not abort compilation if expansion produces errors | Vadim Petrochenkov | -0/+2 | |
| Fix a number of uncovered deficiencies in diagnostics | ||||
| 2018-12-25 | Remove licenses | Mark Rousskov | -23/+3 | |
| 2018-09-19 | Use full name to identify a macro in a `FileName`. | Diogo Sousa | -5/+5 | |
| Before this two macros with same name would be indistinguishable inside a `FileName`. This caused a bug in incremental compilation (see #53097) since two different macros would map out to the same `StableFilemapId`. Fixes #53097. | ||||
| 2018-02-26 | Update UI tests | Vadim Petrochenkov | -17/+17 | |
| 2018-01-26 | Fix test in macro_backtrace | varkor | -5/+5 | |
| 2017-12-13 | Move error checks out of span for easier to follow `.stderr` | Esteban Küber | -15/+6 | |
| 2017-12-09 | Use spans for -Z external-macro-backtrace | Esteban Küber | -9/+103 | |
| ``` % rustc ui/type-check/cannot_infer_local_or_vec.rs -Z external-macro-backtrace error[E0282]: type annotations needed --> <vec macros>:3:1 | 1 | / ( $ elem : expr ; $ n : expr ) => ( 2 | | $ crate :: vec :: from_elem ( $ elem , $ n ) ) ; ( $ ( $ x : expr ) , * ) => ( 3 | | < [ _ ] > :: into_vec ( box [ $ ( $ x ) , * ] ) ) ; ( $ ( $ x : expr , ) * ) | | ^^^^^^^^^^^^^^^^^^^^^ | | | | | cannot infer type for `T` 4 | | => ( vec ! [ $ ( $ x ) , * ] ) | |______________________________- in this expansion of `vec!` | ::: ui/type-check/cannot_infer_local_or_vec.rs | 12 | let x = vec![]; | - ------ in this macro invocation | | | consider giving `x` a type error: aborting due to previous error ``` | ||||
| 2017-11-29 | Point to next token when it is in the expected line | Esteban Küber | -6/+2 | |
| 2017-11-24 | Merge cfail and ui tests into ui tests | Oliver Schneider | -5/+6 | |
| 2017-11-20 | address review comments | Alex Burka | -1/+1 | |
| 2017-11-19 | use -Z flag instead of env var | Alex Burka | -1/+1 | |
| 2017-11-19 | add UI test | Alex Burka | -0/+66 | |
