[libcxx-commits] [PATCH] D77338: [libc++] Add an alternative Lit test format

Sergej Jaskiewicz via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Thu Apr 2 16:50:21 PDT 2020


broadwaylamb added a comment.

This is awesome, thanks for your work!



================
Comment at: libcxx/utils/libcxx/test/newformat.py:116
+                                              preamble_commands=[command])
+        compilerSupportsVerify = False if result.code == lit.Test.FAIL else True
+        return compilerSupportsVerify and testContainsTags
----------------
Can this be simplified?
```
compilerSupportsVerify = result.code != lit.Test.FAIL
```


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D77338





More information about the libcxx-commits mailing list