mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-21 04:25:45 -04:00

Summary: A lot of tests do this trick but the vast majority of them don't even call `print()`. Most of this patch was generated by a script that just looks at all the files and deletes the line if there is no `print (` or `print(` anywhere else in the file. I checked the remaining tests manually and deleted the import if we never call print (but instead do stuff like `expr print(...)` and similar false-positives). I also corrected the additional empty lines after the import in the files that I manually edited. Reviewers: JDevlieghere, labath, jfb Reviewed By: labath Subscribers: dexonsmith, wuzish, nemanjai, kbarton, christof, arphaman, abidh, lldb-commits Tags: #lldb Differential Revision: https://reviews.llvm.org/D71452
114 lines
4.3 KiB
Python
114 lines
4.3 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):
|
|
|
|
mydir = TestBase.compute_mydir(__file__)
|
|
|
|
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=["linux"],
|
|
triple=no_match(".*-android"))
|
|
#linux does not support loading dependent files, but android does
|
|
@expectedFailureNetBSD
|
|
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=["linux"],
|
|
triple=no_match(".*-android"))
|
|
#linux does not support loading dependent files, but android does
|
|
@expectedFailureNetBSD
|
|
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=["linux"],
|
|
triple=no_match(".*-android"))
|
|
#linux does not support loading dependent files, but android does
|
|
@expectedFailureNetBSD
|
|
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=["linux"],
|
|
triple=no_match(".*-android"))
|
|
#linux does not support loading dependent files, but android does
|
|
@expectedFailureNetBSD
|
|
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)
|