--- a/kerneltest/f32test/server/t_sysbin.cpp Thu Jul 15 20:11:42 2010 +0300
+++ b/kerneltest/f32test/server/t_sysbin.cpp Thu Aug 19 11:14:22 2010 +0300
@@ -344,6 +344,14 @@
test.End();
+ // All files on the emulator's Z: drive have the KEntryAttReadOnly flag set
+ // This flag will have been copied to the C: drive, so we need to remove this before calling CFileMan::RmDir()
+#ifdef __WINS__
+ r = TheFs.SetAtt(KDllCInCTest, 0, KEntryAttReadOnly);
+ test_KErrNone(r);
+#endif
+
+
_LIT(KCTestPath,"c:\\sysbin_test\\");
r = TheFileMan->RmDir(KCTestPath);
test_KErrNone(r);
@@ -381,6 +389,14 @@
test.End();
+ // All files on the emulator's Z: drive have the KEntryAttReadOnly flag set
+ // This flag will have been copied to the C: drive, so we need to remove this before calling CFileMan::RmDir()
+#ifdef __WINS__
+ r = TheFs.SetAtt(KDllDInCSysBinTest, 0, KEntryAttReadOnly);
+ test_KErrNone(r);
+#endif
+
+
_LIT(KCTestPath2,"c:\\sys\\bin\\test\\");
r = TheFileMan->RmDir(KCTestPath2);
test_KErrNone(r);