Files
clang-p2996/lldb/test/API/commands/target/create-deps/TestTargetCreateDeps.py
Jonas Devlieghere 2238dcc393 [NFC][Py Reformat] Reformat python files in lldb
This is an ongoing series of commits that are reformatting our Python
code. Reformatting is done with `black` (23.1.0).

If you end up having problems merging this commit because you have made
changes to a python file, the best way to handle that is to run `git
checkout --ours <yourfile>` and then reformat it with black.

RFC: https://discourse.llvm.org/t/rfc-document-and-standardize-python-code-style

Differential revision: https://reviews.llvm.org/D151460
2023-05-25 12:54:09 -07:00

115 lines
4.2 KiB
Python

"""
Test that loading of dependents works correctly for all the potential
combinations.
"""
import lldb
from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
from lldbsuite.test import lldbutil
@skipIfWindows # Windows deals differently with shared libs.
class TargetDependentsTestCase(TestBase):
NO_DEBUG_INFO_TESTCASE = True
def setUp(self):
TestBase.setUp(self)
self.build()
def has_exactly_one_image(self, matching, msg=""):
self.expect(
"image list",
"image list should contain at least one image",
substrs=["[ 0]"],
)
should_match = not matching
self.expect("image list", msg, matching=should_match, substrs=["[ 1]"])
@expectedFailureAll(
oslist=["freebsd", "linux", "netbsd"],
bugnumber="llvm.org/pr48372",
triple=no_match(".*-android"),
)
def test_dependents_implicit_default_exe(self):
"""Test default behavior"""
exe = self.getBuildArtifact("a.out")
self.runCmd("target create " + exe, CURRENT_EXECUTABLE_SET)
self.has_exactly_one_image(False)
@expectedFailureAll(
oslist=["freebsd", "linux", "netbsd"],
bugnumber="llvm.org/pr48372",
triple=no_match(".*-android"),
)
def test_dependents_explicit_default_exe(self):
"""Test default behavior"""
exe = self.getBuildArtifact("a.out")
self.runCmd("target create -ddefault " + exe, CURRENT_EXECUTABLE_SET)
self.has_exactly_one_image(False)
def test_dependents_explicit_true_exe(self):
"""Test default behavior"""
exe = self.getBuildArtifact("a.out")
self.runCmd("target create -dtrue " + exe, CURRENT_EXECUTABLE_SET)
self.has_exactly_one_image(True)
@expectedFailureAll(
oslist=["freebsd", "linux", "netbsd"],
bugnumber="llvm.org/pr48372",
triple=no_match(".*-android"),
)
def test_dependents_explicit_false_exe(self):
"""Test default behavior"""
exe = self.getBuildArtifact("a.out")
self.runCmd("target create -dfalse " + exe, CURRENT_EXECUTABLE_SET)
self.has_exactly_one_image(False)
def test_dependents_implicit_false_exe(self):
"""Test default behavior"""
exe = self.getBuildArtifact("a.out")
self.runCmd("target create -d " + exe, CURRENT_EXECUTABLE_SET)
self.has_exactly_one_image(True)
@expectedFailureAndroid # android will return mutiple images
def test_dependents_implicit_default_lib(self):
ctx = self.platformContext
dylibName = ctx.shlib_prefix + "load_a." + ctx.shlib_extension
lib = self.getBuildArtifact(dylibName)
self.runCmd("target create " + lib, CURRENT_EXECUTABLE_SET)
self.has_exactly_one_image(True)
def test_dependents_explicit_default_lib(self):
ctx = self.platformContext
dylibName = ctx.shlib_prefix + "load_a." + ctx.shlib_extension
lib = self.getBuildArtifact(dylibName)
self.runCmd("target create -ddefault " + lib, CURRENT_EXECUTABLE_SET)
self.has_exactly_one_image(True)
def test_dependents_explicit_true_lib(self):
ctx = self.platformContext
dylibName = ctx.shlib_prefix + "load_a." + ctx.shlib_extension
lib = self.getBuildArtifact(dylibName)
self.runCmd("target create -dtrue " + lib, CURRENT_EXECUTABLE_SET)
self.has_exactly_one_image(True)
@expectedFailureAll(
oslist=["freebsd", "linux", "netbsd"],
bugnumber="llvm.org/pr48372",
triple=no_match(".*-android"),
)
def test_dependents_explicit_false_lib(self):
ctx = self.platformContext
dylibName = ctx.shlib_prefix + "load_a." + ctx.shlib_extension
lib = self.getBuildArtifact(dylibName)
self.runCmd("target create -dfalse " + lib, CURRENT_EXECUTABLE_SET)
self.has_exactly_one_image(False)
def test_dependents_implicit_false_lib(self):
ctx = self.platformContext
dylibName = ctx.shlib_prefix + "load_a." + ctx.shlib_extension
lib = self.getBuildArtifact(dylibName)
self.runCmd("target create -d " + lib, CURRENT_EXECUTABLE_SET)
self.has_exactly_one_image(True)