Commit 53473717 authored by Jan Kiene's avatar Jan Kiene
Browse files

Merge branch 'basop-ci/ubsan-ignorelist' into 'basop-ci-branch'

[BASOP-CI]remove jbm file from ignorelist

See merge request !2326
parents c845e3de ebb0f0aa
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -9,6 +9,12 @@ basop_files = here.glob("lib_*/basop*.[ch]")

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

# add files here that should not be ignored
# NOTE: this is meant to be used in BASOP main where everything has the _fx suffix in the filenames
remove_files = ["lib_dec/jbm_pcmdsp_apa_fx.c"]
for file in remove_files:
    ignorefiles.remove(pathlib.Path(file))

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

with open("ubsan_ignorelist.txt", "w") as f: