[libc++] NFC: Remove unused method call
authorLouis Dionne <ldionne@apple.com>
Mon, 13 Apr 2020 20:50:11 +0000 (16:50 -0400)
committerLouis Dionne <ldionne@apple.com>
Mon, 13 Apr 2020 20:59:54 +0000 (16:59 -0400)
libcxx/utils/libcxx/test/config.py
libcxx/utils/libcxx/test/target_info.py

index b29910a..2f3929c 100644 (file)
@@ -919,7 +919,6 @@ class Configuration(object):
     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', '')
index 0c64b0d..00af3b8 100644 (file)
@@ -38,7 +38,6 @@ class DefaultTargetInfo(object):
     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):
@@ -281,7 +280,7 @@ class LinuxRemoteTI(LinuxLocalTI):
     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...')