[libcxx-commits] [libcxx] fd64544 - [libcxx] [test] Remove a leftover unused function in config.py. NFC.
Martin Storsjö via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Dec 22 05:17:44 PST 2021
Author: Martin Storsjö
Date: 2021-12-22T15:16:14+02:00
New Revision: fd64544fbe0a4c0ed5d6d0cdda3945aacf7e9593
URL: https://github.com/llvm/llvm-project/commit/fd64544fbe0a4c0ed5d6d0cdda3945aacf7e9593
DIFF: https://github.com/llvm/llvm-project/commit/fd64544fbe0a4c0ed5d6d0cdda3945aacf7e9593.diff
LOG: [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
Added:
Modified:
libcxx/utils/libcxx/test/config.py
Removed:
################################################################################
diff --git a/libcxx/utils/libcxx/test/config.py b/libcxx/utils/libcxx/test/config.py
index a28590ef0bc14..d61743e49bff2 100644
--- a/libcxx/utils/libcxx/test/config.py
+++ b/libcxx/utils/libcxx/test/config.py
@@ -160,14 +160,6 @@ def print_config_info(self):
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')
More information about the libcxx-commits
mailing list