def configure_sanitizer(self):
san = self.get_lit_conf('use_sanitizer', '').strip()
if san:
- self.target_info.add_sanitizer_features(san, self.config.available_features)
# Search for llvm-symbolizer along the compiler path first
# and then along the PATH env variable.
symbolizer_search_paths = os.environ.get('PATH', '')
def add_cxx_link_flags(self, flags): pass
def configure_env(self, env): pass
def allow_cxxabi_link(self): return True
- def add_sanitizer_features(self, sanitizer_type, features): pass
def use_lit_shell_default(self): return False
def add_path(self, dest_env, new_path):
def __init__(self, full_config):
super(LinuxRemoteTI, self).__init__(full_config)
self.__cached_locales = None
-
+
def _test_locale(self, loc):
if self.__cached_locales is None:
self.full_config.lit_config.note('asking the remote host for supported locales...')