[libcxx-commits] [libcxx] 680c5d5 - [libc++] Remove the line of stdout output from this generator. NFCI.

Arthur O'Dwyer via libcxx-commits libcxx-commits at lists.llvm.org
Fri Apr 30 15:12:50 PDT 2021


Author: Arthur O'Dwyer
Date: 2021-04-30T18:08:00-04:00
New Revision: 680c5d5de2f3b3a302dd6c0bf9f3d2f119688c3f

URL: https://github.com/llvm/llvm-project/commit/680c5d5de2f3b3a302dd6c0bf9f3d2f119688c3f
DIFF: https://github.com/llvm/llvm-project/commit/680c5d5de2f3b3a302dd6c0bf9f3d2f119688c3f.diff

LOG: [libc++] Remove the line of stdout output from this generator. NFCI.

This line was confusing some people: it's not supposed to indicate
any kind of problem with the script, and I can't see any way it could
even help with troubleshooting. So, just silence it.

Added: 
    

Modified: 
    libcxx/utils/generate_header_tests.py

Removed: 
    


################################################################################
diff  --git a/libcxx/utils/generate_header_tests.py b/libcxx/utils/generate_header_tests.py
index b4ed43ba030c..9dec4cdc27c1 100755
--- a/libcxx/utils/generate_header_tests.py
+++ b/libcxx/utils/generate_header_tests.py
@@ -99,7 +99,6 @@ def should_keep_header(p, exclusions=None):
         relpath = os.path.relpath(p, include_path)
         relpath = posixpath.join(*os.path.split(relpath))
         if relpath in exclusions:
-            print('Excluded file:', relpath)
             return False
 
     return os.path.splitext(p)[1] in allowed_extensions


        


More information about the libcxx-commits mailing list