diff --git a/scripts/style/verify-fidl-libraries.py b/scripts/style/verify-fidl-libraries.py index f71b6b0b85e5db364db10433edb02a6de321152f..cdefeff297f5d2bc33d71b50750a5033dab0bcb4 100755 --- a/scripts/style/verify-fidl-libraries.py +++ b/scripts/style/verify-fidl-libraries.py @@ -47,6 +47,8 @@ def main(): for file in files.splitlines(): if any(file.startswith(ignored) for ignored in IGNORED_DIRS): continue + elif file.endswith('test.fidl'): + continue with open(os.path.join(repo, file), 'r') as fidl: contents = fidl.read()