aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/distrib
diff options
context:
space:
mode:
authorGravatar Matt Kwong <mattkwong@google.com>2017-09-22 14:31:22 -0700
committerGravatar Matt Kwong <mattkwong@google.com>2018-01-26 18:21:25 -0800
commita110c74c58916730aba94020b9ebd474f207b388 (patch)
tree0157677f1acef1204397d1cb761219bbdda16fef /tools/distrib
parent123547c9625c56fdf5cb4ddd1df55ae0c785fa60 (diff)
Update BoringSSL to latest chromium-stable ref
Diffstat (limited to 'tools/distrib')
-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