about summary refs log tree commit diff
path: root/src/test/run-pass/rustc-rust-log.rs
AgeCommit message (Collapse)AuthorLines
2019-07-27tests: Move run-pass tests without naming conflicts to uiVadim Petrochenkov-14/+0
2019-07-27tests: Add missing run-pass annotationsVadim Petrochenkov-0/+1
2019-04-30Rename to RUSTC_LOGYuki OKUSHI-1/+1
2018-12-25Remove licensesMark Rousskov-10/+0
2018-11-24Try to work around #53332 in `src/test/run-pass/rustc-rust-log.rs`scalexm-0/+1
2018-09-21Ignore the output itself on `rustc-rust-log.rs` (added in rust-lang/rust#42737).Felix S. Klock II-0/+9
2017-06-18rustc: Check if def_path_hash_to_def_id is populated before accessing it.Florian Hahn-0/+13
Without this patch, there is an ICE when running rustc with RUST_LOG=debug. This patch updates extract_def_id to check if the map has been populated before accessing it. This fixes the problem, but maybe we do not need to compute the incremental hashes maps in the first place when we are not in incremental mode?