More debug robot work. I added some statistic gathering information

as well as hooking up the context vector validation stuff.  The
debug robot now makes two files in the root verification directory
for mapping context vector to debug source dumps as well as occurance
tracking of good and bad context vectors.


git-svn-id: svn://10.0.0.236/trunk@3701 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jevering
1998-06-12 01:34:49 +00:00
parent ce8a77d383
commit b44966774c
16 changed files with 1654 additions and 68 deletions

View File

@@ -842,8 +842,12 @@ PRInt32 CNavDTD::GetDefaultParentTagFor(PRInt32 aTag) const{
PRBool CNavDTD::VerifyContextVector(PRInt32* aVector,PRInt32 aCount) const {
PRBool result=PR_TRUE;
if(aCount>0) {
if(aCount>1) {
for (int i = 0; i < aCount-1; i++)
if (!CanContain(aVector[i],aVector[i+1])) {
result = PR_FALSE;
break;
}
}
return result;
}