[libcxx] [llvm] [RFC][libc++][test] Improves C++ Standard filtering. (PR #89499)

Louis Dionne via llvm-commits llvm-commits at lists.llvm.org
Tue May 7 10:57:09 PDT 2024


================
@@ -165,11 +165,28 @@ def getSuitableClangTidy(cfg):
         default=lambda cfg: next(
             s for s in reversed(_allStandards) if getStdFlag(cfg, s)
         ),
-        actions=lambda std: [
+        actions=lambda std: filter(None, [
----------------
ldionne wrote:

I think we should add Lit support for arithmetic expressions instead. @jdenny-ornl do you have thoughts on this?

https://github.com/llvm/llvm-project/pull/89499


More information about the llvm-commits mailing list