When comparing two test results the current behavior sets a status of skip for tests that were not run in one set of results. This is confusing and silly, so instead give them a status of N/A which gives a clear understanding of what skipped, and what simply didn't run either by exclusion or because it didn't exist yet.
Signed-off-by: Dylan Baker <[email protected]> --- framework/summary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/summary.py b/framework/summary.py index 6780458..0702319 100644 --- a/framework/summary.py +++ b/framework/summary.py @@ -417,7 +417,7 @@ class BuildHTMLIndex(list): self._testResult(each.name, key, each.tests[key]['result']) except KeyError: self.append({'type': 'other', - 'text': '<td class="skip">skip</td>'}) + 'text': '<td class="skip">N/A</td>'}) self._endRow() def _newRow(self): -- 1.8.1.4 _______________________________________________ Piglit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/piglit
