Skip to content

Commit 0d475da

Browse files
committed
testcases/loading: Change loading values
Reduce number of threads/processs to 50 resulting in 50 x 10 = 500 simultaneous connections. Also increase the number of files per thread from 10 to 20. Signed-off-by: Sachin Prabhu <[email protected]>
1 parent b4f2bec commit 0d475da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testcases/loading/test_loading.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# total number of processes
2727
total_processes: int = 10
2828
# each with this number of threads
29-
per_process_threads: int = 100
29+
per_process_threads: int = 50
3030
# running the connection test for this many seconds
3131
test_runtime: int = 30
3232

@@ -35,7 +35,7 @@ class SimpleLoadTest:
3535
"""A helper class to generate a simple load on a SMB server"""
3636

3737
instance_num: int = 0
38-
max_files: int = 10
38+
max_files: int = 20
3939
test_string: str = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
4040

4141
def __init__(

0 commit comments

Comments
 (0)