From 4cfa4b0c60cbce5b3ac1a3c464580c94409280a3 Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Fri, 20 Jun 2025 01:43:22 -0700 Subject: [PATCH 1/2] Disable lldb test, which seems to be broken due to issues with lldb --- tests/testsuite/profile_trim_paths.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/testsuite/profile_trim_paths.rs b/tests/testsuite/profile_trim_paths.rs index c3a2fcb690a..a2333541b15 100644 --- a/tests/testsuite/profile_trim_paths.rs +++ b/tests/testsuite/profile_trim_paths.rs @@ -769,6 +769,8 @@ fn custom_build_env_var_trim_paths() { } } +// This test is disabled, as it currently doesn't work due to issues with lldb. +#[cfg(any())] #[cfg(unix)] #[cargo_test(requires = "lldb", nightly, reason = "-Zremap-path-scope is unstable")] fn lldb_works_after_trimmed() { From 0419be8eae277cdef7b3fab0953bcc88542e5633 Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Fri, 20 Jun 2025 02:20:39 -0700 Subject: [PATCH 2/2] Disable cdb test, which seems to be broken --- tests/testsuite/profile_trim_paths.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/testsuite/profile_trim_paths.rs b/tests/testsuite/profile_trim_paths.rs index a2333541b15..978896669ff 100644 --- a/tests/testsuite/profile_trim_paths.rs +++ b/tests/testsuite/profile_trim_paths.rs @@ -847,6 +847,8 @@ Hello, Ferris! ); } +// This test is disabled, as it currently doesn't work. +#[cfg(any())] #[cfg(target_env = "msvc")] #[cargo_test(requires = "cdb", nightly, reason = "-Zremap-path-scope is unstable")] fn cdb_works_after_trimmed() {