diff options
| author | Thomas Huth <thuth@redhat.com> | 2025-04-14 13:30:20 +0200 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2025-04-23 07:51:25 +0200 |
| commit | 42a87f0ce7aaf1923a610cabe4d65f7b1ce9a327 (patch) | |
| tree | c29ee09ca9e936cc6799a416864646cfc2b71752 /tests/avocado/linux_ssh_mips_malta.py | |
| parent | 574f71bc1f22640d45a90969805eaaacd38bf859 (diff) | |
| download | focaccia-qemu-42a87f0ce7aaf1923a610cabe4d65f7b1ce9a327.tar.gz focaccia-qemu-42a87f0ce7aaf1923a610cabe4d65f7b1ce9a327.zip | |
tests/functional: Convert the 32-bit big endian Wheezy mips test
The test checks some entries in /proc and the output of some commands ... we put these checks into exportable functions now so that they can be reused more easily. Additionally the linux_ssh_mips_malta.py uses SSH to test the networking of the guest. Since we don't have a SSH module in the functional framework yet, let's use the check_http_download() function here instead. And while we're at it, also switch the NIC to e1000 now to get some more test coverage, since the "pcnet" device is already tested in the test test_mips_malta_cpio. Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Message-ID: <20250414113031.151105-7-thuth@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/avocado/linux_ssh_mips_malta.py')
| -rw-r--r-- | tests/avocado/linux_ssh_mips_malta.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/avocado/linux_ssh_mips_malta.py b/tests/avocado/linux_ssh_mips_malta.py index d9bb525ad9..73d294ad5c 100644 --- a/tests/avocado/linux_ssh_mips_malta.py +++ b/tests/avocado/linux_ssh_mips_malta.py @@ -172,14 +172,6 @@ class LinuxSSH(QemuSystemTest, LinuxSSHMixIn): # Wait for VM to shut down gracefully self.vm.wait() - def test_mips_malta32eb_kernel3_2_0(self): - """ - :avocado: tags=arch:mips - :avocado: tags=endian:big - :avocado: tags=device:pcnet32 - """ - self.check_mips_malta('mips', 'be') - def test_mips_malta32el_kernel3_2_0(self): """ :avocado: tags=arch:mipsel |