Lines Matching full:throughput
6 #The test comprises of throughput check for TCP and UDP streams.
29 #test_duration = 10 #performance test duration for the throughput check, in seconds.
30 #send_throughput_threshold = 80 #percentage of send throughput required to pass the check
31 #receive_throughput_threshold = 50 #percentage of receive throughput required to pass the check
91 """Convert throughput to Mbps"""
93 ksft_pr(f"{protocol}: Send throughput: {send_throughput[idx]} Mbps")
102 """Convert throughput to Mbps"""
104 ksft_pr(f"{protocol}: Receive throughput: {receive_throughput[idx]} Mbps")
106 """Check whether throughput is not below the threshold (default values set at start)"""
110 …ksft_true(send_throughput[idx] >= send_threshold, f"{protocol}: Send throughput is below threshold…
111 …ksft_true(receive_throughput[idx] >= receive_threshold, f"{protocol}: Receive throughput is below …
124 …ration', type=int, default=10, help='Performance test duration for the throughput check, in second…
125 …default=80, help='Send throughput Threshold: Percentage of send throughput upon actual throughput …
126 …ult=50, help='Receive throughput Threshold: Percentage of receive throughput upon actual throughpu…