Skip to content

Commit

Permalink
test: disable macos_shared_libraries test (#18342)
Browse files Browse the repository at this point in the history
This test is flaky: #18341
  • Loading branch information
bartlomieju authored Mar 22, 2023
1 parent 619806d commit 8bcffff
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cli/tests/integration/macos_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 14,13 @@ fn macos_shared_libraries() {
// /System/Library/Frameworks/Security.framework/Versions/A/Security (compatibility version 1.0.0, current version 60420.60.24)
// /usr/lib/libiconv.2.dylib (compatibility version 7.0.0, current version 7.0.0)
// /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1319.0.0)
const EXPECTED: [&str; 5] =
const EXPECTED: [&str; 6] =
["/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation",
"/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices",
"/System/Library/Frameworks/Security.framework/Versions/A/Security",
"/usr/lib/libiconv.2.dylib",
"/usr/lib/libSystem.B.dylib"];
"/usr/lib/libSystem.B.dylib",
"/usr/lib/libobjc.A.dylib"];

let otool = std::process::Command::new("otool")
.arg("-L")
Expand Down

1 comment on commit 8bcffff

@bartlomieju
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was mistakenly tagged as "test: disable macos_shared_libraries test"; in fact it actually changed the test to include "/usr/lib/libobjc.A.dylib" file

Please sign in to comment.