Commit b4eca581 authored by Alex Bennée's avatar Alex Bennée
Browse files

tests/vm/ubuntu: include language pack to silence locale warnings



The iotests in particular don't like the output being spammed with
warnings about locales.

Signed-off-by: default avatarAlex Bennée <alex.bennee@linaro.org>
Reviewed-by: default avatarPhilippe Mathieu-Daudé <philmd@redhat.com>
parent 6cd7b608
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -84,7 +84,7 @@ class UbuntuX86VM(basevm.BaseVM):
        self.ssh_root_check("sed -ie s/^#\ deb-src/deb-src/g /etc/apt/sources.list")
        self.ssh_root_check("apt-get update")
        self.ssh_root_check("apt-get build-dep -y qemu")
        self.ssh_root_check("apt-get install -y libfdt-dev flex bison")
        self.ssh_root_check("apt-get install -y libfdt-dev flex bison language-pack-en")
        self.ssh_root("poweroff")
        self.wait()
        os.rename(img_tmp, img)