mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 08:34:57 +00:00
HeaderCheck: Also check AK for broken headers
This commit is contained in:
parent
9c75d9e2cb
commit
30cca01e24
1 changed files with 3 additions and 1 deletions
|
@ -12,7 +12,9 @@ TEST_FILE_TEMPLATE = '''\
|
||||||
|
|
||||||
|
|
||||||
def get_headers_here():
|
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 == ''
|
assert result.stderr == ''
|
||||||
output = result.stdout.split('\n')
|
output = result.stdout.split('\n')
|
||||||
assert output[-1] == '' # Trailing newline
|
assert output[-1] == '' # Trailing newline
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue