diff -r c1f20ce4abcf -r 3e88ff8f41d5 kerneltest/f32test/fsstress/t_sesfs.cpp --- a/kerneltest/f32test/fsstress/t_sesfs.cpp Tue Aug 31 16:34:26 2010 +0300 +++ b/kerneltest/f32test/fsstress/t_sesfs.cpp Wed Sep 01 12:34:56 2010 +0100 @@ -262,24 +262,20 @@ test(w.iDrive.iDriveAtt==KDriveAttSubsted); test(w.iDrive.iMediaAtt==v.iDrive.iMediaAtt); test(w.iUniqueID==v.iUniqueID); - - 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); + 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 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);