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
|
|
|
|
// invalidate the cache. Between revisions 2 and 3, we are adding `--verbose`
|
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
|
|
|
|
//[rpass3] compile-flags: -C debuginfo=2 --verbose
|
2021-04-28 16:47:26 -05:00
|
|
|
//[rpass4] compile-flags: -C debuginfo=2 --verbose --remap-path-prefix=/home/bors/rust=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
|
|
|
}
|