installed some limited self test capabilities so that the hash tables

can be verified during regression testing
This commit is contained in:
Jeff Hill
2001-06-28 22:12:54 +00:00
parent 22abff43bf
commit 69545bc772
6 changed files with 59 additions and 18 deletions

View File

@@ -1748,3 +1748,12 @@ void cac::decrementOutstandingIO ( unsigned sequenceNo )
this->ioDone.signal ();
}
}
void cac::selfTest ()
{
this->chanTable.verify ();
this->ioTable.verify ();
this->sgTable.verify ();
this->beaconTable.verify ();
}