Commit 53eb9fd3 authored by Jan Kiene's avatar Jan Kiene
Browse files

fix bugs in python scripts

parent 83c896dc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -731,7 +731,7 @@ class IvasModeRunner(IvasModeCollector.IvasModeCollector):
                    enc_log = open(enc_log_name, "a")
                    enc_log.write(" ".join(proc_cmd))
                    proc_result = subprocess.run(
                        proc_cmd, capture_output=True, text=True, encoding="utf8",
                        proc_cmd, capture_output=True, text=True, encoding="utf8"
                    )
                    enc_log.write(proc_result.stderr)
                    enc_log.write(proc_result.stdout)
+1 −1
Original line number Diff line number Diff line
@@ -1198,7 +1198,7 @@ class IvasBuilderAndRunner(IvasBaseClass):

            # for undefined behaviou sanitizer, pass suppression file if given
            if clang_n == "3" and usan_supp_file is not None:
                run_env["UBSAN_OPTIONS": f"suppressions={usan_supp_file},report_error_type=1"]
                run_env["UBSAN_OPTIONS"] = f"suppressions={usan_supp_file},report_error_type=1"

        elif check == "VALGRIND":
            defines_to_disable_check.extend(["RAM_COUNTING_TOOL"])