diff options
author | Nick Bofferding <bofferdn@us.ibm.com> | 2012-04-26 22:11:31 -0500 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2012-04-27 12:38:41 -0500 |
commit | f373d5d3ed00d94202f2b32d75f1066ff4727938 (patch) | |
tree | 56c8398cf8ca0913cb7307bb2da9d0d39b0c8620 /src/usr | |
parent | 9f369593f40c2cb0b15f5e2ea73106db91b844a3 (diff) | |
download | talos-hostboot-f373d5d3ed00d94202f2b32d75f1066ff4727938.tar.gz talos-hostboot-f373d5d3ed00d94202f2b32d75f1066ff4727938.zip |
Fix prdfTest.H regression
- Fixed prdfTest.H regressiong introduced with commit
4157b5631a1bbfcc7f9f95480b54e9ade7abce7d which causes compile failures in debug
mode
Change-Id: I6d6156f9ebb6d01f1ce3b3c89ed12b0754035998
RTC: 35569
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/951
Tested-by: Jenkins Server
Reviewed-by: Brian H. Horton <brianh@linux.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr')
-rw-r--r-- | src/usr/diag/prdf/test/prdfTest.H | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/usr/diag/prdf/test/prdfTest.H b/src/usr/diag/prdf/test/prdfTest.H index 9ae5b5a46..8d8166ff2 100644 --- a/src/usr/diag/prdf/test/prdfTest.H +++ b/src/usr/diag/prdf/test/prdfTest.H @@ -43,9 +43,9 @@ class prdfTest: public CxxTest::TestSuite void testTrace(void) { - TS_TRACE(ENTER_MRK __FUNCTION__); + TS_TRACE(ENTER_MRK "testTrace()"); - PRDF_ENTER( "%s", __FUNCTION__ ); + PRDF_ENTER( "testTrace()" ); const char * l_testStr = "running testTrace"; uint64_t l_testHex = 0xDEADBEEF; @@ -58,21 +58,21 @@ class prdfTest: public CxxTest::TestSuite PRDF_ERR( "testTrace() Please ignore this error trace 0x%08X", l_testHex ); - PRDF_EXIT( "%s", __FUNCTION__ ); - PRDF_DENTER( "testTrace()" ); PRDF_DINF( "testTrace() running testTrace" ); PRDF_DEXIT( "testTrace()" ); - TS_TRACE(EXIT_MRK __FUNCTION__); + PRDF_EXIT( "testTrace()" ); + + TS_TRACE(EXIT_MRK "testTrace()"); } void testPrdInitialize(void) { using namespace PRDF; - TS_TRACE(ENTER_MRK __FUNCTION__); + TS_TRACE(ENTER_MRK "testPrdInitialize()"); PRDF_ENTER( "testPrdInitialize()" ); errlHndl_t l_pErr = NULL; @@ -91,13 +91,13 @@ class prdfTest: public CxxTest::TestSuite } PRDF_EXIT( "testPrdInitialize()" ); - TS_TRACE(EXIT_MRK __FUNCTION__); + TS_TRACE(EXIT_MRK "testPrdInitialize()"); } void testPrdMain(void) { using namespace PRDF; - TS_TRACE(ENTER_MRK __FUNCTION__); + TS_TRACE(ENTER_MRK "testPrdMain()"); PRDF_ENTER( "testPrdMain()" ); errlHndl_t l_pErr = NULL; @@ -116,19 +116,19 @@ class prdfTest: public CxxTest::TestSuite } PRDF_EXIT( "testPrdMain()" ); - TS_TRACE(EXIT_MRK __FUNCTION__); + TS_TRACE(EXIT_MRK "testPrdMain()"); } void testPrdIplCleanup(void) { using namespace PRDF; - TS_TRACE(ENTER_MRK __FUNCTION__); + TS_TRACE(ENTER_MRK "testPrdIplCleanup()"); PRDF_ENTER( "testPrdIplCleanup()" ); PrdIplCleanup(); PRDF_EXIT( "testPrdIplCleanup()" ); - TS_TRACE(EXIT_MRK __FUNCTION__); + TS_TRACE(EXIT_MRK "testPrdIplCleanup()"); } }; |