summary refs log tree commit diff
path: root/src/test/incremental/hashes/enum_defs.rs
AgeCommit message (Collapse)AuthorLines
2017-10-13fix review commentsGarrett Berg-14/+4
2017-10-12incr comp: rustc_clean/dirty auto assertGarrett Berg-78/+74
This adds auto-assertion to `rustc_clean/dirty` and also implements more comprehensive testing for - src/test/incremental/hashes/enum_constructors.rs - src/test/incremental/hashes/enum_defs.rs - src/test/incremental/hashes/extern_mods.rs - src/test/incremental/hashes/inherent_impls.rs - src/test/incremental/hashes/statics.rs - src/test/incremental/hashes/struct_constructors.rs - src/test/incremental/hashes/type_defs.rs trait_defs.rs and trait_impl.rs are blocked on a hard to triage compiler ICE (at least hard for a newbie like me) having to do with some DepNodes not getting computed for traits. A FIXME has been added in the source to reflect this continued work.
2017-09-23incr.comp.: Make #[rustc_dirty/clean] test for fingerprint equality instead ↵Michael Woerister-1/+1
of DepNode existence.
2017-04-16rustc: use monomorphic const_eval for cross-crate enum discriminants.Eduard-Mihai Burtescu-2/+6
2017-04-12ICH: Replace old, transitive metadata hashing with direct hashing approach.Michael Woerister-17/+75
Instead of collecting all potential inputs to some metadata entry and hashing those, we directly hash the values we are storing in metadata. This is more accurate and doesn't suffer from quadratic blow-up when many entries have the same dependencies.
2017-02-25rustc_typeck: hook up collect and item/body check to on-demand.Eduard-Mihai Burtescu-1/+4
2016-12-28rustc: separate bodies for static/(associated)const and embedded constants.Eduard-Mihai Burtescu-1/+5
2016-09-30Fix another comment in test/incremental/hashes/enum_defsMichael Woerister-1/+1
2016-09-30Fix comment in test/incremental/hashes/enum_defsMichael Woerister-1/+1
2016-09-30Fixes requested by @michaelwoerister.Andrea Pretto-2/+2
2016-09-29Test Case for Incr. Comp. Hash for enums #36674.Andrea Pretto-0/+715