From cf269f7e00e91a4a25b2138ec01f1c22d5b920d8 Mon Sep 17 00:00:00 2001 From: Morgan Richomme Date: Fri, 11 Aug 2017 14:22:27 +0200 Subject: 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 --- reporting/reporting/functest/reporting-status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'reporting') diff --git a/reporting/reporting/functest/reporting-status.py b/reporting/reporting/functest/reporting-status.py index 48c4bb1..c7c2051 100755 --- a/reporting/reporting/functest/reporting-status.py +++ b/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 -- cgit 1.2.3-korg