diff -r a232af6b0b1f -r a5496987b1da kerneltest/f32test/fsstress/t_sesfs.cpp --- a/kerneltest/f32test/fsstress/t_sesfs.cpp Wed Jun 23 12:58:21 2010 +0100 +++ b/kerneltest/f32test/fsstress/t_sesfs.cpp Thu Jul 01 17:57:33 2010 +0100 @@ -262,20 +262,24 @@ test(w.iDrive.iDriveAtt==KDriveAttSubsted); test(w.iDrive.iMediaAtt==v.iDrive.iMediaAtt); test(w.iUniqueID==v.iUniqueID); - test(w.iSize==v.iSize); -// If this test is being run under windows using drive C then skip free space comparison -// as it is likely to fail as the windows file system is unlike to have static freespace + if(v.iDrive.iType != EMediaRam) // We can't assume that RAM disk will be the same size since last recorded... + { + test(w.iSize==v.iSize); + + // If this test is being run under windows using drive C then skip free space comparison + // as it is likely to fail as the windows file system is unlike to have static freespace #ifdef __WINS__ - if(User::UpperCase(gTestSessionPath[0]) != 'C') - { + if(User::UpperCase(gTestSessionPath[0]) != 'C') + { #endif - test(w.iFree==v.iFree); + test(w.iFree==v.iFree); #ifdef __WINS__ - } + } #endif - + } + test(w.iName==v.iName); TDriveList driveList; r=iFs.DriveList(driveList);