summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2021-06-23 01:08:45 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2021-06-23 01:08:45 +0000
commitdaf6b15eba2afa6a5419055d9db19de89c99ccce (patch)
tree17b742dfb058b7509edce18edf53ed58ee9a30bf
parent8bf1cdff0a27206dfe705de928360a563b995e74 (diff)
parent8cd82caa4bb65161669a068672da32631575d7d6 (diff)
downloadtests-daf6b15eba2afa6a5419055d9db19de89c99ccce.tar.gz
Snap for 7482035 from 8cd82caa4bb65161669a068672da32631575d7d6 to sc-v2-release
Change-Id: I6ddd7b00ab691b84b7d8a4364ff91f39908d605d
-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)