[libcxx-commits] [PATCH] D77733: [libunwind] Enable the new libc++ testing format by default

Louis Dionne via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Mon Apr 13 15:20:58 PDT 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rG5f7a03016286: [libunwind] Enable the new libc++ testing format by default (authored by ldionne).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D77733/new/

https://reviews.llvm.org/D77733

Files:
  libunwind/test/lit.cfg


Index: libunwind/test/lit.cfg
===================================================================
--- libunwind/test/lit.cfg
+++ libunwind/test/lit.cfg
@@ -67,9 +67,10 @@
 configuration = config_module.Configuration(lit_config, config)
 configuration.configure()
 configuration.print_config_info()
-if lit_config.params.get('use_new_format', False):
-    lit_config.note("Using the experimental libc++ testing format")
+if lit_config.params.get('use_old_format', False):
+    lit_config.note("Using the old libc++ testing format")
+    config.test_format = configuration.get_test_format()
+else:
+    lit_config.note("Using the new 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: D77733.257127.patch
Type: text/x-patch
Size: 828 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20200413/30a1a2d4/attachment-0001.bin>


More information about the libcxx-commits mailing list