diff options
author | Philippe Mathieu-Daudé | 2018-10-13 02:40:30 +0200 |
---|---|---|
committer | Fam Zheng | 2018-10-26 16:03:21 +0200 |
commit | 31719c37f500a62aeb739ddeea87db89e8c2fcb1 (patch) | |
tree | 8b07c98031cbe20f67eada2779b34848674646f5 /tests/vm/ubuntu.i386 | |
parent | tests/vm: Display remaining seconds to wait for a VM to start (diff) | |
download | qemu-31719c37f500a62aeb739ddeea87db89e8c2fcb1.tar.gz qemu-31719c37f500a62aeb739ddeea87db89e8c2fcb1.tar.xz qemu-31719c37f500a62aeb739ddeea87db89e8c2fcb1.zip |
tests/vm: Add a BaseVM::arch property
The 'arch' property gives a hint on which architecture the guest image runs.
This can be use to select the correct QEMU binary path.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20181013004034.6968-6-f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Fam Zheng <famz@redhat.com>
Diffstat (limited to 'tests/vm/ubuntu.i386')
-rwxr-xr-x | tests/vm/ubuntu.i386 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/vm/ubuntu.i386 b/tests/vm/ubuntu.i386 index 3f6ed48b74..1b7e1ab8f0 100755 --- a/tests/vm/ubuntu.i386 +++ b/tests/vm/ubuntu.i386 @@ -19,6 +19,7 @@ import time class UbuntuX86VM(basevm.BaseVM): name = "ubuntu.i386" + arch = "i386" BUILD_SCRIPT = """ set -e; cd $(mktemp -d); |