* [PULL 0/1] aspeed queue
@ 2026-07-27 5:36 Cédric Le Goater
2026-07-27 5:36 ` [PULL 1/1] tests/functional/aspeed: Fix remaining hostname-specific login prompts Cédric Le Goater
2026-07-28 11:41 ` [PULL 0/1] aspeed queue Stefan Hajnoczi
0 siblings, 2 replies; 6+ messages in thread
From: Cédric Le Goater @ 2026-07-27 5:36 UTC (permalink / raw)
To: qemu-arm, qemu-devel; +Cc: Cédric Le Goater
The following changes since commit 6333226c2abb72f31648c251624c56e70993d625:
Merge tag 'pull-9p-20260725' of https://github.com/cschoenebeck/qemu into staging (2026-07-26 08:30:07 -0400)
are available in the Git repository at:
https://github.com/legoater/qemu/ tags/pull-aspeed-20260727
for you to fetch changes up to d71fa99ca8769947ec4f59790fde4b0bf4a4e295:
tests/functional/aspeed: Fix remaining hostname-specific login prompts (2026-07-27 07:32:56 +0200)
----------------------------------------------------------------
aspeed queue:
* Fix remaining hostname-specific login prompts in functional tests
----------------------------------------------------------------
Cédric Le Goater (1):
tests/functional/aspeed: Fix remaining hostname-specific login prompts
tests/functional/aarch64/test_aspeed_ast2700a1.py | 2 +-
tests/functional/aarch64/test_aspeed_ast2700a2.py | 2 +-
tests/functional/aarch64/test_aspeed_ast2700fc.py | 2 +-
tests/functional/arm/test_aspeed_ast2500_sdk.py | 2 +-
tests/functional/arm/test_aspeed_ast2500_sdk_515.py | 2 +-
tests/functional/arm/test_aspeed_ast2600_sdk.py | 2 +-
tests/functional/arm/test_aspeed_ast2600_sdk_515.py | 2 +-
7 files changed, 7 insertions(+), 7 deletions(-)
^ permalink raw reply [flat|nested] 6+ messages in thread* [PULL 1/1] tests/functional/aspeed: Fix remaining hostname-specific login prompts 2026-07-27 5:36 [PULL 0/1] aspeed queue Cédric Le Goater @ 2026-07-27 5:36 ` Cédric Le Goater 2026-07-28 11:41 ` [PULL 0/1] aspeed queue Stefan Hajnoczi 1 sibling, 0 replies; 6+ messages in thread From: Cédric Le Goater @ 2026-07-27 5:36 UTC (permalink / raw) To: qemu-arm, qemu-devel Cc: Cédric Le Goater, Peter Maydell, Philippe Mathieu-Daudé, Daniel P. Berrangé Commit b04746bd0d7c unified boot completion detection on the generic 'login:' prompt but missed several SDK test files that still matched on hostname-prefixed patterns. Apply the same fix. Resolves: https://gitlab.com/qemu-project/qemu/-/work_items/4059 Fixes: b04746bd0d7c ("tests/functional/aspeed: unify boot completion detection on 'login:' prompt") Reported-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@oss.qualcomm.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Link: https://lore.kernel.org/qemu-devel/20260720162321.3497633-1-clg@redhat.com Signed-off-by: Cédric Le Goater <clg@redhat.com> --- tests/functional/aarch64/test_aspeed_ast2700a1.py | 2 +- tests/functional/aarch64/test_aspeed_ast2700a2.py | 2 +- tests/functional/aarch64/test_aspeed_ast2700fc.py | 2 +- tests/functional/arm/test_aspeed_ast2500_sdk.py | 2 +- tests/functional/arm/test_aspeed_ast2500_sdk_515.py | 2 +- tests/functional/arm/test_aspeed_ast2600_sdk.py | 2 +- tests/functional/arm/test_aspeed_ast2600_sdk_515.py | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/functional/aarch64/test_aspeed_ast2700a1.py b/tests/functional/aarch64/test_aspeed_ast2700a1.py index b0c08854daa9..ddddd2d47a95 100755 --- a/tests/functional/aarch64/test_aspeed_ast2700a1.py +++ b/tests/functional/aarch64/test_aspeed_ast2700a1.py @@ -81,7 +81,7 @@ def verify_openbmc_boot_start(self, enable_pcie=True): def verify_openbmc_boot_and_login(self, name, enable_pcie=True): self.verify_openbmc_boot_start(enable_pcie) - wait_for_console_pattern(self, f'{name} login:') + wait_for_console_pattern(self, 'login:') exec_command_and_wait_for_pattern(self, 'root', 'Password:') exec_command_and_wait_for_pattern(self, '0penBmc', f'root@{name}:~#') diff --git a/tests/functional/aarch64/test_aspeed_ast2700a2.py b/tests/functional/aarch64/test_aspeed_ast2700a2.py index ed414999f4fa..0fe04a6eca7f 100755 --- a/tests/functional/aarch64/test_aspeed_ast2700a2.py +++ b/tests/functional/aarch64/test_aspeed_ast2700a2.py @@ -81,7 +81,7 @@ def verify_openbmc_boot_start(self, enable_pcie=True): def verify_openbmc_boot_and_login(self, name, enable_pcie=True): self.verify_openbmc_boot_start(enable_pcie) - wait_for_console_pattern(self, f'{name} login:') + wait_for_console_pattern(self, 'login:') exec_command_and_wait_for_pattern(self, 'root', 'Password:') exec_command_and_wait_for_pattern(self, '0penBmc', f'root@{name}:~#') diff --git a/tests/functional/aarch64/test_aspeed_ast2700fc.py b/tests/functional/aarch64/test_aspeed_ast2700fc.py index df889134edaa..86270e6111f3 100755 --- a/tests/functional/aarch64/test_aspeed_ast2700fc.py +++ b/tests/functional/aarch64/test_aspeed_ast2700fc.py @@ -51,7 +51,7 @@ def verify_openbmc_boot_and_login(self, name): self.enable_ast2700_pcie2() wait_for_console_pattern(self, 'Starting kernel ...') - wait_for_console_pattern(self, f'{name} login:') + wait_for_console_pattern(self, 'login:') exec_command_and_wait_for_pattern(self, 'root', 'Password:') exec_command_and_wait_for_pattern(self, '0penBmc', f'root@{name}:~#') diff --git a/tests/functional/arm/test_aspeed_ast2500_sdk.py b/tests/functional/arm/test_aspeed_ast2500_sdk.py index 5ab36b99ab47..6ab498b3ff54 100755 --- a/tests/functional/arm/test_aspeed_ast2500_sdk.py +++ b/tests/functional/arm/test_aspeed_ast2500_sdk.py @@ -22,7 +22,7 @@ def test_arm_ast2500_evb_sdk(self): self.do_test_arm_aspeed_sdk_start( self.scratch_file("ast2500-default", "image-bmc")) - self.wait_for_console_pattern('ast2500-default login:') + self.wait_for_console_pattern('login:') if __name__ == '__main__': diff --git a/tests/functional/arm/test_aspeed_ast2500_sdk_515.py b/tests/functional/arm/test_aspeed_ast2500_sdk_515.py index 2b257986f622..8d39dc65daaa 100755 --- a/tests/functional/arm/test_aspeed_ast2500_sdk_515.py +++ b/tests/functional/arm/test_aspeed_ast2500_sdk_515.py @@ -22,7 +22,7 @@ def test_arm_ast2500_evb_sdk_515(self): self.do_test_arm_aspeed_sdk_start( self.scratch_file("ast2500-default-515", "image-bmc")) - self.wait_for_console_pattern('ast2500-default-515 login:') + self.wait_for_console_pattern('login:') if __name__ == '__main__': diff --git a/tests/functional/arm/test_aspeed_ast2600_sdk.py b/tests/functional/arm/test_aspeed_ast2600_sdk.py index 01548dd1354d..cabbe230c4cc 100755 --- a/tests/functional/arm/test_aspeed_ast2600_sdk.py +++ b/tests/functional/arm/test_aspeed_ast2600_sdk.py @@ -63,7 +63,7 @@ def test_arm_ast2600_evb_sdk(self): self.do_test_arm_aspeed_sdk_start( self.scratch_file("ast2600-default-image", "image-bmc")) - self.wait_for_console_pattern('ast2600-default login:') + self.wait_for_console_pattern('login:') exec_command_and_wait_for_pattern(self, 'root', 'Password:') exec_command_and_wait_for_pattern(self, '0penBmc', diff --git a/tests/functional/arm/test_aspeed_ast2600_sdk_515.py b/tests/functional/arm/test_aspeed_ast2600_sdk_515.py index ec043e7d6116..a8e7faff4890 100755 --- a/tests/functional/arm/test_aspeed_ast2600_sdk_515.py +++ b/tests/functional/arm/test_aspeed_ast2600_sdk_515.py @@ -22,7 +22,7 @@ def test_arm_ast2600_evb_sdk_515(self): self.do_test_arm_aspeed_sdk_start( self.scratch_file("ast2600-default-515-image", "image-bmc")) - self.wait_for_console_pattern('ast2600-default-515 login:') + self.wait_for_console_pattern('login:') if __name__ == '__main__': -- 2.55.0 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PULL 0/1] aspeed queue 2026-07-27 5:36 [PULL 0/1] aspeed queue Cédric Le Goater 2026-07-27 5:36 ` [PULL 1/1] tests/functional/aspeed: Fix remaining hostname-specific login prompts Cédric Le Goater @ 2026-07-28 11:41 ` Stefan Hajnoczi 1 sibling, 0 replies; 6+ messages in thread From: Stefan Hajnoczi @ 2026-07-28 11:41 UTC (permalink / raw) To: Cédric Le Goater; +Cc: qemu-arm, qemu-devel, Cédric Le Goater [-- Attachment #1: Type: text/plain, Size: 116 bytes --] Applied, thanks. Please update the changelog at https://wiki.qemu.org/ChangeLog/11.1 for any user-visible changes. [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 488 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [PULL 0/1] aspeed queue
@ 2026-07-27 5:35 Cédric Le Goater
0 siblings, 0 replies; 6+ messages in thread
From: Cédric Le Goater @ 2026-07-27 5:35 UTC (permalink / raw)
To: qemu-arm, qemu-devel; +Cc: Cédric Le Goater
The following changes since commit 6333226c2abb72f31648c251624c56e70993d625:
Merge tag 'pull-9p-20260725' of https://github.com/cschoenebeck/qemu into staging (2026-07-26 08:30:07 -0400)
are available in the Git repository at:
https://github.com/legoater/qemu/ tags/pull-aspeed-20260727
for you to fetch changes up to d71fa99ca8769947ec4f59790fde4b0bf4a4e295:
tests/functional/aspeed: Fix remaining hostname-specific login prompts (2026-07-27 07:32:56 +0200)
----------------------------------------------------------------
aspeed queue:
* Fix remaining hostname-specific login prompts in functional tests
----------------------------------------------------------------
Cédric Le Goater (1):
tests/functional/aspeed: Fix remaining hostname-specific login prompts
tests/functional/aarch64/test_aspeed_ast2700a1.py | 2 +-
tests/functional/aarch64/test_aspeed_ast2700a2.py | 2 +-
tests/functional/aarch64/test_aspeed_ast2700fc.py | 2 +-
tests/functional/arm/test_aspeed_ast2500_sdk.py | 2 +-
tests/functional/arm/test_aspeed_ast2500_sdk_515.py | 2 +-
tests/functional/arm/test_aspeed_ast2600_sdk.py | 2 +-
tests/functional/arm/test_aspeed_ast2600_sdk_515.py | 2 +-
7 files changed, 7 insertions(+), 7 deletions(-)
^ permalink raw reply [flat|nested] 6+ messages in thread* [PULL 0/1] aspeed queue
@ 2024-11-19 21:24 Cédric Le Goater
2024-11-20 12:09 ` Peter Maydell
0 siblings, 1 reply; 6+ messages in thread
From: Cédric Le Goater @ 2024-11-19 21:24 UTC (permalink / raw)
To: qemu-arm, qemu-devel; +Cc: Cédric Le Goater
The following changes since commit e6459afb1ff4d86b361b14f4a2fc43f0d2b4d679:
Merge tag 'pull-target-arm-20241119' of https://git.linaro.org/people/pmaydell/qemu-arm into staging (2024-11-19 14:23:34 +0000)
are available in the Git repository at:
https://github.com/legoater/qemu/ tags/pull-aspeed-20241119
for you to fetch changes up to 9b0a36494a477541b543fa689c635cf4912fa641:
docs: aspeed: Reorganize the "Boot options" section (2024-11-19 19:12:12 +0100)
----------------------------------------------------------------
aspeed queue:
* Restructured the "Boot options" section in the aspeed documentation
----------------------------------------------------------------
Cédric Le Goater (1):
docs: aspeed: Reorganize the "Boot options" section
docs/system/arm/aspeed.rst | 99 ++++++++++++++++++++++++++++++++++++++++------
1 file changed, 86 insertions(+), 13 deletions(-)
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PULL 0/1] aspeed queue 2024-11-19 21:24 Cédric Le Goater @ 2024-11-20 12:09 ` Peter Maydell 0 siblings, 0 replies; 6+ messages in thread From: Peter Maydell @ 2024-11-20 12:09 UTC (permalink / raw) To: Cédric Le Goater; +Cc: qemu-arm, qemu-devel On Tue, 19 Nov 2024 at 21:26, Cédric Le Goater <clg@redhat.com> wrote: > > The following changes since commit e6459afb1ff4d86b361b14f4a2fc43f0d2b4d679: > > Merge tag 'pull-target-arm-20241119' of https://git.linaro.org/people/pmaydell/qemu-arm into staging (2024-11-19 14:23:34 +0000) > > are available in the Git repository at: > > https://github.com/legoater/qemu/ tags/pull-aspeed-20241119 > > for you to fetch changes up to 9b0a36494a477541b543fa689c635cf4912fa641: > > docs: aspeed: Reorganize the "Boot options" section (2024-11-19 19:12:12 +0100) > > ---------------------------------------------------------------- > aspeed queue: > > * Restructured the "Boot options" section in the aspeed documentation > > ---------------------------------------------------------------- Applied, thanks. Please update the changelog at https://wiki.qemu.org/ChangeLog/9.2 for any user-visible changes. -- PMM ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-07-28 11:41 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-07-27 5:36 [PULL 0/1] aspeed queue Cédric Le Goater 2026-07-27 5:36 ` [PULL 1/1] tests/functional/aspeed: Fix remaining hostname-specific login prompts Cédric Le Goater 2026-07-28 11:41 ` [PULL 0/1] aspeed queue Stefan Hajnoczi -- strict thread matches above, loose matches on Subject: below -- 2026-07-27 5:35 Cédric Le Goater 2024-11-19 21:24 Cédric Le Goater 2024-11-20 12:09 ` Peter Maydell
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.