Loading testing/check_asn1.py +3 −1 Original line number Diff line number Diff line Loading @@ -7,8 +7,10 @@ from pathlib import Path schemaFileGlob = glob("*.asn1") for schemaFile in schemaFileGlob: try: print("Checking file: {0}".format(schemaFile), end="") parse_files(schemaFile) print("OK") except ParseError as ex: sys.exit("ASN1 parser error: " + str(ex)) print ("ASN1 schema OK") print ("{0} ASN.1 schemas checked".format(len(schemaFileGlob))) Loading
testing/check_asn1.py +3 −1 Original line number Diff line number Diff line Loading @@ -7,8 +7,10 @@ from pathlib import Path schemaFileGlob = glob("*.asn1") for schemaFile in schemaFileGlob: try: print("Checking file: {0}".format(schemaFile), end="") parse_files(schemaFile) print("OK") except ParseError as ex: sys.exit("ASN1 parser error: " + str(ex)) print ("ASN1 schema OK") print ("{0} ASN.1 schemas checked".format(len(schemaFileGlob)))