<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>change log for rtems-testing (2011-08-01)</title>
</head>
<body text='#000000' bgcolor='#ffffff'>
<a name='cs1'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>joel</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-08-01 Joel Sherrill <joel.sherrill@oarcorp.com>

        * check_submission: Time tests do not need .scn files.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/merge-helpers/ChangeLog.diff?r1=text&tr1=1.11&r2=text&tr2=1.12&diff_format=h">M</a></td><td width='1%'>1.12</td><td width='100%'>merge-helpers/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/merge-helpers/check_submission.diff?r1=text&tr1=1.2&r2=text&tr2=1.3&diff_format=h">M</a></td><td width='1%'>1.3</td><td width='100%'>merge-helpers/check_submission</td></tr>
</table>
<pre>
<font color='#006600'>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
</font><font color='#997700'>@@ -1,5 +1,9 @@
</font> 2011-08-01        Joel Sherrill <joel.sherrill@oarcorp.com>
 
<font color='#000088'>+   * check_submission: Time tests do not need .scn files.
+
+2011-08-01     Joel Sherrill <joel.sherrill@oarcorp.com>
+
</font>   * check_submission: Check for missing .doc and .scn files.
 
 2011-08-01     Joel Sherrill <joel.sherrill@oarcorp.com>

<font color='#006600'>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
</font><font color='#997700'>@@ -239,19 +239,24 @@
</font>   echo "=== Checking for missing test support files"
   for m in ${Makefiles}
   do
<font color='#880000'>-    testName=`dirname ${m}`
-    if [ ${testName} = "." ] ; then
-      testName=`pwd`
</font><font color='#000088'>+    directory=`dirname ${m}`
+    if [ ${directory} = "." ] ; then
+      directory=`pwd`
</font>     fi
<font color='#880000'>-    testName=`basename ${testName}`
</font><font color='#000088'>+    testName=`basename ${directory}`
</font>     # Does this test have a .doc file?
<font color='#880000'>-    if [ ! -r ${testName}.doc ] ; then
</font><font color='#000088'>+    if [ ! -r ${directory}/${testName}.doc ] ; then
</font>       echo ${testName}.doc is not present
     fi
<font color='#880000'>-    # Does this test have a .scn file?
-    if [ ! -r ${testName}.scn ] ; then
-      echo ${testName}.scn is not present
-    fi
</font><font color='#000088'>+    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
</font>   done
       
 fi
</pre>
<p> </p>
<a name='cs2'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>joel</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-08-01 Joel Sherrill <joel.sherrill@oarcorp.com>

        * check_submission: Fix error in string test.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/merge-helpers/ChangeLog.diff?r1=text&tr1=1.12&r2=text&tr2=1.13&diff_format=h">M</a></td><td width='1%'>1.13</td><td width='100%'>merge-helpers/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/merge-helpers/check_submission.diff?r1=text&tr1=1.3&r2=text&tr2=1.4&diff_format=h">M</a></td><td width='1%'>1.4</td><td width='100%'>merge-helpers/check_submission</td></tr>
</table>
<pre>
<font color='#006600'>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
</font><font color='#997700'>@@ -1,5 +1,9 @@
</font> 2011-08-01        Joel Sherrill <joel.sherrill@oarcorp.com>
 
<font color='#000088'>+   * check_submission: Fix error in string test.
+
+2011-08-01     Joel Sherrill <joel.sherrill@oarcorp.com>
+
</font>   * check_submission: Time tests do not need .scn files.
 
 2011-08-01     Joel Sherrill <joel.sherrill@oarcorp.com>

<font color='#006600'>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
</font><font color='#997700'>@@ -233,7 +233,7 @@
</font> 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`
<font color='#880000'>-  if [ X${Makefiles} = X ] ; then
</font><font color='#000088'>+  if [ "X${Makefiles}" = "X" ] ; then
</font>     fatal "Unable to locate any test Makefile.am files."
   fi
   echo "=== Checking for missing test support files"
</pre>
<p> </p>

<p>--<br />
<small>Generated by <a href="http://www.codewiz.org/projects/index.html#loginfo">Deluxe Loginfo</a> 2.122 by Bernardo Innocenti <bernie@develer.com></small></p>
</body>
</html>