summaryrefslogtreecommitdiff
path: root/net/test/all_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'net/test/all_tests.py')
-rwxr-xr-xnet/test/all_tests.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/net/test/all_tests.py b/net/test/all_tests.py
index 5f6c583..17d9701 100755
--- a/net/test/all_tests.py
+++ b/net/test/all_tests.py
@@ -18,6 +18,8 @@ import importlib
import sys
import unittest
+import namespace
+
test_modules = [
'anycast_test',
'bpf_test',
@@ -46,6 +48,9 @@ test_modules = [
]
if __name__ == '__main__':
+ # Check whether ADB over TCP is occupying TCP port 5555.
+ if namespace.HasEstablishedTcpSessionOnPort(5555):
+ namespace.IfPossibleEnterNewNetworkNamespace()
# First, run InjectTests on all modules, to ensure that any parameterized
# tests in those modules are injected.
for name in test_modules: