aboutsummaryrefslogtreecommitdiff
path: root/tests/atf_python
diff options
context:
space:
mode:
authorJose Luis Duran <jlduran@gmail.com>2023-10-12 16:15:04 +0000
committerMark Johnston <markj@FreeBSD.org>2023-10-13 19:31:30 +0000
commit8a30ab5369f71dfea3e82e6830bcb9aa99ee08dc (patch)
tree8fd46a829aafa6264fddb03a11032420eef5c133 /tests/atf_python
parenta1eb150ce215f51abbbb34aed0533bced93e5502 (diff)
Diffstat (limited to 'tests/atf_python')
-rw-r--r--tests/atf_python/sys/net/vnet.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/atf_python/sys/net/vnet.py b/tests/atf_python/sys/net/vnet.py
index 7c855b19f2c0..b591501856b9 100644
--- a/tests/atf_python/sys/net/vnet.py
+++ b/tests/atf_python/sys/net/vnet.py
@@ -225,10 +225,10 @@ class VnetInstance(object):
self.pipe = None
self.subprocess = None
- def run_vnet_cmd(self, cmd):
+ def run_vnet_cmd(self, cmd, verbose=True):
if not self.attached:
cmd = "/usr/sbin/jexec {} {}".format(self.name, cmd)
- return run_cmd(cmd)
+ return run_cmd(cmd, verbose)
def disable_dad(self):
self.run_vnet_cmd("/sbin/sysctl net.inet6.ip6.dad_count=0")