X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=scripts%2Fsrc_util%2Fcheck_all.py;h=7faabf15e8d3d3892a1d7f5649a040a4be86d85e;hb=2dcacdbe0afb28495e92172c9032e69a8af6f4d1;hp=f666a7824c512ae25c6981eddab382e2efee97bc;hpb=be2f5437eaef9a1d7ae660946c0c86a623d02ce8;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), ])