kerneltest/f32test/server/t_file.cpp
branchRCL_3
changeset 294 039a3e647356
parent 257 3e88ff8f41d5
--- a/kerneltest/f32test/server/t_file.cpp	Wed Sep 15 13:42:27 2010 +0300
+++ b/kerneltest/f32test/server/t_file.cpp	Wed Oct 13 16:04:24 2010 +0300
@@ -197,13 +197,6 @@
 	r=ZFile.Open(TheFs,fn,EFileStreamText);
 	test(r==KErrNone);
 
-	// check the file on the Z: drive his read-only
-	TEntry fileAtt;
-	r=TheFs.Entry(fn,fileAtt);
-	test_KErrNone(r);
-	test((fileAtt.iAtt & KEntryAttReadOnly) == KEntryAttReadOnly);
-
-
 	test.Next(_L("Read file"));
 	TBuf8<0x100> a,b;
 	FOREVER
@@ -960,44 +953,6 @@
 	test(r==KErrNone);
 	f.Close();
 
-
-	test.Next(_L("Internal attribute can't be read"));
-
-	r=TheFs.SetAtt(fname,0,KEntryAttReadOnly);
-	test_KErrNone(r);
-
-	r=f.Open(TheFs,fname,EFileWrite);
-	test_KErrNone(r);
-
-	r=f.SetAtt(KEntryAttReadOnly, 0);	// this will set internal attribut KEntryAttModified
-	test_KErrNone(r);
-
-	// copied \sf\os\kernelhwsrv\userlibandfileserver\fileserver\inc\common.h
-	const TUint KEntryAttModified=0x20000000;	
-
-	TUint att;
-	r = f.Att(att);
-	test_KErrNone(r);
-    test.Printf(_L("att %x"), att);
-	test_Value(att & KEntryAttModified, (att & KEntryAttModified) == 0);
-
-	r=f.SetAtt(att | KEntryAttModified, 0);
-	test_KErrNone(r);
-
-	r = f.Att(att);
-	test_KErrNone(r);
-    test.Printf(_L("att %x"), att);
-	test_Value(att & KEntryAttModified, (att & KEntryAttModified) == 0);
-
-	test.Next(_L("file time is set"));
-	r = f.Modified(time);
-	test(time.Int64() != 0);
-
-    r = f.Flush(); //-- this will flush attributes to the media
-    test_KErrNone(r);
-	f.Close();
-
-
 	// Tidy up
 	r=TheFs.SetAtt(fname,0,KEntryAttReadOnly);
 	test(r==KErrNone);