commit | ed56e09b004d0e4300467b051b5ec748a735b615 | [log] [tgz] |
---|---|---|
author | Pyry Haulos <phaulos@google.com> | Thu Mar 26 09:15:03 2015 -0700 |
committer | Pyry Haulos <phaulos@google.com> | Thu Mar 26 17:54:58 2015 +0000 |
tree | 5e531dd641fb8f0d290becdbb8b4f8deffe7b7e6 | |
parent | e5e2639371f4a3916f0506b138ec04f26db19dce [diff] |
Fix test session completion status tcu::TestSessionExecutor failed to mark test run as completed, which made tcu::App to always report run as aborted. This change fixes this issue. Change-Id: Ifa70442ce9578e9d58db51ecd4557f2cb575d9af
diff --git a/framework/common/tcuTestSessionExecutor.cpp b/framework/common/tcuTestSessionExecutor.cpp index 630f22c..ce0a009 100644 --- a/framework/common/tcuTestSessionExecutor.cpp +++ b/framework/common/tcuTestSessionExecutor.cpp
@@ -119,6 +119,7 @@ else { DE_ASSERT(hierIterState == TestHierarchyIterator::STATE_FINISHED); + m_status.isComplete = true; return false; } }