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

[stress-tests] remove 7x7 topology from network_forming.py #274

Merged
merged 1 commit into from
May 9, 2022
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
6 changes: 3 additions & 3 deletions pylibs/stress_tests/network_forming.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
# Network Forming Stress Test:
# Different number of nodes form networks (a single partition) and measure the network forming delay.
# Topology:
# 1x1 Routers ~ 7x7 Routers
# 1x1 Routers ~ 6x6 Routers
# Fault Injections:
# None
# Pass Criteria:
Expand All @@ -45,12 +45,12 @@
RADIO_RANGE = int(XGAP * 1.5)

MIN_N = 1
MAX_N = 7
MAX_N = 6

REPEAT = int(os.getenv('STRESS_LEVEL', '1')) * 3

EXPECTED_MERGE_TIME_MAX = [
None, 3, 6, 12, 20, 50, 100, 200
None, 3, 6, 12, 20, 50, 100
]


Expand Down