--- a/kerneltest/f32test/server/t_sysbin.cpp Fri Aug 06 16:34:38 2010 +0100
+++ b/kerneltest/f32test/server/t_sysbin.cpp Thu Aug 12 11:55:14 2010 +0100
@@ -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);