summaryrefslogtreecommitdiffstats
path: root/src/usr/runtime/test/runtimeattrstest.H
diff options
context:
space:
mode:
authorDan Crowell <dcrowell@us.ibm.com>2013-02-15 09:59:35 -0600
committerA. Patrick Williams III <iawillia@us.ibm.com>2013-04-03 16:53:06 -0500
commitdb788c8ab715f12958584a9d20a31cef28b64698 (patch)
treee20b3f6b3b1f88a26e9b96a1aa72664cd9f27b67 /src/usr/runtime/test/runtimeattrstest.H
parentad540da587687d36373267ab468584f40e99d14b (diff)
downloadtalos-hostboot-db788c8ab715f12958584a9d20a31cef28b64698.tar.gz
talos-hostboot-db788c8ab715f12958584a9d20a31cef28b64698.zip
Updates to HostServices attribute list
Adding a few more attributes that the HWPs in HostServices need. Also improved the testcases to catch missing attributes. Updated gen script to add missing PM attribute defaults. Change-Id: I99d2c4646492f020fb59f526db5a449d3507939a RTC: 52950 Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/3236 Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com> Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com> Tested-by: Jenkins Server
Diffstat (limited to 'src/usr/runtime/test/runtimeattrstest.H')
-rw-r--r--src/usr/runtime/test/runtimeattrstest.H62
1 files changed, 52 insertions, 10 deletions
diff --git a/src/usr/runtime/test/runtimeattrstest.H b/src/usr/runtime/test/runtimeattrstest.H
index 76ccbac01..7ab4b1592 100644
--- a/src/usr/runtime/test/runtimeattrstest.H
+++ b/src/usr/runtime/test/runtimeattrstest.H
@@ -5,7 +5,7 @@
/* */
/* IBM CONFIDENTIAL */
/* */
-/* COPYRIGHT International Business Machines Corp. 2012 */
+/* COPYRIGHT International Business Machines Corp. 2012,2013 */
/* */
/* p1 */
/* */
@@ -86,19 +86,22 @@ class RuntimeAttrsTest: public CxxTest::TestSuite
{
TS_FAIL("Error getting fapi::ATTR_FREQ_PB");
}
+ bool freq_found = false;
- fapi::ATTR_PROC_R_LOADLINE_Type spivid = 0;
- l_rc = FAPI_ATTR_GET(ATTR_PROC_R_LOADLINE,NULL,spivid);
+ fapi::ATTR_PROC_R_LOADLINE_Type loadline = 0;
+ l_rc = FAPI_ATTR_GET(ATTR_PROC_R_LOADLINE,NULL,loadline);
if( l_rc )
{
TS_FAIL("Error getting fapi::ATTR_PROC_R_LOADLINE");
}
+ bool loadline_found = false;
uint64_t attr = 0;
while( headers[attr].id != hsvc_attr_header_t::NO_ATTRIBUTE )
{
if( headers[attr].id == fapi::ATTR_FREQ_PB )
{
+ freq_found = true;
if( headers[attr].sizeBytes !=
sizeof(fapi::ATTR_FREQ_PB_Type) )
{
@@ -119,6 +122,7 @@ class RuntimeAttrsTest: public CxxTest::TestSuite
}
else if( headers[attr].id == fapi::ATTR_PROC_R_LOADLINE )
{
+ loadline_found = true;
if( headers[attr].sizeBytes !=
sizeof(fapi::ATTR_PROC_R_LOADLINE_Type) )
{
@@ -127,18 +131,18 @@ class RuntimeAttrsTest: public CxxTest::TestSuite
}
else
{
- fapi::ATTR_PROC_R_LOADLINE_Type* spivid_act =
+ fapi::ATTR_PROC_R_LOADLINE_Type* loadline_act =
reinterpret_cast<fapi::ATTR_PROC_R_LOADLINE_Type*>
(beginning+headers[attr].offset);
- if( *spivid_act != spivid )
+ if( *loadline_act != loadline )
{
- TRACFCOMP( g_trac_runtime, "Expected=%X, Actual=%X", spivid, *spivid_act );
+ TRACFCOMP( g_trac_runtime, "Expected=%X, Actual=%X", loadline, *loadline_act );
TS_FAIL("fapi::ATTR_PROC_R_LOADLINE data is wrong");
}
}
}
attr++;
- }
+ }
if( attr != sysdata->numAttr )
{
@@ -146,6 +150,15 @@ class RuntimeAttrsTest: public CxxTest::TestSuite
TS_FAIL("testVerifySystemAttributes> Number of attributes found doesn't match expected value");
}
+ if( !freq_found )
+ {
+ TS_FAIL("Never found FREQ_PB in system attributes");
+ }
+ if( !loadline_found )
+ {
+ TS_FAIL("Never found ATTR_PROC_R_LOADLINE in system attributes");
+ }
+
TRACFCOMP( g_trac_runtime, "testVerifySystemAttributes> finish" );
}
@@ -207,6 +220,7 @@ class RuntimeAttrsTest: public CxxTest::TestSuite
{
TS_FAIL("Error getting fapi::ATTR_CHIP_ID");
}
+ bool tmp1_found = false;
fapi::ATTR_PM_PVSAFE_PSTATE_Type tmp2 = 0;
l_rc = FAPI_ATTR_GET(ATTR_PM_PVSAFE_PSTATE,proc,tmp2);
@@ -214,12 +228,14 @@ class RuntimeAttrsTest: public CxxTest::TestSuite
{
TS_FAIL("Error getting fapi::ATTR_PM_PVSAFE_PSTATE");
}
+ bool tmp2_found = false;
uint64_t attr = 0;
while( headers[attr].id != hsvc_attr_header_t::NO_ATTRIBUTE )
{
if( headers[attr].id == fapi::ATTR_CHIP_ID )
{
+ tmp1_found = true;
if( headers[attr].sizeBytes !=
sizeof(fapi::ATTR_CHIP_ID_Type) )
{
@@ -240,6 +256,7 @@ class RuntimeAttrsTest: public CxxTest::TestSuite
}
else if( headers[attr].id == fapi::ATTR_PM_PVSAFE_PSTATE )
{
+ tmp2_found = true;
if( headers[attr].sizeBytes !=
sizeof(fapi::ATTR_PM_PVSAFE_PSTATE_Type) )
{
@@ -266,6 +283,15 @@ class RuntimeAttrsTest: public CxxTest::TestSuite
TS_FAIL("testVerifyNodeAttributes> Number of attributes found doesn't match expected value");
}
+ if( !tmp1_found )
+ {
+ TS_FAIL("Never found ATTR_PM_PVSAFE_PSTATE for procid=%d",curproc->procid);
+ }
+ if( !tmp2_found )
+ {
+ TS_FAIL("Never found ATTR_PM_PVSAFE_PSTATE for procid=%d",curproc->procid);
+ }
+
delete proc;
curproc++;
}
@@ -304,6 +330,7 @@ class RuntimeAttrsTest: public CxxTest::TestSuite
errlHndl_t errhdl = fapiRcToErrl(l_rc);
errlCommit(errhdl,RUNTIME_COMP_ID);
}
+ bool tmp1_found = false;
fapi::ATTR_FUNCTIONAL_Type tmp2 = 0;
l_rc = FAPI_ATTR_GET(ATTR_FUNCTIONAL,ex,tmp2);
@@ -313,12 +340,14 @@ class RuntimeAttrsTest: public CxxTest::TestSuite
errlHndl_t errhdl = fapiRcToErrl(l_rc);
errlCommit(errhdl,RUNTIME_COMP_ID);
}
+ bool tmp2_found = false;
uint64_t attr = 0;
while( headers[attr].id != hsvc_attr_header_t::NO_ATTRIBUTE )
{
if( headers[attr].id == fapi::ATTR_CHIP_UNIT_POS )
{
+ tmp1_found = true;
if( headers[attr].sizeBytes !=
sizeof(fapi::ATTR_CHIP_UNIT_POS_Type) )
{
@@ -339,6 +368,7 @@ class RuntimeAttrsTest: public CxxTest::TestSuite
}
else if( headers[attr].id == fapi::ATTR_FUNCTIONAL )
{
+ tmp2_found = true;
if( headers[attr].sizeBytes !=
sizeof(fapi::ATTR_FUNCTIONAL_Type) )
{
@@ -365,6 +395,17 @@ class RuntimeAttrsTest: public CxxTest::TestSuite
TS_FAIL("Number of attributes found doesn't match expected value");
}
+ if( !tmp1_found )
+ {
+ TS_FAIL("Never found ATTR_CHIP_UNIT_POS for procid=%d, ex=%d",
+ curproc->procid,curex->chiplet);
+ }
+ if( !tmp2_found )
+ {
+ TS_FAIL("Never found ATTR_FUNCTIONAL for procid=%d, ex=%d",
+ curproc->procid,curex->chiplet);
+ }
+
delete ex;
curex++;
}
@@ -462,9 +503,10 @@ class RuntimeAttrsTest: public CxxTest::TestSuite
uint32_t chiplet = all_ex[e]->getAttr<TARGETING::ATTR_CHIP_UNIT>();
if( chiplet == i_chiplet )
{
- return( new fapi::Target( fapi::TARGET_TYPE_PROC_CHIP,
- reinterpret_cast<void *>
- (const_cast<TARGETING::Target*>(all_ex[e])) ) );
+ return( new fapi::Target(
+ fapi::TARGET_TYPE_PROC_CHIP,
+ reinterpret_cast<void *>
+ (const_cast<TARGETING::Target*>(all_ex[e])) ) );
}
}
return NULL;
OpenPOWER on IntegriCloud