summaryrefslogtreecommitdiff
path: root/executor/xeTestResultParser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'executor/xeTestResultParser.cpp')
-rw-r--r--executor/xeTestResultParser.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/executor/xeTestResultParser.cpp b/executor/xeTestResultParser.cpp
index 2f3160155..6d4240367 100644
--- a/executor/xeTestResultParser.cpp
+++ b/executor/xeTestResultParser.cpp
@@ -467,8 +467,9 @@ void TestResultParser::handleElementStart (void)
m_logVersion = getTestLogVersion(version);
// \note Currently assumed that all known log versions are supported.
- m_result->casePath = getAttribute("CasePath");
- m_result->caseType = TESTCASETYPE_SELF_VALIDATE;
+ m_result->caseVersion = version;
+ m_result->casePath = getAttribute("CasePath");
+ m_result->caseType = TESTCASETYPE_SELF_VALIDATE;
if (m_xmlParser.hasAttribute("CaseType"))
m_result->caseType = getTestCaseType(m_xmlParser.getAttribute("CaseType"));