X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=scripts%2Fsrc_util%2Fcheck_all.py;h=7faabf15e8d3d3892a1d7f5649a040a4be86d85e;hb=e8956e54ae16c5e753d8faa42d070d9ce7b26da5;hp=f666a7824c512ae25c6981eddab382e2efee97bc;hpb=a1cad3612cf5e38b3082ab195d5a9c1eeb0ec4c8;p=platform%2Fupstream%2FVK-GL-CTS.git diff --git a/scripts/src_util/check_all.py b/scripts/src_util/check_all.py index f666a78..7faabf1 100644 --- a/scripts/src_util/check_all.py +++ b/scripts/src_util/check_all.py @@ -25,6 +25,7 @@ from argparse import ArgumentParser from common import getChangedFiles, getAllProjectFiles from check_include_guards import checkIncludeGuards from check_whitespace import checkWhitespace +from check_license import checkLicense if __name__ == "__main__": parser = ArgumentParser() @@ -41,6 +42,7 @@ if __name__ == "__main__": error = not all([ checkWhitespace(files), checkIncludeGuards(files), + checkLicense(files), #todo checkRedundantIncludeGuards(files), ])