diff --git a/dev/bench/bench.sh b/dev/bench/bench.sh index e6342073d65a..1cd9eeae8e7a 100755 --- a/dev/bench/bench.sh +++ b/dev/bench/bench.sh @@ -604,7 +604,7 @@ $skipped_packages" for iteration in $(seq $num_of_iterations); do # opam logs prefix the printing with "- " so remove that # remove the base path for nicer printing and so the script can identify common files - "$program_path"/../../tools/make-both-time-files.py \ + "$program_path"/../../tools/make-both-time-files.py --real \ <(sed -e 's/^- //' -e "s:$new_base_path::" "$log_dir/$coq_opam_package.NEW.opam_install.$iteration.stdout.log") \ <(sed -e 's/^- //' -e "s:$old_base_path::" "$log_dir/$coq_opam_package.OLD.opam_install.$iteration.stdout.log") \ > "$log_dir/$coq_opam_package.BOTH.perfile_timings.$iteration.log" @@ -654,7 +654,7 @@ du -ha "$working_dir" > "$working_dir/files.listing" new_base_path=$new_opam_root/ocaml-NEW/.opam-switch/build/ old_base_path=$old_opam_root/ocaml-OLD/.opam-switch/build/ for iteration in $(seq $num_of_iterations); do - "$program_path"/../../tools/make-both-time-files.py \ + "$program_path"/../../tools/make-both-time-files.py --real \ <(sed -e 's/^- //' -e "s:$new_base_path::" "$log_dir/"*".NEW.opam_install.$iteration.stdout.log") \ <(sed -e 's/^- //' -e "s:$old_base_path::" "$log_dir/"*".OLD.opam_install.$iteration.stdout.log") \ > "$log_dir/ALL.BOTH.perfile_timings.$iteration.log" diff --git a/dev/ci/ci-wrapper.sh b/dev/ci/ci-wrapper.sh index 2d70e785bf00..1a2f4ea1dfd1 100755 --- a/dev/ci/ci-wrapper.sh +++ b/dev/ci/ci-wrapper.sh @@ -17,5 +17,5 @@ export TIMED=1 bash "${DIR}/${CI_SCRIPT}" 2>&1 | tee "$CI_NAME.log" code=$? echo 'Aggregating timing log...' -python ./tools/make-one-time-file.py "$CI_NAME.log" +python ./tools/make-one-time-file.py --real "$CI_NAME.log" exit $code