We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
is_up_to_date
1 parent b521491 commit f37601aCopy full SHA for f37601a
src/tools/compiletest/src/main.rs
@@ -624,7 +624,8 @@ fn is_up_to_date(
624
625
// Check timestamps.
626
let mut inputs = inputs.clone();
627
- inputs.add_path(&testpaths.file);
+ // Use `add_dir` to account for run-make tests, which use their individual directory
628
+ inputs.add_dir(&testpaths.file);
629
630
for aux in &props.aux {
631
let path = testpaths.file.parent().unwrap().join("auxiliary").join(aux);
0 commit comments