Commit 85d8ed6a authored by Luke Mewburn's avatar Luke Mewburn
Browse files

asn_process: update bigint files to workaround

asn1c 0.9.28 on systems without 128-bit integers doesn't
handle INTEGER SIZE of 18446744073709551615.

Use a set() rather than a list() when just testing for membership.
parent f55b9197
Loading
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -21,10 +21,13 @@ def reconstrainInteger(filename):
    return "temp.asn"


filesWithBigInts = [
    "testing/dependencies/asn/stubs/LI-PS-PDU.asn",
filesWithBigInts = set(
    [
        "testing/dependencies/asn/IPAccessPDU.asn",
        "testing/dependencies/asn/IPAccessPDUCompatCheck.asn",
        "testing/dependencies/asn/stubs/LI-PS-PDU.asn",
    ]
)

asn1c_path = ""
change_path_to_unix = False