2009-06-18 Joel Sherrill <joel.sherrill@OARcorp.com>

* psxstat/psxstat.scn, psxstat/test.c: Disable test for error on wrong
	mode bits being set. This behavior was not POSIX compliant and has
	been corrected in the filesystem code.
This commit is contained in:
Joel Sherrill
2009-06-18 16:19:53 +00:00
parent c1d924daa7
commit cbbc55ef71
3 changed files with 174 additions and 145 deletions
+6
View File
@@ -1,3 +1,9 @@
2009-06-18 Joel Sherrill <joel.sherrill@OARcorp.com>
* psxstat/psxstat.scn, psxstat/test.c: Disable test for error on wrong
mode bits being set. This behavior was not POSIX compliant and has
been corrected in the filesystem code.
2009-06-18 Chris Johns <chrisj@rtems.org>
* psx04/task3.c: Declare unions volatile to workaround the H8300
File diff suppressed because it is too large Load Diff
+2
View File
@@ -478,10 +478,12 @@ void Cause_faults()
* Verify chmod with an invalid type.
*/
#if 0
printf("\n\nPass an invalid mode to chmod should fail with EPERM \n" );
status = chmod( Files[0], S_IFREG );
assert( status == -1 );
assert( errno == EPERM );
#endif
/*
* Change file to executable then try to chdir to it.