Browse Source

check_whence: Check link targets are valid

This should catch a couple of common errors: reversing the two arguments
to Link, and not making the second argument relative to the first.

Signed-off-by: Adam Sampson <ats@offog.org>
Signed-off-by: Josh Boyer <jwboyer@kernel.org>
main
Adam Sampson 1 year ago committed by Josh Boyer
parent
commit
9e0343cf92
No known key found for this signature in database
GPG Key ID: A31B6BD72486CFD6
  1. 18
      check_whence.py

18
check_whence.py

@ -91,6 +91,24 @@ def main(): @@ -91,6 +91,24 @@ def main():
sys.stderr.write('E: %s listed in WHENCE does not exist\n' % name)
ret = 1

# A link can point to another link, or to a file...
valid_targets = set(link[0] for link in links_list) | git_files

# ... or to a directory
for target in set(valid_targets):
dirname = target
while True:
dirname = os.path.dirname(dirname)
if dirname == '':
break
valid_targets.add(dirname)

for name, target in sorted(links_list):
if target not in valid_targets:
sys.stderr.write('E: target %s of link %s in WHENCE'
' does not exist\n' % (target, name))
ret = 1

for name in sorted(list(git_files - known_files)):
# Ignore subdirectory changelogs and GPG detached signatures
if (name.endswith('/ChangeLog') or

Loading…
Cancel
Save