We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19becd4 commit 4b8f12bCopy full SHA for 4b8f12b
tests/run-make/link-framework/rmake.rs
@@ -2,13 +2,14 @@
2
3
//@ only-apple
4
5
-use run_make_support::{cmd, rustc};
+use run_make_support::{cmd, cwd, rustc, shallow_find_files};
6
7
fn main() {
8
rustc().input("dep-link-framework.rs").run();
9
rustc().input("dep-link-weak-framework.rs").run();
10
11
rustc().input("empty.rs").run();
12
+ eprintln!("---> {:?}", shallow_find_files(cwd(), |_| true));
13
cmd("otool").arg("-L").arg("no-link").run().assert_stdout_not_contains("CoreFoundation");
14
15
rustc().input("link-framework.rs").run();
0 commit comments