Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4b8f12b

Browse files
committedJul 22, 2024
Add debug info
1 parent 19becd4 commit 4b8f12b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎tests/run-make/link-framework/rmake.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22

33
//@ only-apple
44

5-
use run_make_support::{cmd, rustc};
5+
use run_make_support::{cmd, cwd, rustc, shallow_find_files};
66

77
fn main() {
88
rustc().input("dep-link-framework.rs").run();
99
rustc().input("dep-link-weak-framework.rs").run();
1010

1111
rustc().input("empty.rs").run();
12+
eprintln!("---> {:?}", shallow_find_files(cwd(), |_| true));
1213
cmd("otool").arg("-L").arg("no-link").run().assert_stdout_not_contains("CoreFoundation");
1314

1415
rustc().input("link-framework.rs").run();

0 commit comments

Comments
 (0)
Failed to load comments.