From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:35326) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1goXe3-0003xN-Vq for qemu-devel@nongnu.org; Tue, 29 Jan 2019 12:58:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1goXe2-0001sr-VY for qemu-devel@nongnu.org; Tue, 29 Jan 2019 12:57:59 -0500 From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Tue, 29 Jan 2019 18:53:56 +0100 Message-Id: <20190129175403.18017-12-philmd@redhat.com> In-Reply-To: <20190129175403.18017-1-philmd@redhat.com> References: <20190129175403.18017-1-philmd@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH v2 11/18] tests/vm/openbsd: Install GNU sed from the ports List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Brad Smith , qemu-devel@nongnu.org Cc: Stefan Hajnoczi , qemu-block@nongnu.org, Igor Mammedov , Paolo Bonzini , Eric Blake , Peter Maydell , =?UTF-8?q?Alex=20Benn=C3=A9e?= , Kevin Wolf , Max Reitz , Markus Armbruster , Fam Zheng , =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , "Michael S. Tsirkin" , Kamil Rytarowski Various iotests scripts (run via 'make check-block') require a GNU sed to use the (non-POSIX) GNU extensions. Install GNU sed from the ports to be able to run those tests. Signed-off-by: Philippe Mathieu-Daud=C3=A9 --- tests/vm/openbsd | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/vm/openbsd b/tests/vm/openbsd index e9c2a3f2c8..7c456e9706 100755 --- a/tests/vm/openbsd +++ b/tests/vm/openbsd @@ -47,6 +47,8 @@ class OpenBSDVM(basevm.BaseVM): self.ssh_root_check("sed -E -i 's_(/tmp\ ffs)\ ([^\ ]*)_\\1 \\2,= wxallowed_' /etc/fstab") sys.stderr.write("Installing bash...\n") self.ssh_root_check("PKG_PATH=3Dhttps://ftp.openbsd.org/pub/Open= BSD/6.1/packages/amd64 pkg_add bash") + sys.stderr.write("Installing GNU sed...\n") + self.ssh_root_check("PKG_PATH=3Dhttps://ftp.openbsd.org/pub/Open= BSD/6.1/packages/amd64 pkg_add gsed") self.ssh_root("shutdown -p now") self.wait() =20 --=20 2.20.1