2020-08-19 08:27:54 -07:00
|
|
|
import os
|
|
|
|
import platform
|
|
|
|
import subprocess
|
|
|
|
import sys
|
2021-10-18 15:14:43 +02:00
|
|
|
import itertools
|
2020-08-19 08:27:54 -07:00
|
|
|
|
|
|
|
import lldbsuite.test.lldbtest as lldbtest
|
|
|
|
import lldbsuite.test.lldbutil as lldbutil
|
|
|
|
from lldbsuite.test import configuration
|
|
|
|
from lldbsuite.test_event import build_exception
|
|
|
|
|
|
|
|
|
|
|
|
class Builder:
|
|
|
|
def getArchitecture(self):
|
|
|
|
"""Returns the architecture in effect the test suite is running with."""
|
|
|
|
return configuration.arch if configuration.arch else ""
|
|
|
|
|
|
|
|
def getCompiler(self):
|
|
|
|
"""Returns the compiler in effect the test suite is running with."""
|
|
|
|
compiler = configuration.compiler if configuration.compiler else "clang"
|
|
|
|
compiler = lldbutil.which(compiler)
|
|
|
|
return os.path.abspath(compiler)
|
|
|
|
|
2021-10-22 10:09:17 -07:00
|
|
|
def getTriple(self, arch):
|
|
|
|
"""Returns the triple for the given architecture or None."""
|
|
|
|
return None
|
|
|
|
|
2020-08-19 09:25:41 -07:00
|
|
|
def getExtraMakeArgs(self):
|
|
|
|
"""
|
|
|
|
Helper function to return extra argumentsfor the make system. This
|
|
|
|
method is meant to be overridden by platform specific builders.
|
|
|
|
"""
|
2021-10-18 15:14:43 +02:00
|
|
|
return []
|
2020-08-18 18:48:18 -07:00
|
|
|
|
|
|
|
def getArchCFlags(self, architecture):
|
|
|
|
"""Returns the ARCH_CFLAGS for the make system."""
|
2021-10-18 15:14:43 +02:00
|
|
|
return []
|
2020-08-19 09:25:41 -07:00
|
|
|
|
2020-08-19 08:27:54 -07:00
|
|
|
def getMake(self, test_subdir, test_name):
|
|
|
|
"""Returns the invocation for GNU make.
|
|
|
|
The first argument is a tuple of the relative path to the testcase
|
|
|
|
and its filename stem."""
|
|
|
|
if platform.system() == "FreeBSD" or platform.system() == "NetBSD":
|
|
|
|
make = "gmake"
|
|
|
|
else:
|
|
|
|
make = "make"
|
|
|
|
|
|
|
|
# Construct the base make invocation.
|
|
|
|
lldb_test = os.environ["LLDB_TEST"]
|
|
|
|
if not (lldb_test and configuration.test_build_dir and test_subdir
|
|
|
|
and test_name and (not os.path.isabs(test_subdir))):
|
|
|
|
raise Exception("Could not derive test directories")
|
|
|
|
build_dir = os.path.join(configuration.test_build_dir, test_subdir,
|
|
|
|
test_name)
|
|
|
|
src_dir = os.path.join(configuration.test_src_root, test_subdir)
|
|
|
|
# This is a bit of a hack to make inline testcases work.
|
|
|
|
makefile = os.path.join(src_dir, "Makefile")
|
|
|
|
if not os.path.isfile(makefile):
|
|
|
|
makefile = os.path.join(build_dir, "Makefile")
|
|
|
|
return [
|
|
|
|
make, "VPATH=" + src_dir, "-C", build_dir, "-I", src_dir, "-I",
|
|
|
|
os.path.join(lldb_test, "make"), "-f", makefile
|
|
|
|
]
|
|
|
|
|
|
|
|
def getCmdLine(self, d):
|
|
|
|
"""
|
2021-10-18 15:14:43 +02:00
|
|
|
Helper function to return a command line argument string used for the
|
|
|
|
make system.
|
2020-08-19 08:27:54 -07:00
|
|
|
"""
|
|
|
|
|
2021-10-18 15:14:43 +02:00
|
|
|
# If d is None or an empty mapping, just return an empty list.
|
2020-08-19 08:27:54 -07:00
|
|
|
if not d:
|
2021-10-18 15:14:43 +02:00
|
|
|
return []
|
2020-08-19 08:27:54 -07:00
|
|
|
|
|
|
|
def setOrAppendVariable(k, v):
|
|
|
|
append_vars = ["CFLAGS", "CFLAGS_EXTRAS", "LD_EXTRAS"]
|
|
|
|
if k in append_vars and k in os.environ:
|
|
|
|
v = os.environ[k] + " " + v
|
2021-10-18 15:14:43 +02:00
|
|
|
return '%s=%s' % (k, v)
|
2020-08-19 08:27:54 -07:00
|
|
|
|
2021-10-18 15:14:43 +02:00
|
|
|
cmdline = [setOrAppendVariable(k, v) for k, v in list(d.items())]
|
2020-08-19 08:27:54 -07:00
|
|
|
|
|
|
|
return cmdline
|
|
|
|
|
|
|
|
def getArchSpec(self, architecture):
|
|
|
|
"""
|
|
|
|
Helper function to return the key-value string to specify the architecture
|
|
|
|
used for the make system.
|
|
|
|
"""
|
2021-10-18 15:14:43 +02:00
|
|
|
return ["ARCH=" + architecture] if architecture else []
|
2020-08-19 08:27:54 -07:00
|
|
|
|
|
|
|
def getCCSpec(self, compiler):
|
|
|
|
"""
|
|
|
|
Helper function to return the key-value string to specify the compiler
|
|
|
|
used for the make system.
|
|
|
|
"""
|
|
|
|
cc = compiler if compiler else None
|
|
|
|
if not cc and configuration.compiler:
|
|
|
|
cc = configuration.compiler
|
|
|
|
if cc:
|
2021-10-18 15:14:43 +02:00
|
|
|
return ["CC=\"%s\"" % cc]
|
|
|
|
return []
|
2020-08-19 08:27:54 -07:00
|
|
|
|
|
|
|
def getSDKRootSpec(self):
|
|
|
|
"""
|
|
|
|
Helper function to return the key-value string to specify the SDK root
|
|
|
|
used for the make system.
|
|
|
|
"""
|
|
|
|
if configuration.sdkroot:
|
2021-10-18 15:14:43 +02:00
|
|
|
return ["SDKROOT={}".format(configuration.sdkroot)]
|
|
|
|
return []
|
2020-08-19 08:27:54 -07:00
|
|
|
|
|
|
|
def getModuleCacheSpec(self):
|
|
|
|
"""
|
|
|
|
Helper function to return the key-value string to specify the clang
|
|
|
|
module cache used for the make system.
|
|
|
|
"""
|
|
|
|
if configuration.clang_module_cache_dir:
|
2021-10-18 15:14:43 +02:00
|
|
|
return ["CLANG_MODULE_CACHE_DIR={}".format(
|
|
|
|
configuration.clang_module_cache_dir)]
|
|
|
|
return []
|
2020-08-19 08:27:54 -07:00
|
|
|
|
2022-07-11 14:03:53 -07:00
|
|
|
def getLibCxxArgs(self):
|
2022-08-19 15:14:15 -07:00
|
|
|
if configuration.libcxx_include_dir and configuration.libcxx_library_dir:
|
|
|
|
return ["LIBCPP_INCLUDE_DIR={}".format(configuration.libcxx_include_dir),
|
|
|
|
"LIBCPP_LIBRARY_DIR={}".format(configuration.libcxx_library_dir)]
|
2022-07-11 14:03:53 -07:00
|
|
|
return []
|
|
|
|
|
2021-10-18 14:45:57 +02:00
|
|
|
def _getDebugInfoArgs(self, debug_info):
|
|
|
|
if debug_info is None:
|
|
|
|
return []
|
|
|
|
if debug_info == "dwarf":
|
|
|
|
return ["MAKE_DSYM=NO"]
|
|
|
|
if debug_info == "dwo":
|
|
|
|
return ["MAKE_DSYM=NO", "MAKE_DWO=YES"]
|
|
|
|
if debug_info == "gmodules":
|
|
|
|
return ["MAKE_DSYM=NO", "MAKE_GMODULES=YES"]
|
|
|
|
return None
|
|
|
|
|
2021-10-19 13:49:31 +02:00
|
|
|
def getBuildCommand(self, debug_info, architecture=None, compiler=None,
|
2021-10-18 14:45:57 +02:00
|
|
|
dictionary=None, testdir=None, testname=None):
|
|
|
|
debug_info_args = self._getDebugInfoArgs(debug_info)
|
|
|
|
if debug_info_args is None:
|
2021-10-19 13:49:31 +02:00
|
|
|
return None
|
2020-08-19 08:27:54 -07:00
|
|
|
|
2021-10-18 15:14:43 +02:00
|
|
|
command_parts = [
|
|
|
|
self.getMake(testdir, testname), debug_info_args, ["all"],
|
|
|
|
self.getArchCFlags(architecture), self.getArchSpec(architecture),
|
|
|
|
self.getCCSpec(compiler), self.getExtraMakeArgs(),
|
|
|
|
self.getSDKRootSpec(), self.getModuleCacheSpec(),
|
2022-07-11 14:03:53 -07:00
|
|
|
self.getLibCxxArgs(), self.getCmdLine(dictionary)]
|
2021-10-18 15:14:43 +02:00
|
|
|
command = list(itertools.chain(*command_parts))
|
|
|
|
|
2021-10-19 13:49:31 +02:00
|
|
|
return command
|
2020-08-19 08:27:54 -07:00
|
|
|
|
2021-10-18 15:14:43 +02:00
|
|
|
def cleanup(self, dictionary=None):
|
2020-08-19 08:27:54 -07:00
|
|
|
"""Perform a platform-specific cleanup after the test."""
|
|
|
|
return True
|