diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2019-09-18 17:06:54 +1000 |
---|---|---|
committer | Cleber Rosa <crosa@redhat.com> | 2019-09-18 21:28:40 -0400 |
commit | ab486ea9f4dc8aa2ecf04afb767da62ed87adfc8 (patch) | |
tree | bbaae0d4ae3848476bf6ddab821f185f6557e2c6 /tests/acceptance | |
parent | f8c3db33a5e863291182f8862ddf81618a7c6194 (diff) |
tests/acceptance: Specify arch for QueryCPUModelExpansion
At the moment this test runs on whatever the host arch is. But it looks
for 'unavailable-features' which is an x86 specific cpu property. Tag it
to always use qemu-system-x86_64.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Cleber Rosa <crosa@redhat.com>
Message-Id: <20190918070654.19356-1-david@gibson.dropbear.id.au>
Signed-off-by: Cleber Rosa <crosa@redhat.com>
Diffstat (limited to 'tests/acceptance')
-rw-r--r-- | tests/acceptance/cpu_queries.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/acceptance/cpu_queries.py b/tests/acceptance/cpu_queries.py index e71edec39f..af47d2795a 100644 --- a/tests/acceptance/cpu_queries.py +++ b/tests/acceptance/cpu_queries.py @@ -18,6 +18,9 @@ class QueryCPUModelExpansion(Test): """ def test(self): + """ + :avocado: tags=arch:x86_64 + """ self.vm.set_machine('none') self.vm.add_args('-S') self.vm.launch() |