We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
minicore.rs
1 parent 636d723 commit 98e68f4Copy full SHA for 98e68f4
src/tools/compiletest/src/lib.rs
@@ -890,6 +890,12 @@ fn files_related_to_test(
890
related.push(path);
891
}
892
893
+ // `minicore.rs` test auxiliary: we need to make sure tests get rerun if this changes.
894
+ //
895
+ // FIXME(jieyouxu): untangle these paths, we should provide both a path to root `tests/` or
896
+ // `tests/auxiliary/` and the test suite in question. `src_base` is also a terrible name.
897
+ related.push(config.src_base.parent().unwrap().join("auxiliary").join("minicore.rs"));
898
+
899
related
900
901
0 commit comments