We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
builder::PATH_REMAP
1 parent d413ad8 commit ea22e78Copy full SHA for ea22e78
src/bootstrap/src/core/builder/tests.rs
@@ -115,6 +115,19 @@ fn test_intersection() {
115
assert_eq!(command_paths, vec![Path::new("library/stdarch")]);
116
}
117
118
+#[test]
119
+fn validate_path_remap() {
120
+ let build = Build::new(configure("test", &["A"], &["A"]));
121
+
122
+ PATH_REMAP
123
+ .iter()
124
+ .flat_map(|(_, paths)| paths.iter())
125
+ .map(|path| build.src.join(path))
126
+ .for_each(|path| {
127
+ assert!(path.exists(), "{} should exist.", path.display());
128
+ });
129
+}
130
131
#[test]
132
fn test_exclude() {
133
let mut config = configure("test", &["A"], &["A"]);
0 commit comments