diff options
| author | Wainer dos Santos Moschetta <wainersm@redhat.com> | 2021-04-30 10:34:10 -0300 |
|---|---|---|
| committer | Cleber Rosa <crosa@redhat.com> | 2021-07-13 13:18:51 -0400 |
| commit | d377ba48524781310536d5e97642e4b95a4b62c8 (patch) | |
| tree | 2d666b562f13158260ad8b598501bd9f1c77a192 /tests/acceptance/reverse_debugging.py | |
| parent | 8a7c1fdecb91b6aeb943156a169fd7a160691542 (diff) | |
| download | focaccia-qemu-d377ba48524781310536d5e97642e4b95a4b62c8.tar.gz focaccia-qemu-d377ba48524781310536d5e97642e4b95a4b62c8.zip | |
tests/acceptance: Let the framework handle "cpu:VALUE" tagged tests
The tests that are already tagged with "cpu:VALUE" don't need to add "-cpu VALUE" to the list of arguments of the vm object because the avocado_qemu framework is able to handle it automatically. Reviewed-by: Cleber Rosa <crosa@redhat.com> Tested-by: Cleber Rosa <crosa@redhat.com> Reviewed-by: Willian Rampazzo <willianr@redhat.com> Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com> Message-Id: <20210430133414.39905-4-wainersm@redhat.com> Signed-off-by: Cleber Rosa <crosa@redhat.com>
Diffstat (limited to 'tests/acceptance/reverse_debugging.py')
| -rw-r--r-- | tests/acceptance/reverse_debugging.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/acceptance/reverse_debugging.py b/tests/acceptance/reverse_debugging.py index be01aca217..d2921e70c3 100644 --- a/tests/acceptance/reverse_debugging.py +++ b/tests/acceptance/reverse_debugging.py @@ -207,4 +207,4 @@ class ReverseDebugging_AArch64(ReverseDebugging): kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash) self.reverse_debugging( - args=('-kernel', kernel_path, '-cpu', 'cortex-a53')) + args=('-kernel', kernel_path)) |