[libc++] Remove the line of stdout output from this generator. NFCI.
authorArthur O'Dwyer <arthur.j.odwyer@gmail.com>
Fri, 30 Apr 2021 22:05:31 +0000 (18:05 -0400)
committerArthur O'Dwyer <arthur.j.odwyer@gmail.com>
Fri, 30 Apr 2021 22:08:00 +0000 (18:08 -0400)
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.

libcxx/utils/generate_header_tests.py

index b4ed43b..9dec4cd 100755 (executable)
@@ -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