diff options
| author | Mark Wenning <wenning@us.ibm.com> | 2011-10-26 14:59:32 -0500 |
|---|---|---|
| committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2011-10-31 17:45:22 -0500 |
| commit | 80614655c4e9842e00d13ed0ad30fa23b3402f62 (patch) | |
| tree | dc791ab5e3545a583b58ce35a4783c6da82b0745 /src/include/usr/cxxtest | |
| parent | 3705371bbe5e0f37a7e1db63e30094253d6783dc (diff) | |
| download | talos-hostboot-80614655c4e9842e00d13ed0ad30fa23b3402f62.tar.gz talos-hostboot-80614655c4e9842e00d13ed0ad30fa23b3402f62.zip | |
TS_TRACE should display all the time
- TS_TRACE will be turned on using the new HOSTBOOT-DEBUG options
- enable TS_WARN all the time though
Change-Id: Ibe402cdeb66cd6bc7ccde242003ae76ec4d022ea
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/461
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/usr/cxxtest')
| -rwxr-xr-x | src/include/usr/cxxtest/TestSuite.H | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/usr/cxxtest/TestSuite.H b/src/include/usr/cxxtest/TestSuite.H index e62141093..f802a0ab5 100755 --- a/src/include/usr/cxxtest/TestSuite.H +++ b/src/include/usr/cxxtest/TestSuite.H @@ -96,17 +96,17 @@ extern uint64_t g_ModulesCompleted; #define _TS_CATCH_ABORT(b) // TS_TRACE -#define TS_TRACE(...) TRACDCOMP( g_trac_test, "TS_TRACE> "__VA_ARGS__ ); \ +#define TS_TRACE(...) TRACDCOMP( g_trac_test, "TS_TRACE> "__VA_ARGS__ ); \ CxxTest::doTrace( ) // TS_WARN -#define TS_WARN(...) TRACDCOMP( g_trac_test, "!TS_WARN> " __VA_ARGS__ ); \ +#define TS_WARN(...) TRACFCOMP( g_trac_test, "!TS_WARN> " __VA_ARGS__ ); \ CxxTest::doWarn( ) // TS_FAIL -#define TS_FAIL(...) TRACFCOMP( g_trac_test, "!!!TS_FAIL> " __VA_ARGS__); \ +#define TS_FAIL(...) TRACFCOMP( g_trac_test, "!!!TS_FAIL> " __VA_ARGS__); \ CxxTest::doFailTest( __FILE__, __LINE__ ) } |

