Skip to content

Commit 00f8589

Browse files
Merge branch 'master' into _update-deps/runtimeverification/k
2 parents a8164ee + c7f7099 commit 00f8589

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Diff for: .github/workflows/test-pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
- name: 'Summarization'
111111
test-suite: 'test-summarize'
112112
test-args:
113-
timeout: 150
113+
timeout: 30
114114
parallel: 6
115115
- name: 'DSS'
116116
test-suite: 'test-prove-dss'

Diff for: kevm-pyk/src/kevm_pyk/summarizer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ def create_kcfg_explore() -> KCFGExplore:
559559
passed = run_prover(
560560
proof,
561561
create_kcfg_explore=create_kcfg_explore,
562-
max_depth=1000,
562+
max_depth=1,
563563
max_iterations=None,
564564
cut_point_rules=KEVMSemantics.cut_point_rules(
565565
break_on_jumpi=False,

Diff for: kevm-pyk/src/tests/integration/test_summarize.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
def test_summarize(opcode: str) -> None:
1010
if get_summary_status(opcode) != 'PASSED':
1111
pytest.skip(f'{opcode} status: {OPCODES_SUMMARY_STATUS[opcode]}')
12-
if opcode in ['DUP', 'SWAP', 'BALANCE', 'SDIV', 'LOG', 'SMOD', 'BYTE']:
12+
13+
if opcode in ['DUP', 'SWAP', 'LOG']:
1314
pytest.skip(f'{opcode} summarization is time-consuming')
1415

1516
print(f'[{opcode}] selected')

0 commit comments

Comments
 (0)