Skip to content

Commit

Permalink
Add debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Jul 22, 2024
1 parent 19becd4 commit 4b8f12b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/run-make/link-framework/rmake.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@

//@ only-apple

use run_make_support::{cmd, rustc};
use run_make_support::{cmd, cwd, rustc, shallow_find_files};

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

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

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

0 comments on commit 4b8f12b

Please sign in to comment.