summaryrefslogtreecommitdiffstats
path: root/src/include/usr/cxxtest/TestSuite.H
diff options
context:
space:
mode:
authorPatrick Williams <iawillia@us.ibm.com>2013-07-16 15:29:15 -0500
committerA. Patrick Williams III <iawillia@us.ibm.com>2013-09-17 16:45:31 -0500
commit5652d7c0c6a8db05699f2b4334e4615e1ba22127 (patch)
treea04321010213943bc44a908a0de0e88149a7e7de /src/include/usr/cxxtest/TestSuite.H
parent7c3226b7ef2b3e09bd40823732f05fbf0fe6778f (diff)
downloadtalos-hostboot-5652d7c0c6a8db05699f2b4334e4615e1ba22127.tar.gz
talos-hostboot-5652d7c0c6a8db05699f2b4334e4615e1ba22127.zip
Initial Hostboot Runtime image support.
RTC: 76675 Change-Id: Ibd21cf5b555e6dcee182a2f1a292b47d4f384ba0 Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/6127 Tested-by: Jenkins Server Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/usr/cxxtest/TestSuite.H')
-rwxr-xr-xsrc/include/usr/cxxtest/TestSuite.H22
1 files changed, 21 insertions, 1 deletions
diff --git a/src/include/usr/cxxtest/TestSuite.H b/src/include/usr/cxxtest/TestSuite.H
index cfeb76be0..af6b03b50 100755
--- a/src/include/usr/cxxtest/TestSuite.H
+++ b/src/include/usr/cxxtest/TestSuite.H
@@ -5,7 +5,7 @@
/* */
/* IBM CONFIDENTIAL */
/* */
-/* COPYRIGHT International Business Machines Corp. 2011,2012 */
+/* COPYRIGHT International Business Machines Corp. 2011,2013 */
/* */
/* p1 */
/* */
@@ -110,6 +110,26 @@ extern uint64_t g_ModulesCompleted;
#define TS_FAIL(...) TRACFCOMP( g_trac_test, "!!!TS_FAIL> " __VA_ARGS__); \
CxxTest::doFailTest( __FILE__, __LINE__ )
+// These are all implemented in the cxxtest_data.C that gets put into the base
+// image.
+extern uint64_t g_TotalTests;
+extern uint64_t g_TraceCalls;
+extern uint64_t g_Warnings;
+extern uint64_t g_FailedTests;
+extern uint64_t g_ModulesStarted;
+extern uint64_t g_ModulesCompleted;
+
+// Statistics structure for passing original pointers to the runtime test suite.
+struct CxxTestStats
+{
+ uint64_t* totalTests;
+ uint64_t* traceCalls;
+ uint64_t* warnings;
+ uint64_t* failedTests;
+ uint64_t* modulesStarted;
+ uint64_t* modulesCompleted;
+};
+
}
#endif // __cxxtest__TestSuite_h__
OpenPOWER on IntegriCloud