[libcxx-commits] [libcxx] 8d30e80 - Fix typo in c07903aac7b9bc60d48f0381073285d79642cc3f

Vitaly Buka via libcxx-commits libcxx-commits at lists.llvm.org
Thu Oct 26 23:45:40 PDT 2023


Author: Vitaly Buka
Date: 2023-10-26T23:44:58-07:00
New Revision: 8d30e8016695e9b9a5ae8109400a240d7db9c1be

URL: https://github.com/llvm/llvm-project/commit/8d30e8016695e9b9a5ae8109400a240d7db9c1be
DIFF: https://github.com/llvm/llvm-project/commit/8d30e8016695e9b9a5ae8109400a240d7db9c1be.diff

LOG: Fix typo in c07903aac7b9bc60d48f0381073285d79642cc3f

Added: 
    

Modified: 
    libcxx/utils/libcxx/test/params.py

Removed: 
    


################################################################################
diff  --git a/libcxx/utils/libcxx/test/params.py b/libcxx/utils/libcxx/test/params.py
index 65e8f029d71b43e..2ead641354e585d 100644
--- a/libcxx/utils/libcxx/test/params.py
+++ b/libcxx/utils/libcxx/test/params.py
@@ -242,7 +242,7 @@ def getStdFlag(cfg, std):
                 AddFlag("-fsanitize=leaks")    if sanitizer == "Leaks" else None,
 
                 AddFeature("sanitizer-new-delete") if sanitizer in ["Address", "HWAddress", "Memory", "MemoryWithOrigins", "Thread"] else None,
-                AddFeature("lsan") if sanitizer in ["Address", "HWAddress", "Leaks"] else 
+                AddFeature("lsan") if sanitizer in ["Address", "HWAddress", "Leaks"] else None,
             ]
         )
     ),


        


More information about the libcxx-commits mailing list