aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2021-12-09 00:04:35 +0200
committerMartin Storsjö <martin@martin.st>2021-12-22 15:16:14 +0200
commitfd64544fbe0a4c0ed5d6d0cdda3945aacf7e9593 (patch)
treef68774c767034854aac2c5c809abc9abe5441285
parent516882a8f23b36c925ad8be89846bfa36915ce73 (diff)
downloadllvm-fd64544fbe0a4c0ed5d6d0cdda3945aacf7e9593.zip
llvm-fd64544fbe0a4c0ed5d6d0cdda3945aacf7e9593.tar.gz
llvm-fd64544fbe0a4c0ed5d6d0cdda3945aacf7e9593.tar.bz2
[libcxx] [test] Remove a leftover unused function in config.py. NFC.
While there's little value in polishing the old config system, I ran into this function and was confused for a while, while grepping around and trying to wrap my head around things. Differential Revision: https://reviews.llvm.org/D116131
-rw-r--r--libcxx/utils/libcxx/test/config.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/libcxx/utils/libcxx/test/config.py b/libcxx/utils/libcxx/test/config.py
index a28590e..d61743e4 100644
--- a/libcxx/utils/libcxx/test/config.py
+++ b/libcxx/utils/libcxx/test/config.py
@@ -160,14 +160,6 @@ class Configuration(object):
self.lit_config.note("Linking against the ABI Library at {}".format(self.abi_library_root))
self.lit_config.note("Running against the ABI Library at {}".format(self.abi_runtime_root))
- def get_test_format(self):
- from libcxx.test.format import LibcxxTestFormat
- return LibcxxTestFormat(
- self.cxx,
- self.use_clang_verify,
- self.executor,
- exec_env=self.exec_env)
-
def configure_cxx(self):
# Gather various compiler parameters.
cxx = self.get_lit_conf('cxx_under_test')