about summary refs log tree commit diff
path: root/src/test/incremental/change_private_fn
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-104/+0
2021-12-21Add `#[rustc_clean(loaded_from_disk)]` to assert loading of query resultAaron Hill-1/+5
Currently, you can use `#[rustc_clean]` to assert to that a particular query (technically, a `DepNode`) is green or red. However, a green `DepNode` does not mean that the query result was actually deserialized from disk - we might have never re-run a query that needed the result. Some incremental tests are written as regression tests for ICEs that occured during query result decoding. Using `#[rustc_clean(loaded_from_disk="typeck")]`, you can now assert that the result of a particular query (e.g. `typeck`) was actually loaded from disk, in addition to being green.
2021-05-15Remove `label` in dirty/clean annotations.Camille GILLOT-5/+5
2020-07-17Rename TypeckTables to TypeckResults.Valentin Lazureanu-5/+5
2019-07-03Migrate compile-pass annotations to build-passYuki Okushi-1/+1
2019-03-30Update testsJohn Kåre Alsaker-5/+5
2018-12-25Remove licensesMark Rousskov-10/+0
2018-05-17Rename trans to codegen everywhere.Irina Popa-1/+1
2018-04-13Rename must-compile-successfully into compile-passGuillaume Gomez-1/+1
2017-11-07Fix incremental tests after change to instantiation strategy.Michael Woerister-23/+22
2017-01-25rename `Tables` to `TypeckTables`Niko Matsakis-5/+5
2017-01-25merge TypeckItemBody and Tables depnodesNiko Matsakis-5/+5
2016-10-21add test case for changes to a private fnNiko Matsakis-0/+111