2016-08-04 17:29:58 -05:00
|
|
|
// Test that changing a tracked commandline argument invalidates
|
|
|
|
// the cache while changing an untracked one doesn't.
|
|
|
|
|
2021-04-28 16:47:26 -05:00
|
|
|
//@ revisions:rpass1 rpass2 rpass3 rpass4
|
2017-09-28 04:58:45 -05:00
|
|
|
//@ compile-flags: -Z query-dep-graph
|
2016-08-04 17:29:58 -05:00
|
|
|
|
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
|
2018-05-08 08:10:16 -05:00
|
|
|
#![rustc_partition_codegened(module="commandline_args", cfg="rpass2")]
|
2016-08-04 17:29:58 -05:00
|
|
|
#![rustc_partition_reused(module="commandline_args", cfg="rpass3")]
|
2021-04-28 16:47:26 -05:00
|
|
|
#![rustc_partition_codegened(module="commandline_args", cfg="rpass4")]
|
2016-08-04 17:29:58 -05:00
|
|
|
|
|
|
|
// Between revisions 1 and 2, we are changing the debuginfo-level, which should
|
2024-01-19 17:09:54 -06:00
|
|
|
// invalidate the cache. Between revisions 2 and 3, we are adding `--diagnostic-width`
|
2021-04-28 16:47:26 -05:00
|
|
|
// which should have no effect on the cache. Between revisions, we are adding
|
|
|
|
// `--remap-path-prefix` which should invalidate the cache:
|
2016-08-04 17:29:58 -05:00
|
|
|
//@[rpass1] compile-flags: -C debuginfo=0
|
|
|
|
//@[rpass2] compile-flags: -C debuginfo=2
|
2024-01-19 17:09:54 -06:00
|
|
|
//@[rpass3] compile-flags: -C debuginfo=2 --diagnostic-width=80
|
|
|
|
//@[rpass4] compile-flags: -C debuginfo=2 --diagnostic-width=80 --remap-path-prefix=/home/bors/r=src
|
2016-08-04 17:29:58 -05:00
|
|
|
|
|
|
|
pub fn main() {
|
2016-08-11 09:59:05 -05:00
|
|
|
// empty
|
2016-08-04 17:29:58 -05:00
|
|
|
}
|