diff options
| author | Michael Woerister <michaelwoerister@posteo> | 2017-11-08 11:30:14 +0100 |
|---|---|---|
| committer | Michael Woerister <michaelwoerister@posteo> | 2017-11-08 11:30:14 +0100 |
| commit | 616b45542bc42cf7a3f3639a4832d84babd6a505 (patch) | |
| tree | dffbb67d995c19a91c6a6b309de84a51bf59e6a8 /src/test/incremental/remove_source_file | |
| parent | a1364cd0db6a533dfe9c693827ef20fe6118af11 (diff) | |
| download | rust-616b45542bc42cf7a3f3639a4832d84babd6a505.tar.gz rust-616b45542bc42cf7a3f3639a4832d84babd6a505.zip | |
incr.comp.: Make DefSpan an input dep-node so it is not affected by the existing Span/HIR hashing hack.
Diffstat (limited to 'src/test/incremental/remove_source_file')
| -rw-r--r-- | src/test/incremental/remove_source_file/main.rs | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/test/incremental/remove_source_file/main.rs b/src/test/incremental/remove_source_file/main.rs index 4ba33f3bb3d..3ae26c6aa45 100644 --- a/src/test/incremental/remove_source_file/main.rs +++ b/src/test/incremental/remove_source_file/main.rs @@ -11,21 +11,24 @@ // This test case makes sure that the compiler doesn't crash due to a failing // table lookup when a source file is removed. -// revisions:rpass1 rpass2 +// revisions:cfail1 cfail2 // Note that we specify -g so that the FileMaps actually get referenced by the // incr. comp. cache: // compile-flags: -Z query-dep-graph -g +// must-compile-successfully -#[cfg(rpass1)] +#![crate_type= "rlib"] + +#[cfg(cfail1)] mod auxiliary; -#[cfg(rpass1)] -fn main() { +#[cfg(cfail1)] +pub fn foo() { auxiliary::print_hello(); } -#[cfg(rpass2)] -fn main() { +#[cfg(cfail2)] +pub fn foo() { println!("hello"); } |
