change log for rtems (2011-07-22)

rtems-vc at rtems.org rtems-vc at rtems.org
Fri Jul 22 21:10:16 UTC 2011


 *joel*:
2011-07-22	Joel Sherrill <joel.sherrill at oarcorp.com>

	* psxtmthread03/psxtmthread03.doc: Fix.

M   1.31  testsuites/psxtmtests/ChangeLog
M    1.2  testsuites/psxtmtests/psxtmthread03/psxtmthread03.doc

diff -u rtems/testsuites/psxtmtests/ChangeLog:1.30 rtems/testsuites/psxtmtests/ChangeLog:1.31
--- rtems/testsuites/psxtmtests/ChangeLog:1.30	Fri Jul 22 12:28:28 2011
+++ rtems/testsuites/psxtmtests/ChangeLog	Fri Jul 22 15:22:30 2011
@@ -1,5 +1,9 @@
 2011-07-22	Joel Sherrill <joel.sherrill at oarcorp.com>
 
+	* psxtmthread03/psxtmthread03.doc: Fix.
+
+2011-07-22	Joel Sherrill <joel.sherrill at oarcorp.com>
+
 	* psxtmmutex02/psxtmmutex02.doc, psxtmsem01/psxtmsem01.doc,
 	psxtmsem02/psxtmsem02.doc, psxtmthread01/psxtmthread01.doc: Ensure
 	all are correct.

diff -u rtems/testsuites/psxtmtests/psxtmthread03/psxtmthread03.doc:1.1 rtems/testsuites/psxtmtests/psxtmthread03/psxtmthread03.doc:1.2
--- rtems/testsuites/psxtmtests/psxtmthread03/psxtmthread03.doc:1.1	Mon Dec  6 10:35:31 2010
+++ rtems/testsuites/psxtmtests/psxtmthread03/psxtmthread03.doc	Fri Jul 22 15:22:30 2011
@@ -11,4 +11,4 @@
 
 This test benchmarks the following operations:
 
-+ TBD
++ pthread_exit


 *joel*:
2011-07-22	Joel Sherrill <joel.sherrill at oarcorp.com>

	PR 1839/filesystem
	* psxfchx01/init.c, psxfchx01/psxfchx01.scn, psxfile01/psxfile01.scn,
	psxfile01/test.c: Update test to reflect new status codes.

M  1.347  testsuites/psxtests/ChangeLog
M    1.4  testsuites/psxtests/psxfchx01/init.c
M    1.3  testsuites/psxtests/psxfchx01/psxfchx01.scn
M   1.15  testsuites/psxtests/psxfile01/psxfile01.scn
M   1.34  testsuites/psxtests/psxfile01/test.c

diff -u rtems/testsuites/psxtests/ChangeLog:1.346 rtems/testsuites/psxtests/ChangeLog:1.347
--- rtems/testsuites/psxtests/ChangeLog:1.346	Thu Jul 21 02:45:34 2011
+++ rtems/testsuites/psxtests/ChangeLog	Fri Jul 22 15:23:20 2011
@@ -1,3 +1,9 @@
+2011-07-22	Joel Sherrill <joel.sherrill at oarcorp.com>
+
+	PR 1839/filesystem
+	* psxfchx01/init.c, psxfchx01/psxfchx01.scn, psxfile01/psxfile01.scn,
+	psxfile01/test.c: Update test to reflect new status codes.
+
 2011-07-21	Ralf Corsépius <ralf.corsepius at rtems.org>
 
 	* psxhdrs/Makefile.am: Remove -Wno-unused-but-set-variable 

diff -u rtems/testsuites/psxtests/psxfchx01/init.c:1.3 rtems/testsuites/psxtests/psxfchx01/init.c:1.4
--- rtems/testsuites/psxtests/psxfchx01/init.c:1.3	Tue Jul 19 08:10:46 2011
+++ rtems/testsuites/psxtests/psxfchx01/init.c	Fri Jul 22 15:23:21 2011
@@ -50,10 +50,10 @@
   fd = open( "/newfile", O_WRONLY | O_CREAT, S_IWUSR );
   rtems_test_assert( fd != -1 );
 
-  puts( "Init - fchdir on the file descriptor - expect EINVAL" );
+  puts( "Init - fchdir on the file descriptor - expect ENOTDIR" );
   status = fchdir( fd );
   rtems_test_assert( status == -1 );
-  rtems_test_assert( errno == EINVAL );
+  rtems_test_assert( errno == ENOTDIR );
 
   puts( "Init - closing /newfile -- OK" );
   status = close( fd );

diff -u rtems/testsuites/psxtests/psxfchx01/psxfchx01.scn:1.2 rtems/testsuites/psxtests/psxfchx01/psxfchx01.scn:1.3
--- rtems/testsuites/psxtests/psxfchx01/psxfchx01.scn:1.2	Tue Jul 19 08:10:46 2011
+++ rtems/testsuites/psxtests/psxfchx01/psxfchx01.scn	Fri Jul 22 15:23:21 2011
@@ -3,7 +3,7 @@
 Init - Attempt fchdir with bad file descriptor - expect EBADF
 Init - Attempt fchdir with bad file descriptor - expect EBADF
 Init - opening /newfile in write-mode -- OK
-Init - fchdir on the file descriptor - expect EINVAL
+Init - fchdir on the file descriptor - expect ENOTDIR
 Init - closing /newfile -- OK
 Init - removing /newfile -- OK
 Init - opening /newfile in read-mode -- OK

diff -u rtems/testsuites/psxtests/psxfile01/psxfile01.scn:1.14 rtems/testsuites/psxtests/psxfile01/psxfile01.scn:1.15
--- rtems/testsuites/psxtests/psxfile01/psxfile01.scn:1.14	Fri Aug  6 19:22:46 2010
+++ rtems/testsuites/psxtests/psxfile01/psxfile01.scn	Fri Jul 22 15:23:21 2011
@@ -14,7 +14,7 @@
 ....atime = Fri Jan  1 00:00:00 1988
 ....mtime = Fri Jan  1 00:00:00 1988
 ....ctime = Fri Jan  1 00:00:00 1988
-....st_blksize 0
+....st_blksize 80
 ....st_blocks  0
 
 mkdir /dev/tty
@@ -55,10 +55,10 @@
 mknod with bad type - expect EINVAL
 open /tmp/bha in write only mode -- OK
 attempt fcntl on opened file -- OK
-attempt to read from /tmp/bha - expect EINVAL
+attempt to read from /tmp/bha - expect EBADF
 closing and unlinking /tmp/bha
 open /tmp/bha in read only mode -- OK
-attempt to read from /tmp/bha - expect EINVAL
+attempt to read from /tmp/bha - expect EBADF
 closing and unlinking /tmp/bha
 attempt to read from an unopened filedes - expect EBADF
 attempt to write to an unopened filedes - expect EBADF
@@ -93,7 +93,7 @@
 ....atime = Sat Dec 31 09:00:00 1988
 ....mtime = Sat Dec 31 09:00:00 1988
 ....ctime = Sat Dec 31 09:00:00 1988
-....st_blksize 0
+....st_blksize 80
 ....st_blocks  0
 unlink /tmp/joel
 unlink /tmp/joel
@@ -126,7 +126,7 @@
 ....atime = Sat Dec 31 09:00:00 1988
 ....mtime = Sat Dec 31 09:00:00 1988
 ....ctime = Sat Dec 31 09:00:00 1988
-....st_blksize 0
+....st_blksize 80
 ....st_blocks  0
 stat of /tmp/j
 stat(/tmp/j) returned -1 (errno=2)
@@ -139,7 +139,7 @@
 ....atime = Fri Jan  1 00:00:00 1988
 ....mtime = Fri Jan  1 00:00:00 1988
 ....ctime = Fri Jan  1 00:00:00 1988
-....st_blksize 0
+....st_blksize 80
 ....st_blocks  0
 fopen of /tmp/j
 fprintf to /tmp/j
@@ -157,7 +157,7 @@
 ....atime = Sat Dec 31 09:00:00 1988
 ....mtime = Sat Dec 31 09:00:00 1988
 ....ctime = Sat Dec 31 09:00:00 1988
-....st_blksize 0
+....st_blksize 80
 ....st_blocks  0
 This is call 1 to fprintf
 This is call 2 to fprintf
@@ -173,14 +173,14 @@
 ....atime = Sat Dec 31 09:00:01 1988
 ....mtime = Sat Dec 31 09:00:00 1988
 ....ctime = Sat Dec 31 09:00:00 1988
-....st_blksize 0
+....st_blksize 80
 ....st_blocks  0
 *************** Dump of Entire IMFS ***************
 /
 ....dev/
 ........console (device 0, 0)
 ........tty/
-............S3 (device 128, 255)
+............S3 (device 255, 128)
 ........test_console (device 0, 0)
 ....etc/
 ........passwd (file 0)
@@ -203,14 +203,14 @@
 ....atime = Sat Dec 31 09:00:02 1988
 ....mtime = Sat Dec 31 09:00:00 1988
 ....ctime = Sat Dec 31 09:00:00 1988
-....st_blksize 0
+....st_blksize 80
 ....st_blocks  0
 *************** Dump of Entire IMFS ***************
 /
 ....dev/
 ........console (device 0, 0)
 ........tty/
-............S3 (device 128, 255)
+............S3 (device 255, 128)
 ........test_console (device 0, 0)
 ....etc/
 ........passwd (file 0)
@@ -231,7 +231,7 @@
 ....dev/
 ........console (device 0, 0)
 ........tty/
-............S3 (device 128, 255)
+............S3 (device 255, 128)
 ........test_console (device 0, 0)
 ....etc/
 ........passwd (file 0)

diff -u rtems/testsuites/psxtests/psxfile01/test.c:1.33 rtems/testsuites/psxtests/psxfile01/test.c:1.34
--- rtems/testsuites/psxtests/psxfile01/test.c:1.33	Fri May  6 12:29:29 2011
+++ rtems/testsuites/psxtests/psxfile01/test.c	Fri Jul 22 15:23:21 2011
@@ -384,10 +384,10 @@
   status = fcntl( fd, F_SETFD, 0 );
   rtems_test_assert( status == 0 );
 
-  puts( "attempt to read from /tmp/bha - expect EINVAL" );
+  puts( "attempt to read from /tmp/bha - expect EBADF" );
   status = read( fd, buffer, 10 );
   rtems_test_assert( status == -1 );
-  rtems_test_assert( errno == EINVAL );
+  rtems_test_assert( errno == EBADF );
 
   puts( "closing and unlinking /tmp/bha" );
   status = close( fd );
@@ -398,10 +398,10 @@
   fd = open( "/tmp/bha", O_CREAT | O_RDONLY, S_IRWXU|S_IRWXG|S_IRWXO );
   rtems_test_assert( fd != -1 );
   
-  puts( "attempt to read from /tmp/bha - expect EINVAL" );
+  puts( "attempt to read from /tmp/bha - expect EBADF" );
   status = write( fd, buffer, 10 );
   rtems_test_assert( status == -1 );
-  rtems_test_assert( errno == EINVAL );
+  rtems_test_assert( errno == EBADF );
 
   puts( "closing and unlinking /tmp/bha" );
   status = close( fd );


 *joel*:
2011-07-22	Joel Sherrill <joel.sherrill at oarcorp.com>

	* score/include/rtems/score/mppkt.h: Remove extra spaces.

M 1.2888  cpukit/ChangeLog
M   1.24  cpukit/score/include/rtems/score/mppkt.h

diff -u rtems/cpukit/ChangeLog:1.2887 rtems/cpukit/ChangeLog:1.2888
--- rtems/cpukit/ChangeLog:1.2887	Fri Jul 22 11:04:38 2011
+++ rtems/cpukit/ChangeLog	Fri Jul 22 15:24:00 2011
@@ -1,3 +1,7 @@
+2011-07-22	Joel Sherrill <joel.sherrill at oarcorp.com>
+
+	* score/include/rtems/score/mppkt.h: Remove extra spaces.
+
 2011-07-22	Joel Sherrill <joel.sherrilL at OARcorp.com>
 
 	PR 1839/filesystem

diff -u rtems/cpukit/score/include/rtems/score/mppkt.h:1.23 rtems/cpukit/score/include/rtems/score/mppkt.h:1.24
--- rtems/cpukit/score/include/rtems/score/mppkt.h:1.23	Fri Jun 17 10:40:09 2011
+++ rtems/cpukit/score/include/rtems/score/mppkt.h	Fri Jul 22 15:24:01 2011
@@ -9,7 +9,7 @@
  */
 
 /*
- *  COPYRIGHT (c) 1989-2006.
+ *  COPYRIGHT (c) 1989-2011.
  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
@@ -102,10 +102,10 @@
 #define MP_PACKET_MINIMUM_PACKET_SIZE  64
 
 /**
- *  The following constant defines the number of uint32_t  's
+ *  The following constant defines the number of uint32_t's
  *  in a packet which must be converted to native format in a
  *  heterogeneous system.  In packets longer than
- *  MP_PACKET_MINIMUN_HETERO_CONVERSION uint32_t  's, some of the "extra" data
+ *  MP_PACKET_MINIMUN_HETERO_CONVERSION uint32_t's, some of the "extra" data
  *  may a user message buffer which is not automatically endian swapped.
  */
 #define MP_PACKET_MINIMUN_HETERO_CONVERSION  \



--

Generated by Deluxe Loginfo [http://www.codewiz.org/projects/index.html#loginfo] 2.122 by Bernardo Innocenti <bernie at develer.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rtems.org/pipermail/vc/attachments/20110722/7686a611/attachment-0001.html>


More information about the vc mailing list