Commit 30312d95 authored by canterburym's avatar canterburym
Browse files

Update test fixture

parent 3d2bcdbc
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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)))