Skip to content

Commit

Permalink
fix permission error on trying to overwrite read-only template files
Browse files Browse the repository at this point in the history
Signed-off-by: Matthias J. Kannwischer <[email protected]>
  • Loading branch information
mkannwischer committed Jun 12, 2024
1 parent 2895110 commit b131622
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cbmc/proofs/run-cbmc-proofs.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,11 @@ async def configure_proof_dirs( # pylint: disable=too-many-arguments
profiling = [
"ENABLE_MEMORY_PROFILING=true"] if enable_memory_profiling else []

# delete old pathreports
proc = await asyncio.create_subprocess_exec(
"make", "veryclean", cwd=path,
stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE)

# Allow interactive tasks to preempt proof configuration
proc = await asyncio.create_subprocess_exec(
"nice", "-n", "15", "make", *pools,
Expand Down

0 comments on commit b131622

Please sign in to comment.