Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[1.0.1 -> main] Add force-all-checks variant to replay tests #754

Merged
merged 5 commits into from
Sep 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions tests/nodeos_read_terminate_at_block_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@
cmdError = Utils.cmdError
relaunchTimeout = 10
numOfProducers = 1
# One producing node, four regular terminate-at-block nodes, and three nodes
# One producing node, four regular terminate-at-block nodes, and six nodes
# where replay snapshot through block logs with terminate-at-block
totalNodes = 8
# and in combinations of --read-mode and --force-all-checks.
totalNodes = 11

# Parse command line arguments
args = TestHelper.parse_args({
Expand Down Expand Up @@ -275,7 +276,10 @@ def executeSnapshotBlocklogTest(cluster, testNodeId, resultMsgs, nodeArgs, termA
replayNodeosArgs = {
5 : "--read-mode irreversible",
6 : "--read-mode head",
7 : "--read-mode speculative"
7 : "--read-mode speculative",
8 : "--read-mode irreversible --force-all-checks",
9 : "--read-mode head --force-all-checks",
10 : "--read-mode speculative --force-all-checks"
}

# combine all together
Expand Down