From: "Alexander von Gluck IV" <kallisti5@unixzen.com>
To: "Thomas Huth" <thuth@redhat.com>, qemu-devel@nongnu.org
Cc: "Philippe Mathieu-Daudé" <f4bug@amsat.org>,
"Alex Bennée" <alex.bennee@linaro.org>,
"QEMU Trivial" <qemu-trivial@nongnu.org>,
"Peter Maydell" <peter.maydell@linaro.org>
Subject: Re: [PATCH] tests/vm: Update haiku test vm to R1/Beta3
Date: Wed, 16 Feb 2022 18:12:44 +0000 [thread overview]
Message-ID: <dd3cfc5c9d69795b2e5be9b536066f8f@unixzen.com> (raw)
In-Reply-To: <2d597b24-2b00-3e4c-27ed-3265a38a48a6@redhat.com>
February 16, 2022 10:26 AM, "Thomas Huth" <thuth@redhat.com> wrote:
> On 16/02/2022 16.42, Alexander von Gluck IV wrote:
>
>> ---
>> tests/vm/haiku.x86_64 | 8 ++++----
>> 1 file changed, 4 insertions(+), 4 deletions(-)
>> diff --git a/tests/vm/haiku.x86_64 b/tests/vm/haiku.x86_64
>> index 2eb736dae1..936f7d2ae2 100755
>> --- a/tests/vm/haiku.x86_64
>> +++ b/tests/vm/haiku.x86_64
>> @@ -2,7 +2,7 @@
>> #
>> # Haiku VM image
>> #
>> -# Copyright 2020 Haiku, Inc.
>> +# Copyright 2020-2022 Haiku, Inc.
>> #
>> # Authors:
>> # Alexander von Gluck IV <kallisti5@unixzen.com>
>> @@ -48,8 +48,8 @@ class HaikuVM(basevm.BaseVM):
>> name = "haiku"
>> arch = "x86_64"
>>> - link =
>> "https://app.vagrantup.com/haiku-os/boxes/r1beta2-x86_64/versions/20200702/providers/libvirt.box"
>> - csum = "41c38b316e0cbdbc66b5dbaf3612b866700a4f35807cb1eb266a5bf83e9e68d5"
>> + link =
>> "https://app.vagrantup.com/haiku-os/boxes/r1beta3-x86_64/versions/20220216/providers/libvirt.box"
>> + csum = "e67d4aacbcc687013d5cc91990ddd86cc5d70a5d28432ae2691944f8ce5d5041"
>>> poweroff = "shutdown"
>>> @@ -99,7 +99,7 @@ class HaikuVM(basevm.BaseVM):
>>> self.print_step("Extracting disk image")
>>> - subprocess.check_call(["tar", "xzf", tarball, "./box.img", "-O"],
>> + subprocess.check_call(["tar", "xzf", tarball, "box.img", "-O"],
>> stdout=open(img, 'wb'))
>>> self.print_step("Preparing disk image")
>
> Thank you very much for the quick fix, that indeed helps to compile-test Haiku again! (the unit
> tests are failing, though, but IIRC that was already the case before)
>
> Tested-by: Thomas Huth <thuth@redhat.com>
Thanks!
Sorry for forgetting about it. I hand release Vagrant images for Haiku after major releases
and generally forget to update them until ~6 months after a major release as there aren't many users.
I don't have commit access to qemu so will need someone else to push when the time comes.
-- Alex
WARNING: multiple messages have this Message-ID (diff)
From: "Alexander von Gluck IV" <kallisti5@unixzen.com>
To: "Thomas Huth" <thuth@redhat.com>, qemu-devel@nongnu.org
Cc: "QEMU Trivial" <qemu-trivial@nongnu.org>,
"Peter Maydell" <peter.maydell@linaro.org>,
"Alex Bennée" <alex.bennee@linaro.org>,
"Philippe Mathieu-Daudé" <f4bug@amsat.org>
Subject: Re: [PATCH] tests/vm: Update haiku test vm to R1/Beta3
Date: Wed, 16 Feb 2022 18:12:44 +0000 [thread overview]
Message-ID: <dd3cfc5c9d69795b2e5be9b536066f8f@unixzen.com> (raw)
In-Reply-To: <2d597b24-2b00-3e4c-27ed-3265a38a48a6@redhat.com>
February 16, 2022 10:26 AM, "Thomas Huth" <thuth@redhat.com> wrote:
> On 16/02/2022 16.42, Alexander von Gluck IV wrote:
>
>> ---
>> tests/vm/haiku.x86_64 | 8 ++++----
>> 1 file changed, 4 insertions(+), 4 deletions(-)
>> diff --git a/tests/vm/haiku.x86_64 b/tests/vm/haiku.x86_64
>> index 2eb736dae1..936f7d2ae2 100755
>> --- a/tests/vm/haiku.x86_64
>> +++ b/tests/vm/haiku.x86_64
>> @@ -2,7 +2,7 @@
>> #
>> # Haiku VM image
>> #
>> -# Copyright 2020 Haiku, Inc.
>> +# Copyright 2020-2022 Haiku, Inc.
>> #
>> # Authors:
>> # Alexander von Gluck IV <kallisti5@unixzen.com>
>> @@ -48,8 +48,8 @@ class HaikuVM(basevm.BaseVM):
>> name = "haiku"
>> arch = "x86_64"
>>> - link =
>> "https://app.vagrantup.com/haiku-os/boxes/r1beta2-x86_64/versions/20200702/providers/libvirt.box"
>> - csum = "41c38b316e0cbdbc66b5dbaf3612b866700a4f35807cb1eb266a5bf83e9e68d5"
>> + link =
>> "https://app.vagrantup.com/haiku-os/boxes/r1beta3-x86_64/versions/20220216/providers/libvirt.box"
>> + csum = "e67d4aacbcc687013d5cc91990ddd86cc5d70a5d28432ae2691944f8ce5d5041"
>>> poweroff = "shutdown"
>>> @@ -99,7 +99,7 @@ class HaikuVM(basevm.BaseVM):
>>> self.print_step("Extracting disk image")
>>> - subprocess.check_call(["tar", "xzf", tarball, "./box.img", "-O"],
>> + subprocess.check_call(["tar", "xzf", tarball, "box.img", "-O"],
>> stdout=open(img, 'wb'))
>>> self.print_step("Preparing disk image")
>
> Thank you very much for the quick fix, that indeed helps to compile-test Haiku again! (the unit
> tests are failing, though, but IIRC that was already the case before)
>
> Tested-by: Thomas Huth <thuth@redhat.com>
Thanks!
Sorry for forgetting about it. I hand release Vagrant images for Haiku after major releases
and generally forget to update them until ~6 months after a major release as there aren't many users.
I don't have commit access to qemu so will need someone else to push when the time comes.
-- Alex
next prev parent reply other threads:[~2022-02-16 21:12 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-16 15:42 [PATCH] tests/vm: Update haiku test vm to R1/Beta3 Alexander von Gluck IV
2022-02-16 16:26 ` Thomas Huth
2022-02-16 16:26 ` Thomas Huth
2022-02-16 18:12 ` Alexander von Gluck IV [this message]
2022-02-16 18:12 ` Alexander von Gluck IV
2022-02-21 8:15 ` Thomas Huth
2022-02-21 8:15 ` Thomas Huth
2022-12-14 10:47 ` Thomas Huth
2023-01-13 11:05 ` Philippe Mathieu-Daudé
2023-01-13 13:30 ` Philippe Mathieu-Daudé
2023-01-13 14:20 ` Alexander von Gluck IV
2023-01-14 22:47 ` Alexander von Gluck IV
2023-01-16 8:19 ` Thomas Huth
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=dd3cfc5c9d69795b2e5be9b536066f8f@unixzen.com \
--to=kallisti5@unixzen.com \
--cc=alex.bennee@linaro.org \
--cc=f4bug@amsat.org \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@nongnu.org \
--cc=thuth@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.