Skip to content

Commit

Permalink
Renamed /host to /theta in docker container
Browse files Browse the repository at this point in the history
  • Loading branch information
arminzavada committed Sep 14, 2024
1 parent 9adaf30 commit 8c8cbf1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions engine/src/testFixtures/kotlin/ThetaExecutor.kt
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,12 @@ class ThetaExecutor(
"docker",
"run",
"--rm",
"--mount", "type=bind,source=$workingDirectory,target=/host",
"--mount", "type=bind,source=$workingDirectory,target=/theta",
"ftsrg/theta-xsts-cli:$version",
"CEGAR",
"--model", "/host/$model",
"--property", "/host/$property",
"--cexfile", "/host/$cex",
"--model", "/theta/$model",
"--property", "/theta/$property",
"--cexfile", "/theta/$cex",
*parameter.split(" ").toTypedArray(),
)
.redirectOutput(File(workingDirectory, logName))
Expand Down

0 comments on commit 8c8cbf1

Please sign in to comment.