From 0b1265b850471397d413b80c94e5e48cf38b637b Mon Sep 17 00:00:00 2001 From: Morgan Richomme Date: Fri, 11 Aug 2017 14:22:27 +0200 Subject: [PATCH] Bug fix: generate fuel reporting page when no aarch64 available In fuel we may deal with x86 or aarch64 architecture We generate dedicated reporting page - fuel@x86 - fuel@aarch64 However when there is no results for one of the architecture the test on the number of architecture lead to a bug Change-Id: I9906bd6078c8493587dc667eb23399a1e8311e77 Signed-off-by: Morgan Richomme --- utils/test/reporting/reporting/functest/reporting-status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/test/reporting/reporting/functest/reporting-status.py b/utils/test/reporting/reporting/functest/reporting-status.py index 48c4bb1c7..c7c2051a3 100755 --- a/utils/test/reporting/reporting/functest/reporting-status.py +++ b/utils/test/reporting/reporting/functest/reporting-status.py @@ -126,7 +126,7 @@ for version in versions: # in case of more than 1 architecture supported # precise the architecture installer_display = installer - if (len(architectures) > 1): + if "fuel" in installer: installer_display = installer + "@" + architecture # For all the scenarios get results -- 2.16.6