change log for rtems-testing (2011-08-02)

rtems-vc at rtems.org rtems-vc at rtems.org
Tue Aug 2 15:10:05 UTC 2011


 *joel*:
2011-08-02	Joel Sherrill <joel.sherrill at oarcorp.com>

	* psxtest/init.c, psxtmtest_blocking/init.c, psxtmtest_single/init.c,
	psxtmtest_unblocking_nopreempt/init.c,
	psxtmtest_unblocking_preempt/init.c, sptest/init.c,
	sptest_operation_from_tsr/init.c, sptest_with_task/init.c,
	tmtest/init.c: Formatting.

M   1.22  rtems-test-template/ChangeLog
M    1.5  rtems-test-template/psxtest/init.c
M    1.6  rtems-test-template/psxtmtest_blocking/init.c
M    1.7  rtems-test-template/psxtmtest_single/init.c
M    1.4  rtems-test-template/psxtmtest_unblocking_nopreempt/init.c
M    1.3  rtems-test-template/psxtmtest_unblocking_preempt/init.c
M    1.5  rtems-test-template/sptest/init.c
M    1.7  rtems-test-template/sptest_operation_from_tsr/init.c
M    1.5  rtems-test-template/sptest_with_task/init.c
M    1.5  rtems-test-template/tmtest/init.c

diff -u rtems-testing/rtems-test-template/ChangeLog:1.21 rtems-testing/rtems-test-template/ChangeLog:1.22
--- rtems-testing/rtems-test-template/ChangeLog:1.21	Tue Aug  2 08:04:30 2011
+++ rtems-testing/rtems-test-template/ChangeLog	Tue Aug  2 09:17:58 2011
@@ -1,5 +1,13 @@
 2011-08-02	Joel Sherrill <joel.sherrill at oarcorp.com>
 
+	* psxtest/init.c, psxtmtest_blocking/init.c, psxtmtest_single/init.c,
+	psxtmtest_unblocking_nopreempt/init.c,
+	psxtmtest_unblocking_preempt/init.c, sptest/init.c,
+	sptest_operation_from_tsr/init.c, sptest_with_task/init.c,
+	tmtest/init.c: Formatting.
+
+2011-08-02	Joel Sherrill <joel.sherrill at oarcorp.com>
+
 	* psxtmtest_blocking/Makefile.am, psxtmtest_single/Makefile.am,
 	psxtmtest_unblocking_nopreempt/Makefile.am,
 	psxtmtest_unblocking_preempt/Makefile.am, spfatal/Makefile.am,

diff -u rtems-testing/rtems-test-template/psxtest/init.c:1.4 rtems-testing/rtems-test-template/psxtest/init.c:1.5
--- rtems-testing/rtems-test-template/psxtest/init.c:1.4	Thu Jul 21 08:42:25 2011
+++ rtems-testing/rtems-test-template/psxtest/init.c	Tue Aug  2 09:17:58 2011
@@ -19,7 +19,7 @@
   puts( "\n\n*** POSIX TEST @UPPER@ ***" );
 
   /* XXX test code goes here */
-  
+
   puts( "*** END OF POSIX TEST @UPPER@ ***" );
 
   rtems_test_exit(0);

diff -u rtems-testing/rtems-test-template/psxtmtest_blocking/init.c:1.5 rtems-testing/rtems-test-template/psxtmtest_blocking/init.c:1.6
--- rtems-testing/rtems-test-template/psxtmtest_blocking/init.c:1.5	Thu Jul 21 08:42:25 2011
+++ rtems-testing/rtems-test-template/psxtmtest_blocking/init.c	Tue Aug  2 09:17:58 2011
@@ -64,7 +64,7 @@
     status = pthread_create( &threadId, NULL, Middle, NULL );
     rtems_test_assert( !status );
   }
-  
+
   status = pthread_create( &threadId, NULL, Low, NULL );
   rtems_test_assert( !status );
 

diff -u rtems-testing/rtems-test-template/psxtmtest_single/init.c:1.6 rtems-testing/rtems-test-template/psxtmtest_single/init.c:1.7
--- rtems-testing/rtems-test-template/psxtmtest_single/init.c:1.6	Thu Jul 21 08:42:25 2011
+++ rtems-testing/rtems-test-template/psxtmtest_single/init.c	Tue Aug  2 09:17:58 2011
@@ -48,9 +48,8 @@
   /* XXX any required initialization goes here */
 
   benchmark_NAME_OF_OPERATION();
-  
-  puts( "*** END OF POSIX TIME TEST @UPPER@ ***" );
 
+  puts( "*** END OF POSIX TIME TEST @UPPER@ ***" );
   rtems_test_exit(0);
 }
 

diff -u rtems-testing/rtems-test-template/psxtmtest_unblocking_nopreempt/init.c:1.3 rtems-testing/rtems-test-template/psxtmtest_unblocking_nopreempt/init.c:1.4
--- rtems-testing/rtems-test-template/psxtmtest_unblocking_nopreempt/init.c:1.3	Thu Jul 21 08:42:25 2011
+++ rtems-testing/rtems-test-template/psxtmtest_unblocking_nopreempt/init.c	Tue Aug  2 09:17:58 2011
@@ -46,7 +46,7 @@
 
   status = pthread_create( &threadId, NULL, Blocker, NULL );
   rtems_test_assert( status == 0 );
-  
+
   /*
    * Deliberately create the XXX after the threads.  This way if the
    * threads do run before we intend, they will get an error.

diff -u rtems-testing/rtems-test-template/psxtmtest_unblocking_preempt/init.c:1.2 rtems-testing/rtems-test-template/psxtmtest_unblocking_preempt/init.c:1.3
--- rtems-testing/rtems-test-template/psxtmtest_unblocking_preempt/init.c:1.2	Thu Jul 21 08:42:25 2011
+++ rtems-testing/rtems-test-template/psxtmtest_unblocking_preempt/init.c	Tue Aug  2 09:17:58 2011
@@ -128,7 +128,7 @@
     );
     rtems_test_assert( status == 0 );
   }
-  
+
   /*
    * Now start the timer which will be stopped in Low
    */

diff -u rtems-testing/rtems-test-template/sptest/init.c:1.4 rtems-testing/rtems-test-template/sptest/init.c:1.5
--- rtems-testing/rtems-test-template/sptest/init.c:1.4	Thu Jul 21 08:42:25 2011
+++ rtems-testing/rtems-test-template/sptest/init.c	Tue Aug  2 09:17:58 2011
@@ -19,7 +19,7 @@
   puts( "\n\n*** TEST @UPPER@ ***" );
 
   /* XXX test code goes here */
-  
+
   puts( "*** END OF TEST @UPPER@ ***" );
 
   rtems_test_exit(0);

diff -u rtems-testing/rtems-test-template/sptest_operation_from_tsr/init.c:1.6 rtems-testing/rtems-test-template/sptest_operation_from_tsr/init.c:1.7
--- rtems-testing/rtems-test-template/sptest_operation_from_tsr/init.c:1.6	Thu Jul 21 08:42:25 2011
+++ rtems-testing/rtems-test-template/sptest_operation_from_tsr/init.c	Tue Aug  2 09:17:58 2011
@@ -19,7 +19,6 @@
 )
 {
   /* do something from ISR */
-  
 
   operation_performed_from_tsr = true;
 }

diff -u rtems-testing/rtems-test-template/sptest_with_task/init.c:1.4 rtems-testing/rtems-test-template/sptest_with_task/init.c:1.5
--- rtems-testing/rtems-test-template/sptest_with_task/init.c:1.4	Thu Jul 21 08:42:25 2011
+++ rtems-testing/rtems-test-template/sptest_with_task/init.c	Tue Aug  2 09:17:58 2011
@@ -37,12 +37,11 @@
     &task_id
   );
   directive_failed( status, "rtems_task_create" );
-  
+
   status = rtems_task_start( task_id, Test_task, 0 );
   directive_failed( status, "rtems_task_start" );
 
   puts( "*** END OF TEST @UPPER@ ***" );
-
   rtems_test_exit(0);
 }
 

diff -u rtems-testing/rtems-test-template/tmtest/init.c:1.4 rtems-testing/rtems-test-template/tmtest/init.c:1.5
--- rtems-testing/rtems-test-template/tmtest/init.c:1.4	Thu Jul 21 08:42:25 2011
+++ rtems-testing/rtems-test-template/tmtest/init.c	Tue Aug  2 09:17:58 2011
@@ -21,7 +21,7 @@
   puts( "\n\n*** TIME TEST @UPPER@ ***" );
 
   /* XXX test code goes here */
-  
+
   puts( "*** END OF TIME TEST @UPPER@ ***" );
 
   rtems_test_exit(0);



--

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/20110802/df12b188/attachment-0001.html>


More information about the vc mailing list