Skip to content

Commit b6e224c

Browse files
committed
[EXPERIMENTAL] plain no needs-llvm-components
1 parent ae7b1c1 commit b6e224c

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

src/tools/tidy/src/allowed_run_make_makefiles.txt

-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ run-make/pgo-gen-no-imp-symbols/Makefile
6464
run-make/pgo-indirect-call-promotion/Makefile
6565
run-make/pointer-auth-link-with-c/Makefile
6666
run-make/print-calling-conventions/Makefile
67-
run-make/print-target-list/Makefile
6867
run-make/raw-dylib-alt-calling-convention/Makefile
6968
run-make/raw-dylib-c/Makefile
7069
run-make/raw-dylib-import-name-type/Makefile

tests/run-make/print-target-list/Makefile

-8
This file was deleted.
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
//! Check that all targets returned by `--print target-list` are valid target specifications.
2+
3+
use run_make_support::bare_rustc;
4+
5+
fn main() {
6+
let targets = bare_rustc().print("target-list").run().stdout_utf8();
7+
for target in targets.lines() {
8+
bare_rustc().target(target).print("sysroot").run();
9+
}
10+
}

0 commit comments

Comments
 (0)