aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/distrib/check_copyright.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/distrib/check_copyright.py')
-rwxr-xr-xtools/distrib/check_copyright.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/distrib/check_copyright.py b/tools/distrib/check_copyright.py
index 0eb2cbe1a2..55cec938c9 100755
--- a/tools/distrib/check_copyright.py
+++ b/tools/distrib/check_copyright.py
@@ -152,7 +152,9 @@ for filename in filename_list:
m = re.search(re_license, text)
if m:
pass
- elif 'DO NOT EDIT' not in text and filename != 'src/boringssl/err_data.c':
+ elif 'DO NOT EDIT' not in text and filename not in [
+ 'src/boringssl/err_data.c', 'src/boringssl/crypto_test_data.cc'
+ ]:
log(1, 'copyright missing', filename)
ok = False