Commit 1bd27f74 authored by norvell's avatar norvell
Browse files

Add basops to be ignored for USAN in BASOP CI

parent db0c9373
Loading
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -9,6 +9,10 @@ basop_files = here.glob("lib_*/basop*.[ch]")

ignorefiles = sorted(set(non_ivas_files) - set(basop_files))

ignorefunctions = ["L_add_o", "L_add_co", "L_sub_o", "shl_o"]

with open("ubsan_ignorelist.txt", "w") as f:
    for cfile in ignorefiles:
        print(f"src:{cfile}", file=f)
    for fun in ignorefunctions:
        print(f"fun:*{fun}*", file=f)