diff options
author | Gerd Hoffmann | 2020-03-23 17:15:05 +0100 |
---|---|---|
committer | Alex Bennée | 2020-03-27 14:43:20 +0100 |
commit | 50a06452c75424ad5f0a8d57997d7e16011160b3 (patch) | |
tree | a45c060cdf73aadbcfa67c50947c6f1dcf7b1899 /tests/vm/basevm.py | |
parent | tests/vm: write raw console log (diff) | |
download | qemu-50a06452c75424ad5f0a8d57997d7e16011160b3.tar.gz qemu-50a06452c75424ad5f0a8d57997d7e16011160b3.tar.xz qemu-50a06452c75424ad5f0a8d57997d7e16011160b3.zip |
tests/vm: move vga setup
Move '-device VGA' from basevm.py to the guests, so they have
the chance to opt out and run without display device.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20200310083218.26355-3-kraxel@redhat.com>
Message-Id: <20200323161514.23952-3-alex.bennee@linaro.org>
Diffstat (limited to 'tests/vm/basevm.py')
-rw-r--r-- | tests/vm/basevm.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/vm/basevm.py b/tests/vm/basevm.py index c53fd354d9..cffe7c4600 100644 --- a/tests/vm/basevm.py +++ b/tests/vm/basevm.py @@ -179,7 +179,6 @@ class BaseVM(object): def boot(self, img, extra_args=[]): args = self._args + [ - "-device", "VGA", "-drive", "file=%s,if=none,id=drive0,cache=writeback" % img, "-device", "virtio-blk,drive=drive0,bootindex=0"] args += self._data_args + extra_args |