[lldb/test] Skip TestDelayInitDependency on remote platforms - #183885
Merged
Merged
Conversation
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 <ismail@bennani.ma>
Member
|
@llvm/pr-subscribers-lldb Author: Med Ismail Bennani (medismailben) ChangesThis 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. Full diff: https://github.com/llvm/llvm-project/pull/183885.diff 1 Files Affected:
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(
|
medismailben
added a commit
to medismailben/llvm-project
that referenced
this pull request
Feb 28, 2026
…3885) 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 <ismail@bennani.ma> (cherry picked from commit 702e4ec)
sahas3
pushed a commit
to sahas3/llvm-project
that referenced
this pull request
Mar 4, 2026
…3885) 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 <ismail@bennani.ma>
sujianIBM
pushed a commit
to sujianIBM/llvm-project
that referenced
this pull request
Mar 5, 2026
…3885) 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 <ismail@bennani.ma>
This was referenced Apr 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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.