aboutsummaryrefslogtreecommitdiff
path: root/lldb/packages/Python/lldbsuite/test/lldbtest.py
diff options
context:
space:
mode:
authorStella Stamenova <stilis@microsoft.com>2022-09-12 11:31:17 -0700
committerStella Stamenova <stilis@microsoft.com>2022-09-12 11:31:17 -0700
commit327146639c049f3cff13c94ec44c12aa718b9fe4 (patch)
tree20e18b221d8b29b23fe590cb9bab90a7f82f58dc /lldb/packages/Python/lldbsuite/test/lldbtest.py
parent6f5d109fca23056dd74d673d2e3439ece22c80b4 (diff)
downloadllvm-327146639c049f3cff13c94ec44c12aa718b9fe4.zip
llvm-327146639c049f3cff13c94ec44c12aa718b9fe4.tar.gz
llvm-327146639c049f3cff13c94ec44c12aa718b9fe4.tar.bz2
Revert "Add the ability to show when variables fails to be available when debug info is valid."
This reverts commit 9af089f5179d52c6561ec27532880edcfb6253af. This broke the windows lldb bot: https://lab.llvm.org/buildbot/#/builders/83/builds/23528
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lldbtest.py')
-rw-r--r--lldb/packages/Python/lldbsuite/test/lldbtest.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py
index 101921f..46eac45 100644
--- a/lldb/packages/Python/lldbsuite/test/lldbtest.py
+++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py
@@ -1411,8 +1411,7 @@ class Base(unittest2.TestCase):
debug_info=None,
architecture=None,
compiler=None,
- dictionary=None,
- make_targets=None):
+ dictionary=None):
"""Platform specific way to build binaries."""
if not architecture and configuration.arch:
architecture = configuration.arch
@@ -1427,7 +1426,7 @@ class Base(unittest2.TestCase):
module = builder_module()
command = builder_module().getBuildCommand(debug_info, architecture,
- compiler, dictionary, testdir, testname, make_targets)
+ compiler, dictionary, testdir, testname)
if command is None:
raise Exception("Don't know how to build binary")