summaryrefslogtreecommitdiff
path: root/Meta/HeaderCheck
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2022-09-13 23:23:55 +0200
committerTim Flynn <trflynn89@pm.me>2022-09-18 13:27:24 -0400
commit30cca01e2442e9ac6dc38f5e8a1bb42d878d3266 (patch)
tree408a5cc881682e0b83dd23545a5ad42bca3d45c1 /Meta/HeaderCheck
parent9c75d9e2cbc2fec88f31b74cd6ae581eba363acd (diff)
downloadserenity-30cca01e2442e9ac6dc38f5e8a1bb42d878d3266.zip
HeaderCheck: Also check AK for broken headers
Diffstat (limited to 'Meta/HeaderCheck')
-rwxr-xr-xMeta/HeaderCheck/generate_all.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Meta/HeaderCheck/generate_all.py b/Meta/HeaderCheck/generate_all.py
index f311efa97e..d566f9d7df 100755
--- a/Meta/HeaderCheck/generate_all.py
+++ b/Meta/HeaderCheck/generate_all.py
@@ -12,7 +12,9 @@ TEST_FILE_TEMPLATE = '''\
def get_headers_here():
- result = subprocess.run(['git', 'ls-files', 'Userland/Libraries/*.h'], check=True, capture_output=True, text=True)
+ result = subprocess.run(
+ ['git', 'ls-files', 'AK/*.h', 'Userland/Libraries/*.h'],
+ check=True, capture_output=True, text=True)
assert result.stderr == ''
output = result.stdout.split('\n')
assert output[-1] == '' # Trailing newline