Author: Med Ismail Bennani Date: 2026-02-28T06:53:36Z New Revision: 702e4ec5f705ccf72ecbf31301a364e8b2664843
URL: https://github.com/llvm/llvm-project/commit/702e4ec5f705ccf72ecbf31301a364e8b2664843 DIFF: https://github.com/llvm/llvm-project/commit/702e4ec5f705ccf72ecbf31301a364e8b2664843.diff LOG: [lldb/test] Skip TestDelayInitDependency on remote platforms (#183885) This test exercises macOS-specific linker functionality (-delay_library) and uses a hardcoded local working directory for the launch info. It should not run against a remote platform where neither condition holds. Signed-off-by: Med Ismail Bennani <[email protected]> Added: Modified: lldb/test/API/macosx/delay-init-dependency/TestDelayInitDependency.py Removed: ################################################################################ diff --git a/lldb/test/API/macosx/delay-init-dependency/TestDelayInitDependency.py b/lldb/test/API/macosx/delay-init-dependency/TestDelayInitDependency.py index 090a3554a9207..74459999187f7 100644 --- a/lldb/test/API/macosx/delay-init-dependency/TestDelayInitDependency.py +++ b/lldb/test/API/macosx/delay-init-dependency/TestDelayInitDependency.py @@ -12,6 +12,7 @@ class TestDelayInitDependencies(TestBase): @skipUnlessDarwin @skipIf(macos_version=["<", "15.0"]) + @skipIfRemote def test_delay_init_dependency(self): TestBase.setUp(self) out = subprocess.run( _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
