summaryrefslogtreecommitdiffstats
path: root/src/usr/cxxtest/cxxtestexec.C
diff options
context:
space:
mode:
authorMark Wenning <wenning@us.ibm.com>2011-10-03 15:10:32 -0500
committerMark W. Wenning <wenning@us.ibm.com>2011-10-06 18:45:15 -0500
commit5f0e665d50726bbd1617259b583d56bef67cd87f (patch)
tree6e667066189a1b2ce01d9e420d0028902f925b8b /src/usr/cxxtest/cxxtestexec.C
parent7c7734c033bed0a453623afa980d38efd791c9a2 (diff)
downloadblackbird-hostboot-5f0e665d50726bbd1617259b583d56bef67cd87f.tar.gz
blackbird-hostboot-5f0e665d50726bbd1617259b583d56bef67cd87f.zip
Fixes to cxxtest, + add debug for trace
- cxxtestgen.pl was counting the tests wrong (did not reset # tests between suites) - to be continued... Change-Id: Ic060bcaf38dee39a620b3bef7c651851547442dc Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/423 Tested-by: Jenkins Server Reviewed-by: Andrew J. Geissler <andrewg@us.ibm.com>
Diffstat (limited to 'src/usr/cxxtest/cxxtestexec.C')
-rw-r--r--src/usr/cxxtest/cxxtestexec.C8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/usr/cxxtest/cxxtestexec.C b/src/usr/cxxtest/cxxtestexec.C
index a120ed6eb..58540c3ff 100644
--- a/src/usr/cxxtest/cxxtestexec.C
+++ b/src/usr/cxxtest/cxxtestexec.C
@@ -70,9 +70,13 @@ void _start(void *io_pArgs)
TaskArgs::TaskArgs *pTaskArgs =
reinterpret_cast<TaskArgs::TaskArgs *>(io_pArgs);
+ // output a blank line so that it's easier to find the beginning of
+ // CxxTest
+ TRACDCOMP( g_trac_cxxtest, " ");
+ TRACDCOMP( g_trac_cxxtest, " ");
// count up the number of viable modules ahead of time
- TRACDCOMP( g_trac_cxxtest, "Counting CxxTextExec modules:" );
+ TRACDCOMP( g_trac_cxxtest, "Counting CxxTestExec modules:" );
VFS::find_test_modules(module_list);
@@ -80,8 +84,10 @@ void _start(void *io_pArgs)
// start executing the CxxTest modules
+
TRACDCOMP( g_trac_cxxtest, ENTER_MRK "Execute CxxTestExec, totalmodules=%d.",
totalmodules);
+ printkd( "\n Begin CxxTest...\n");
// set barrier for all the modules being started, plus this module
barrier_init( &CxxTest::g_CxxTestBarrier, totalmodules+1 );
OpenPOWER on IntegriCloud