about summary refs log tree commit diff
path: root/src/test/incremental/hello_world.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-37/+0
2021-05-15Remove `label` in dirty/clean annotations.Camille GILLOT-2/+2
2020-07-17Rename TypeckTables to TypeckResults.Valentin Lazureanu-2/+2
2019-03-30Update testsJohn Kåre Alsaker-2/+2
2018-12-25Remove licensesMark Rousskov-10/+0
2017-01-25rename `Tables` to `TypeckTables`Niko Matsakis-2/+2
2017-01-25merge TypeckItemBody and Tables depnodesNiko Matsakis-2/+2
2016-11-29restructure `CollectItem` dep-node to separate fn sigs from bodiesNiko Matsakis-2/+1
Setup two tasks, one of which only processes the signatures, in order to isolate the typeck entries for signatures from those for bodies. Fixes #36078 Fixes #37720
2016-11-29Make hello_world test work againFlorian Diebold-6/+7
This used to work with the rustc_clean attribute, but doesn't anymore since my rebase; but I don't know enough about the type checking to find out what's wrong. The dep graph looks like this: ItemSignature(xxxx) -> CollectItem(xxxx) CollectItem(xxxx) -> ItemSignature(xxxx) ItemSignature(xxxx) -> TypeckItemBody(yyyy) HirBody(xxxx) -> CollectItem(xxxx) The cycle between CollectItem and ItemSignature looks wrong, and my guess is the CollectItem -> ItemSignature edge shouldn't be there, but I'm not sure how to prevent it.
2016-11-29Give function bodies their own dep graph nodeFlorian Diebold-1/+1
2016-08-09use preds to serialize just what we needNiko Matsakis-0/+1
This massively speeds up serialization. It also seems to produce deterministic metadata hashes (before I was seeing inconsistent results). Fixes #35232.
2016-04-06add incremental test runner and some testsNiko Matsakis-0/+46