Commit 88c850db authored by Jan Kiene's avatar Jan Kiene
Browse files

add arg for rom logfiles

parent f1a719ff
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -64,7 +64,7 @@ if __name__ == "__main__":
    parser = argparse.ArgumentParser()
    parser.add_argument("--wmops_logfiles", nargs="+")
    parser.add_argument("--ram_logfiles", nargs="+")
    parser.add_argument("rom_logfile")
    parser.add_argument("--rom_logfile", nargs=1)
    args = parser.parse_args()

    sys.exit(main(args))
+1 −1
Original line number Diff line number Diff line
@@ -148,7 +148,7 @@ else
  python3 ci/complexity_measurements/genWebpageData.py --wmops_per_op_log ${wmopsFilenameFlc}_WMOPS.csv --rom_log ${log_rom_all}
fi

python3 ${scriptDir}/check_for_changes.py --wmops_logfiles $(ls ${destDir}/wmops/log_wmops_all*.txt) --ram_logfiles $(ls ${destDir}/wmops/log_ram_all*.txt) ${destDir}/wmops/log_rom_all.txt
python3 ${scriptDir}/check_for_changes.py --wmops_logfiles $(ls ${destDir}/wmops/log_wmops_all*.txt) --ram_logfiles $(ls ${destDir}/wmops/log_ram_all*.txt) --rom_logfiles ${destDir}/wmops/log_rom_all.txt
if [ "$?" != "0" ]; then
  ret_val=1
fi