On 5/27/20 12:31 PM, Pavel Dovgalyuk wrote:
> This patch adds a test for record/replay of the kernel
> image boot for aarch64 platform.
>
> Signed-off-by: Pavel Dovgalyuk <Pavel.Dovgaluk@ispras.ru>
> ---
> 0 files changed
>
> diff --git a/tests/acceptance/replay_kernel.py b/tests/acceptance/replay_kernel.py
> index c7526f1aba..deca69d6cb 100644
> --- a/tests/acceptance/replay_kernel.py
> +++ b/tests/acceptance/replay_kernel.py
> @@ -71,3 +71,21 @@ class ReplayKernel(LinuxKernelUtils):
> console_pattern = 'Kernel command line: %s' % kernel_command_line
>
> self.run_rr(kernel_path, kernel_command_line, console_pattern)
> +
> + def test_aarch64_virt(self):
> + """
> + :avocado: tags=arch:aarch64
> + :avocado: tags=machine:virt
> + """
> + kernel_url = ('https://archives.fedoraproject.org/pub/archive/fedora'
> + '/linux/releases/29/Everything/aarch64/os/images/pxeboot'
> + '/vmlinuz')
> + kernel_hash = '8c73e469fc6ea06a58dc83a628fc695b693b8493'
> + kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
> +
> + kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
> + 'console=ttyAMA0')
> + console_pattern = 'Kernel command line: %s' % kernel_command_line
> +
> + self.run_rr(kernel_path, kernel_command_line, console_pattern,
> + args=('-cpu', 'cortex-a53'))
I thought this would be ':avocado: tags=cpu:cortex-a53' consumed by the
base class before starting the machine, but not (yet). Still, please add
the tag (for filtering).
Thanks.