[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 09/18] tests/avocado/machine_aspeed: Fix the broken ast2[56]00_evb
From: |
Alex Bennée |
Subject: |
[PULL 09/18] tests/avocado/machine_aspeed: Fix the broken ast2[56]00_evb_sdk tests |
Date: |
Thu, 27 Apr 2023 16:45:01 +0100 |
From: Thomas Huth <thuth@redhat.com>
test_arm_ast2500_evb_sdk and test_arm_ast2600_evb_sdk are currently
failing. The problem is that they are trying to look for the login
prompt that does not have a newline at the end - but the logic in
_console_interaction() only handles full lines. It used to work by
accident in the past since there were sometimes kernel (warning and
error) messages popping up that finally provided a newline character
in the output, but since the tests have been changed to run with the
"quiet" kernel parameter, this is not working anymore.
To make this work reliably, we must not look for the "login:" prompt,
but have to use some text ending with a newline instead. And in the
ast2600 test, switch to ssh instead of trying to log into the serial
console - this works much more reliable and also has the benefit of
excercising the network interface here a little bit, too.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Message-Id: <20230421110345.1294131-3-thuth@redhat.com>
[AJB: remove stray debug log]
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20230424092249.58552-10-alex.bennee@linaro.org>
diff --git a/tests/avocado/machine_aspeed.py b/tests/avocado/machine_aspeed.py
index 2b532c4834..724ee72c02 100644
--- a/tests/avocado/machine_aspeed.py
+++ b/tests/avocado/machine_aspeed.py
@@ -10,6 +10,7 @@
import tempfile
import subprocess
+from avocado_qemu import LinuxSSHMixIn
from avocado_qemu import QemuSystemTest
from avocado_qemu import wait_for_console_pattern
from avocado_qemu import exec_command
@@ -268,7 +269,7 @@ def test_arm_ast2600_evb_buildroot_tpm(self):
self.do_test_arm_aspeed_buildroot_poweroff()
-class AST2x00MachineSDK(QemuSystemTest):
+class AST2x00MachineSDK(QemuSystemTest, LinuxSSHMixIn):
EXTRA_BOOTARGS = (
'quiet '
@@ -295,7 +296,7 @@ def do_test_arm_aspeed_sdk_start(self, image):
self.require_netdev('user')
self.vm.set_console()
self.vm.add_args('-drive', 'file=' + image + ',if=mtd,format=raw',
- '-net', 'nic', '-net', 'user')
+ '-net', 'nic', '-net',
'user,hostfwd=:127.0.0.1:0-:22')
self.vm.launch()
self.wait_for_console_pattern('U-Boot 2019.04')
@@ -323,7 +324,7 @@ def test_arm_ast2500_evb_sdk(self):
self.do_test_arm_aspeed_sdk_start(
self.workdir + '/ast2500-default/image-bmc')
- self.wait_for_console_pattern('ast2500-default login:')
+ self.wait_for_console_pattern('nodistro.0 ast2500-default ttyS4')
@skipIf(os.getenv('GITLAB_CI'), 'Running on GitLab')
def test_arm_ast2600_evb_sdk(self):
@@ -345,22 +346,25 @@ def test_arm_ast2600_evb_sdk(self):
'ds1338,bus=aspeed.i2c.bus.5,address=0x32');
self.do_test_arm_aspeed_sdk_start(
self.workdir + '/ast2600-default/image-bmc')
- self.wait_for_console_pattern('ast2600-default login:')
- exec_command_and_wait_for_pattern(self, 'root', 'Password:')
- exec_command_and_wait_for_pattern(self, '0penBmc',
'root@ast2600-default:~#')
+ self.wait_for_console_pattern('nodistro.0 ast2600-default ttyS4')
- exec_command_and_wait_for_pattern(self,
- 'echo lm75 0x4d > /sys/class/i2c-dev/i2c-5/device/new_device',
+ self.ssh_connect('root', '0penBmc', False)
+ self.ssh_command('dmesg -c > /dev/null')
+
+ self.ssh_command_output_contains(
+ 'echo lm75 0x4d > /sys/class/i2c-dev/i2c-5/device/new_device ; '
+ 'dmesg -c',
'i2c i2c-5: new_device: Instantiated device lm75 at 0x4d');
- exec_command_and_wait_for_pattern(self,
+ self.ssh_command_output_contains(
'cat /sys/class/hwmon/hwmon19/temp1_input', '0')
self.vm.command('qom-set', path='/machine/peripheral/tmp-test',
property='temperature', value=18000);
- exec_command_and_wait_for_pattern(self,
+ self.ssh_command_output_contains(
'cat /sys/class/hwmon/hwmon19/temp1_input',
'18000')
- exec_command_and_wait_for_pattern(self,
- 'echo ds1307 0x32 > /sys/class/i2c-dev/i2c-5/device/new_device',
+ self.ssh_command_output_contains(
+ 'echo ds1307 0x32 > /sys/class/i2c-dev/i2c-5/device/new_device ; '
+ 'dmesg -c',
'i2c i2c-5: new_device: Instantiated device ds1307 at 0x32');
year = time.strftime("%Y")
- exec_command_and_wait_for_pattern(self, 'hwclock -f /dev/rtc1', year);
+ self.ssh_command_output_contains('/sbin/hwclock -f /dev/rtc1', year);
--
2.39.2
- [PULL 02/18] tests/avocado: use the new snapshots for testing, (continued)
- [PULL 02/18] tests/avocado: use the new snapshots for testing, Alex Bennée, 2023/04/27
- [PULL 03/18] tests/avocado: Add set of boot tests on SBSA-ref, Alex Bennée, 2023/04/27
- [PULL 07/18] .gitlab-ci.d/cirrus: Drop the CI job for compiling with FreeBSD 12, Alex Bennée, 2023/04/27
- [PULL 11/18] avocado_qemu/__init__.py: factor out the qemu-img finding, Alex Bennée, 2023/04/27
- [PULL 10/18] MAINTAINERS: Cover tests/avocado/machine_aspeed.py, Alex Bennée, 2023/04/27
- [PULL 05/18] scripts/device-crash-test: Add a parameter to run with TCG only, Alex Bennée, 2023/04/27
- [PULL 08/18] tests/avocado: Make ssh_command_output_contains() globally available, Alex Bennée, 2023/04/27
- [PULL 12/18] tests/avocado/tuxrun_baselines.py: improve code coverage for ppc64, Alex Bennée, 2023/04/27
- [PULL 13/18] tests/tcg: limit the scope of the plugin tests, Alex Bennée, 2023/04/27
- [PULL 14/18] qemu-options.hx: Update descriptions of memory options for NUMA node, Alex Bennée, 2023/04/27
- [PULL 09/18] tests/avocado/machine_aspeed: Fix the broken ast2[56]00_evb_sdk tests,
Alex Bennée <=
- [PULL 16/18] docs/devel: make a statement about includes, Alex Bennée, 2023/04/27
- [PULL 15/18] docs/system: remove excessive punctuation from guest-loader docs, Alex Bennée, 2023/04/27
- [PULL 18/18] docs/style: call out the use of GUARD macros, Alex Bennée, 2023/04/27
- [PULL 17/18] docs/devel: mention the spacing requirement for QOM, Alex Bennée, 2023/04/27
- Re: [PULL 00/18] testing and doc updates, Richard Henderson, 2023/04/28