summaryrefslogtreecommitdiffhomepage
path: root/test/scenario_test/bgp_router_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/scenario_test/bgp_router_test.py')
-rw-r--r--test/scenario_test/bgp_router_test.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/scenario_test/bgp_router_test.py b/test/scenario_test/bgp_router_test.py
index 8b17e380..5d71ff85 100644
--- a/test/scenario_test/bgp_router_test.py
+++ b/test/scenario_test/bgp_router_test.py
@@ -90,6 +90,8 @@ class GoBGPTestBase(unittest.TestCase):
cmd = 'docker exec {0} {1}' \
' monitor global rib -j'.format(self.gobgp.name, gobgp)
+ print '[localhost] local:', cmd
+
process = subprocess.Popen(cmd, shell=True,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
@@ -97,7 +99,7 @@ class GoBGPTestBase(unittest.TestCase):
poll = select.epoll()
poll.register(process.stdout, select.POLLIN)
- timeout = 10.0
+ timeout = 120.0
while True:
result = poll.poll(timeout)