From 8a30ab5369f71dfea3e82e6830bcb9aa99ee08dc Mon Sep 17 00:00:00 2001 From: Jose Luis Duran Date: Thu, 12 Oct 2023 16:15:04 +0000 Subject: atf_python: Set verbosity for commands in a vnet Reviewed by: markj MFC after: 1 week Pull Request: https://github.com/freebsd/freebsd-src/pull/865 --- tests/atf_python/sys/net/vnet.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/atf_python/sys') 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") -- cgit v1.3