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

rtems-vc at rtems.org rtems-vc at rtems.org
Mon Aug 1 20:10:04 UTC 2011


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

	* check_submission: Time tests do not need .scn files.

M   1.12  merge-helpers/ChangeLog
M    1.3  merge-helpers/check_submission

diff -u rtems-testing/merge-helpers/ChangeLog:1.11 rtems-testing/merge-helpers/ChangeLog:1.12
--- rtems-testing/merge-helpers/ChangeLog:1.11	Mon Aug  1 11:27:21 2011
+++ rtems-testing/merge-helpers/ChangeLog	Mon Aug  1 14:45:32 2011
@@ -1,5 +1,9 @@
 2011-08-01	Joel Sherrill <joel.sherrill at oarcorp.com>
 
+	* check_submission: Time tests do not need .scn files.
+
+2011-08-01	Joel Sherrill <joel.sherrill at oarcorp.com>
+
 	* check_submission: Check for missing .doc and .scn files.
 
 2011-08-01	Joel Sherrill <joel.sherrill at oarcorp.com>

diff -u rtems-testing/merge-helpers/check_submission:1.2 rtems-testing/merge-helpers/check_submission:1.3
--- rtems-testing/merge-helpers/check_submission:1.2	Mon Aug  1 11:27:21 2011
+++ rtems-testing/merge-helpers/check_submission	Mon Aug  1 14:45:32 2011
@@ -239,19 +239,24 @@
   echo "=== Checking for missing test support files"
   for m in ${Makefiles}
   do
-    testName=`dirname ${m}`
-    if [ ${testName} = "." ] ; then
-      testName=`pwd`
+    directory=`dirname ${m}`
+    if [ ${directory} = "." ] ; then
+      directory=`pwd`
     fi
-    testName=`basename ${testName}`
+    testName=`basename ${directory}`
     # Does this test have a .doc file?
-    if [ ! -r ${testName}.doc ] ; then
+    if [ ! -r ${directory}/${testName}.doc ] ; then
       echo ${testName}.doc is not present
     fi
-    # Does this test have a .scn file?
-    if [ ! -r ${testName}.scn ] ; then
-      echo ${testName}.scn is not present
-    fi
+    case ${directory} in
+      */*tmtests*) ;;
+      *)
+        # Does this test have a .scn file?
+        if [ ! -r ${directory}/${testName}.scn ] ; then
+          echo ${testName}.scn is not present
+        fi
+        ;;
+    esac
   done
       
 fi


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

	* check_submission: Fix error in string test.

M   1.13  merge-helpers/ChangeLog
M    1.4  merge-helpers/check_submission

diff -u rtems-testing/merge-helpers/ChangeLog:1.12 rtems-testing/merge-helpers/ChangeLog:1.13
--- rtems-testing/merge-helpers/ChangeLog:1.12	Mon Aug  1 14:45:32 2011
+++ rtems-testing/merge-helpers/ChangeLog	Mon Aug  1 14:47:00 2011
@@ -1,5 +1,9 @@
 2011-08-01	Joel Sherrill <joel.sherrill at oarcorp.com>
 
+	* check_submission: Fix error in string test.
+
+2011-08-01	Joel Sherrill <joel.sherrill at oarcorp.com>
+
 	* check_submission: Time tests do not need .scn files.
 
 2011-08-01	Joel Sherrill <joel.sherrill at oarcorp.com>

diff -u rtems-testing/merge-helpers/check_submission:1.3 rtems-testing/merge-helpers/check_submission:1.4
--- rtems-testing/merge-helpers/check_submission:1.3	Mon Aug  1 14:45:32 2011
+++ rtems-testing/merge-helpers/check_submission	Mon Aug  1 14:47:00 2011
@@ -233,7 +233,7 @@
 if [ ${do_test} = "yes" ] ; then
   # find all the Makefile.am's with rtems_tests_PROGRAMS in them
   Makefiles=`find . -name Makefile.am | xargs -e grep -l ^rtems_tests`
-  if [ X${Makefiles} = X ] ; then
+  if [ "X${Makefiles}" = "X" ] ; then
     fatal "Unable to locate any test Makefile.am files."
   fi
   echo "=== Checking for missing test support files"



--

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/20110801/c25bd1d6/attachment.html>


More information about the vc mailing list