Skip to content

Commit b43e932

Browse files
committed
merge
1 parent a3e1864 commit b43e932

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ ubuntu-tests:
106106
CONTIV_NODE_OS=ubuntu make clean build unit-test system-test stop
107107

108108
system-test:start
109-
godep go test -v -timeout 500m ./systemtests -check.v -check.f TestBgp*
109+
godep go test -v -timeout 500m ./systemtests -check.v -check.f godep go test -v -timeout 240m ./systemtests -check.v -check.f "00SSH|Basic|Network|Policy|TestTrigger|ACI"
110110

111111
l3-test:
112112
CONTIV_L3=2 CONTIV_NODES=3 make stop

scripts/python/api/tnode.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def runCmd(self, cmd, timeout=None):
7070
# Start netplugin process on vagrant node
7171
def startNetplugin(self, args=""):
7272
ssh_object = self.sshConnect(self.username, self.password)
73-
command = "sudo " + self.binpath + "/netplugin -plugin-mode docker -vlan-if eth2 -fwd-mode routing" + args + "> /tmp/netplugin.log 2>&1"
73+
command = "sudo " + self.binpath + "/netplugin -plugin-mode docker -vlan-if eth2 " + args + "> /tmp/netplugin.log 2>&1"
7474
self.npThread = threading.Thread(target=ssh_exec_thread, args=(ssh_object, command))
7575
# npThread.setDaemon(True)
7676
self.npThread.start()

0 commit comments

Comments
 (0)