Fix for Bug 1312 - F32test t_fsys.exe failed to check ioInfo() of RAM GCC_SURGE
authorandrew.jordan <>
Thu, 29 Jul 2010 11:34:55 +0100
branchGCC_SURGE
changeset 90 73ba398cc7f4
parent 89 077b560f9789
child 93 07b904f40417
Fix for Bug 1312 - F32test t_fsys.exe failed to check ioInfo() of RAM
baseport/syborg/svphostfs/fs/svphostfsy.cpp
--- a/baseport/syborg/svphostfs/fs/svphostfsy.cpp	Thu Jul 22 16:29:43 2010 +0100
+++ b/baseport/syborg/svphostfs/fs/svphostfsy.cpp	Thu Jul 29 11:34:55 2010 +0100
@@ -131,9 +131,14 @@
 	{
 	DP(_L("** (SVPHOSTFSY) CSVPHostFileSystem::DriveInfo()"));
 
-	/* !@! TODO: are these the best values? */
 	anInfo.iMediaAtt=KMediaAttVariableSize;
-	anInfo.iType=EMediaRam;
+//  SF BUG 1313 - T_FSYS fails - start
+// Media type changed from RAM drive to Hard Disk - HOSTFS cannot use FAT file system so various
+// tests fail, but T_FSYS fails on any drive as all available drives are exercised by the test.
+// EMediaHardDisk is more appropriate.
+	anInfo.iType=EMediaHardDisk;  // was EMediaRam;
+// SF BUG 1312 - T_FSYS fails - end	
+
 #if 0
 	// !@! can't execute from remote drives
 	anInfo.iDriveAtt=KDriveAttRemote;