summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2021-06-23 01:08:28 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2021-06-23 01:08:28 +0000
commite350349dd1fb9f3eda537a382b09923eeeca421f (patch)
tree17b742dfb058b7509edce18edf53ed58ee9a30bf
parent921efbeecf1b8036ba4e4fe4feea3dde5f17bc0b (diff)
parente9bda53308a56f7c0bf493bfdcdf94a4ad036f8b (diff)
downloadtests-e350349dd1fb9f3eda537a382b09923eeeca421f.tar.gz
Snap for 7482982 from e9bda53308a56f7c0bf493bfdcdf94a4ad036f8b to sc-release
Change-Id: If9dd0cd7c704cde90469551946af99ae90ceaab7
-rwxr-xr-xnet/test/sysctls_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/test/sysctls_test.py b/net/test/sysctls_test.py
index 4b71f39..cb608f6 100755
--- a/net/test/sysctls_test.py
+++ b/net/test/sysctls_test.py
@@ -23,7 +23,7 @@ class SysctlsTest(net_test.NetworkTest):
def check(self, f):
algs = open(f).readline().strip().split(' ')
- bad_algs = [a for a in algs if a not in ['bbr', 'bbr2', 'cubic', 'reno']]
+ bad_algs = [a for a in algs if a not in ['cubic', 'reno']]
msg = ("Obsolete TCP congestion control algorithm found. These "
"algorithms will decrease real-world networking performance for "
"users and must be disabled. Found: %s" % bad_algs)