|
@@ -108,38 +108,3 @@ def test_i386_pc(self):
|
|
console_pattern = 'VFS: Cannot open root device'
|
|
console_pattern = 'VFS: Cannot open root device'
|
|
|
|
|
|
self.run_rr(kernel_path, kernel_command_line, console_pattern, shift=5)
|
|
self.run_rr(kernel_path, kernel_command_line, console_pattern, shift=5)
|
|
-
|
|
|
|
- # See https://gitlab.com/qemu-project/qemu/-/issues/2094
|
|
|
|
- @skipUnless(os.getenv('QEMU_TEST_FLAKY_TESTS'), 'pc machine is unstable with replay')
|
|
|
|
- def test_x86_64_pc(self):
|
|
|
|
- """
|
|
|
|
- :avocado: tags=arch:x86_64
|
|
|
|
- :avocado: tags=machine:pc
|
|
|
|
- :avocado: tags=flaky
|
|
|
|
- """
|
|
|
|
- kernel_url = ('https://archives.fedoraproject.org/pub/archive/fedora'
|
|
|
|
- '/linux/releases/29/Everything/x86_64/os/images/pxeboot'
|
|
|
|
- '/vmlinuz')
|
|
|
|
- kernel_hash = '23bebd2680757891cf7adedb033532163a792495'
|
|
|
|
- kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
|
|
|
|
-
|
|
|
|
- kernel_command_line = self.KERNEL_COMMON_COMMAND_LINE + 'console=ttyS0'
|
|
|
|
- console_pattern = 'VFS: Cannot open root device'
|
|
|
|
-
|
|
|
|
- self.run_rr(kernel_path, kernel_command_line, console_pattern, shift=5)
|
|
|
|
-
|
|
|
|
- def test_x86_64_q35(self):
|
|
|
|
- """
|
|
|
|
- :avocado: tags=arch:x86_64
|
|
|
|
- :avocado: tags=machine:q35
|
|
|
|
- """
|
|
|
|
- kernel_url = ('https://archives.fedoraproject.org/pub/archive/fedora'
|
|
|
|
- '/linux/releases/29/Everything/x86_64/os/images/pxeboot'
|
|
|
|
- '/vmlinuz')
|
|
|
|
- kernel_hash = '23bebd2680757891cf7adedb033532163a792495'
|
|
|
|
- kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
|
|
|
|
-
|
|
|
|
- kernel_command_line = self.KERNEL_COMMON_COMMAND_LINE + 'console=ttyS0'
|
|
|
|
- console_pattern = 'VFS: Cannot open root device'
|
|
|
|
-
|
|
|
|
- self.run_rr(kernel_path, kernel_command_line, console_pattern, shift=5)
|
|
|