[libcxx-commits] [PATCH] D77501: [libunwind] Support the new libc++ test format

Sergej Jaskiewicz via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Sun Apr 5 07:59:57 PDT 2020


broadwaylamb created this revision.
broadwaylamb added a reviewer: ldionne.
Herald added subscribers: libcxx-commits, llvm-commits, dexonsmith.
Herald added projects: LLVM, libunwind.
Herald added a reviewer: libunwind.

Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D77501

Files:
  libunwind/test/lit.cfg


Index: libunwind/test/lit.cfg
===================================================================
--- libunwind/test/lit.cfg
+++ libunwind/test/lit.cfg
@@ -67,4 +67,9 @@
 configuration = config_module.Configuration(lit_config, config)
 configuration.configure()
 configuration.print_config_info()
-config.test_format = configuration.get_test_format()
+if lit_config.params.get('use_new_format', False):
+    lit_config.note("Using the experimental libc++ testing format")
+    import libcxx.test.newformat
+    config.test_format = libcxx.test.newformat.CxxStandardLibraryTest()
+else:
+    config.test_format = configuration.get_test_format()


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D77501.255165.patch
Type: text/x-patch
Size: 644 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20200405/30aca8cc/attachment.bin>


More information about the libcxx-commits mailing list