X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Ftools%2Fintegrated%2Fcheck_crc.py;h=3d5c30a6d6cc911cee6867b68b2b91f8ed49cb72;hb=6c6b9edc4690f5c4cd86334d706d7c40a81c85cf;hp=3e2836cb3b2f59f32296d77aec52c783130c1fad;hpb=29726f92698452f51033fc3ab52f112b74eae594;p=csit.git diff --git a/resources/tools/integrated/check_crc.py b/resources/tools/integrated/check_crc.py index 3e2836cb3b..3d5c30a6d6 100644 --- a/resources/tools/integrated/check_crc.py +++ b/resources/tools/integrated/check_crc.py @@ -27,12 +27,12 @@ from resources.libraries.python.VppApiCrc import VppApiCrcChecker # TODO: Read FDIO_VPP_DIR environment variable, or some other input, # instead of using hardcoded relative path? -api_dir = op.normpath(op.join( +API_DIR = op.normpath(op.join( op.dirname(op.abspath(__file__)), "..", "..", "..", "..", "build-root", "install-vpp-native", "vpp", "share", "vpp", "api")) -checker = VppApiCrcChecker(api_dir) +CHECKER = VppApiCrcChecker(API_DIR) try: - checker.report_initial_conflicts(report_missing=True) + CHECKER.report_initial_conflicts(report_missing=True) except RuntimeError as err: sys.stderr.write("{err!r}\n".format(err=err)) sys.stderr.write(