Skip to content

Commit

Permalink
Merge branch 'main' into fix/dynamic-array-exceed-storage-limit
Browse files Browse the repository at this point in the history
  • Loading branch information
daejunpark committed Sep 23, 2024
2 parents 9397fd8 + 3e66a60 commit 4e04da5
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
17 changes: 16 additions & 1 deletion .github/workflows/test-external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,22 @@ jobs:
profile: ""
- repo: "pcaversaccio/snekmate"
dir: "snekmate"
cmd: "--config test/halmos.toml"
cmd: "--config test/halmos.toml --contract ERC20TestHalmos"
branch: ""
profile: "halmos"
- repo: "pcaversaccio/snekmate"
dir: "snekmate"
cmd: "--config test/halmos.toml --contract ERC721TestHalmos"
branch: ""
profile: "halmos"
- repo: "pcaversaccio/snekmate"
dir: "snekmate"
cmd: "--config test/halmos.toml --contract ERC1155TestHalmos"
branch: ""
profile: "halmos"
- repo: "pcaversaccio/snekmate"
dir: "snekmate"
cmd: "--config test/halmos.toml --contract MathTestHalmos"
branch: ""
profile: "halmos"

Expand Down
2 changes: 1 addition & 1 deletion src/halmos/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ class Config:

solver_timeout_assertion: int = arg(
help="set timeout (in milliseconds) for solving assertion violation conditions; 0 means no timeout",
global_default=1000,
global_default=60_000,
metavar="TIMEOUT",
group=solver,
)
Expand Down

0 comments on commit 4e04da5

Please sign in to comment.