We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
coverage-dump
1 parent 3afb2bb commit ed9b2baCopy full SHA for ed9b2ba
src/tools/compiletest/src/lib.rs
@@ -647,6 +647,12 @@ fn common_inputs_stamp(config: &Config) -> Stamp {
647
stamp.add_path(&rust_src_dir.join("src/etc/htmldocck.py"));
648
}
649
650
+ // Re-run coverage tests if the `coverage-dump` tool was modified,
651
+ // because its output format might have changed.
652
+ if let Some(coverage_dump_path) = &config.coverage_dump_path {
653
+ stamp.add_path(coverage_dump_path)
654
+ }
655
+
656
stamp.add_dir(&rust_src_dir.join("src/tools/run-make-support"));
657
658
// Compiletest itself.
0 commit comments