summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorEhsan Nasiri <ehsann@google.com>2017-01-11 10:51:23 -0500
committerDavid Neto <dneto@google.com>2017-01-16 16:52:08 -0500
commitfcf7df069d9ed00c42e00ae2717107f9772cb426 (patch)
tree129fdacbe55d94c50d44e16304f63b98e564a171 /utils
parent1c11c8690f6b8dd3a396447bca8a180e468156a7 (diff)
Adding decoration class and tests.
* Added the decoration class as well as the code that registers the decorations for each <id> and also decorations for struct members. * Added unit tests for decorations in ValidationState as well as decoration id tests.
Diffstat (limited to 'utils')
-rwxr-xr-xutils/check_copyright.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/check_copyright.py b/utils/check_copyright.py
index c6fb5e83..08fb0828 100755
--- a/utils/check_copyright.py
+++ b/utils/check_copyright.py
@@ -30,9 +30,9 @@ import sys
AUTHORS = ['The Khronos Group Inc.',
'LunarG Inc.',
'Google Inc.']
-CURRENT_YEAR='2016'
+CURRENT_YEAR='2017'
-YEARS = '(2014-2016|2015-2016|2016)'
+YEARS = '(2014-2016|2015-2016|2016|2016-2017|2017)'
COPYRIGHT_RE = re.compile(
'Copyright \(c\) {} ({})'.format(YEARS, '|'.join(AUTHORS)))