Modified check db test to allow a block size of 4096

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@955 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
dsandersoremutah
2006-10-03 22:39:43 +00:00
parent efcceb5a83
commit 304e05baea

View File

@@ -118,7 +118,7 @@ namespace cstest
System.Console.WriteLine( "Invalid signature in database header");
return( false);
}
if (dbHdr.ui16BlockSize != 8192)
if (dbHdr.ui16BlockSize != 8192 && dbHdr.ui16BlockSize != 4096)
{
endTest( true, false);
System.Console.WriteLine( "Invalid block size in database header");