On 03/20/2013 07:43 AM, Mike Qiu wrote: > Hi Lucas, > > We are now try to do some supports for ppc64 in autotest. > > As a long time not to send the ppc64 patches, now upstream autotest > has limited support for IBM Power, most time will be failure when run > autotest in Power platform. > > So I will send out other patches to the upstream in the next few days. > I really hope if my patches are all right, and the upstream autotest > still plan > to support ppc64, you can apply it.
The plan is to support other architectures. Although your patch makes me think, see below: > Thanks > Mike > > 2013/3/19 19:13, Mike Qiu wrote: >> Currently, the acceptable qemu binary haven't include ppc64, >> add the ppc64 support. >> >> Signed-off-by: Mike Qiu <[email protected]> >> --- >> virttest/qemu_installer.py | 3 ++- >> 1 file changed, 2 insertions(+), 1 deletion(-) >> >> diff --git a/virttest/qemu_installer.py b/virttest/qemu_installer.py >> index ada1ce3..1a780fe 100644 >> --- a/virttest/qemu_installer.py >> +++ b/virttest/qemu_installer.py >> @@ -25,7 +25,8 @@ class QEMUBaseInstaller(base_installer.BaseInstaller): >> # to the test directory >> # >> ACCEPTABLE_QEMU_BIN_NAMES = ['qemu-kvm', >> - 'qemu-system-x86_64'] >> + 'qemu-system-x86_64', >> + 'qemu-system-ppc64'] I'd say here that the selection of qemu-system-x86_64 or qemu-system-ppc64 should be made depending on the host's arch. So if it's x86_64, append qemu-system-x86_64, if ppc64, append qemu-system-ppc64. So would you implement a system to append qemu-system-[arch] depending on the host's arch? Thanks! >> # >> # The default names for the binaries > _______________________________________________ Autotest-kernel mailing list [email protected] https://www.redhat.com/mailman/listinfo/autotest-kernel
