summaryrefslogtreecommitdiff
path: root/tests/testing/tests.py
diff options
context:
space:
mode:
authorAndreas Sandberg <andreas.sandberg@arm.com>2016-06-20 14:50:34 +0100
committerAndreas Sandberg <andreas.sandberg@arm.com>2016-06-20 14:50:34 +0100
commit96b74fd31bc83836feb1006f25673b91729a1f13 (patch)
tree0cf79dc4e2b914d1eebe4a8275a637d4eb01de5f /tests/testing/tests.py
parentddfc4c459358956cb02790626478835572839c2e (diff)
downloadgem5-96b74fd31bc83836feb1006f25673b91729a1f13.tar.xz
tests: Split test results into running and verification
The test base class already assumes that test cases consists of a run stage and a verification stage. Reflect this in the results class to make it possible to detect cases where a run was successful, but didn't verify. Change-Id: I31ef393e496671221c5408aca41649cd8dda74ca Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com> Reviewed-by: Curtis Dunham <curtis.dunham@arm.com>
Diffstat (limited to 'tests/testing/tests.py')
-rw-r--r--tests/testing/tests.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/testing/tests.py b/tests/testing/tests.py
index ae15d6d89..b2b821fd6 100644
--- a/tests/testing/tests.py
+++ b/tests/testing/tests.py
@@ -213,7 +213,9 @@ class Test(object):
for u in self.verify_units()
]
- return TestResult(self.test_name, run_results + verify_results)
+ return TestResult(self.test_name,
+ run_results=run_results,
+ verify_results=verify_results)
def __str__(self):
return self.test_name