<!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-03-13)</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-03-13 Joel Sherrill <joel.sherrilL@OARcorp.com>

        * VERSIONS-COVERAGE, do_coverage, run_coverage: Make improvements so it
        is easier to run on released RTEMS versions.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/rtems-coverage/ChangeLog.diff?r1=text&tr1=1.303&r2=text&tr2=1.304&diff_format=h">M</a></td><td width='1%'>1.304</td><td width='100%'>rtems-coverage/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/rtems-coverage/VERSIONS-COVERAGE.diff?r1=text&tr1=1.25&r2=text&tr2=1.26&diff_format=h">M</a></td><td width='1%'>1.26</td><td width='100%'>rtems-coverage/VERSIONS-COVERAGE</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/rtems-coverage/do_coverage.diff?r1=text&tr1=1.73&r2=text&tr2=1.74&diff_format=h">M</a></td><td width='1%'>1.74</td><td width='100%'>rtems-coverage/do_coverage</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/rtems-coverage/run_coverage.diff?r1=text&tr1=1.16&r2=text&tr2=1.17&diff_format=h">M</a></td><td width='1%'>1.17</td><td width='100%'>rtems-coverage/run_coverage</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems-testing/rtems-coverage/ChangeLog:1.303 rtems-testing/rtems-coverage/ChangeLog:1.304
--- rtems-testing/rtems-coverage/ChangeLog:1.303        Mon Feb 14 14:51:49 2011
+++ rtems-testing/rtems-coverage/ChangeLog      Sun Mar 13 17:16:37 2011
</font><font color='#997700'>@@ -1,3 +1,8 @@
</font><font color='#000088'>+2011-03-13    Joel Sherrill <joel.sherrilL@OARcorp.com>
+
+       * VERSIONS-COVERAGE, do_coverage, run_coverage: Make improvements so it
+       is easier to run on released RTEMS versions.
+
</font> 2011-02-14        Joel Sherrill <joel.sherrilL@OARcorp.com>
 
        * coverage_cron, run_coverage: Switch defaults on publishing.

<font color='#006600'>diff -u rtems-testing/rtems-coverage/VERSIONS-COVERAGE:1.25 rtems-testing/rtems-coverage/VERSIONS-COVERAGE:1.26
--- rtems-testing/rtems-coverage/VERSIONS-COVERAGE:1.25 Thu Feb 10 15:20:53 2011
+++ rtems-testing/rtems-coverage/VERSIONS-COVERAGE      Sun Mar 13 17:16:37 2011
</font><font color='#997700'>@@ -1,31 +1,20 @@
</font> # USE FULL PATHS!!!
 BASEDIR=${HOME}/test-gcc
 
<font color='#880000'>-
-RTEMS_VERSION=4.11
</font><font color='#000088'>+RTEMS_VERSION=4.10.0
</font> case ${RTEMS_VERSION} in
   4.5)  RTEMSDIR=${BASEDIR}/rtems-45
         TARDIR=${BASEDIR}/tarballs/4.5
         DEFAULT_EXEEXT=exe
         ;;
<font color='#880000'>-  4.6)  RTEMSDIR=${BASEDIR}/rtems-46
-        TARDIR=${BASEDIR}/tarballs/4.6
-        DEFAULT_EXEEXT=exe
-        ;;
-  4.7)  RTEMSDIR=${BASEDIR}/rtems-47
-        TARDIR=${BASEDIR}/tarballs/4.7
-        DEFAULT_EXEEXT=exe
-        ;;
-  4.8)  RTEMSDIR=${BASEDIR}/rtems-48
-        TARDIR=${BASEDIR}/tarballs/4.8
</font><font color='#000088'>+  4.6*|4.7*|4.8*)
+        RTEMSDIR=${BASEDIR}/rtems-${RTEMS_VERSION}
+        TARDIR=${BASEDIR}/tarballs/${RTEMS_VERSION}
</font>         DEFAULT_EXEEXT=exe
<font color='#880000'>-        ;;
-  4.9)  RTEMSDIR=${BASEDIR}/rtems-49
-        TARDIR=${BASEDIR}/tarballs/4.9
-        DEFAULT_EXEEXT=ralf
-        ;;
-  4.10) RTEMSDIR=${BASEDIR}/rtems-410
-        TARDIR=${BASEDIR}/tarballs/4.10
</font><font color='#000088'>+       ;;
+  4.9*|4.10*)
+        RTEMSDIR=${BASEDIR}/rtems-${RTEMS_VERSION}
+        TARDIR=${BASEDIR}/tarballs/${RTEMS_VERSION}
</font>         DEFAULT_EXEEXT=ralf
         ;;
   4.11) RTEMSDIR=${BASEDIR}/rtems
<font color='#997700'>@@ -44,7 +33,7 @@
</font> FTPDIR=/home/ftp/pub/rtems/people/joel/coverage/
 
 # Calculated
<font color='#880000'>-SCRIPTDIR=${BASEDIR}/gcc-testing
</font><font color='#000088'>+SCRIPTDIR=${BASEDIR}/rtems-testing
</font> COVBASE=${SCRIPTDIR}/rtems-coverage
 COVOARBASE=${SCRIPTDIR}/covoar
 

<font color='#006600'>diff -u rtems-testing/rtems-coverage/do_coverage:1.73 rtems-testing/rtems-coverage/do_coverage:1.74
--- rtems-testing/rtems-coverage/do_coverage:1.73       Wed Jan 26 12:25:59 2011
+++ rtems-testing/rtems-coverage/do_coverage    Sun Mar 13 17:16:37 2011
</font><font color='#997700'>@@ -84,7 +84,7 @@
</font> do_all="no"
 do_posix="yes"
 do_optimize_size="no"
<font color='#880000'>-do_covmerge="no"
</font><font color='#000088'>+do_covoar="no"
</font> do_rtems_update="no"
 do_rtems_configure="no"
 do_rtems_build="no"
<font color='#997700'>@@ -104,7 +104,7 @@
</font>     case "$OPT" in
         A)
           do_all="yes"
<font color='#880000'>-          do_covmerge="yes"
</font><font color='#000088'>+          do_covoar="yes"
</font>           do_posix="yes"
           do_rtems_update="yes"
           do_rtems_configure="yes"
<font color='#997700'>@@ -118,7 +118,7 @@
</font>         B) BSP="${OPTARG}";;
         O) outputDir="${OPTARG}";;
         v) verbose=`toggle ${verbose}` ;;
<font color='#880000'>-        m) do_covmerge=`toggle ${do_covmerge}` ;;
</font><font color='#000088'>+        m) do_covoar=`toggle ${do_covoar}` ;;
</font>         P) do_posix=`toggle ${do_posix}` ;;
         S) do_optimize_size=`toggle ${do_optimize_size}` ;;
         u) do_rtems_update=`toggle ${do_rtems_update}` ;;
<font color='#997700'>@@ -200,11 +200,17 @@
</font>     ;;
 esac
 
<font color='#880000'>-if [ ${RTEMS_VERSION} = 4.6 -o ${RTEMS_VERSION} = 4.5 ] ; then
-  TARGET=${CPU}-rtems
-else
-  TARGET=${CPU}-rtems${RTEMS_VERSION}
-fi
</font><font color='#000088'>+case ${RTEMS_VERSION} in
+  4.5*)  TARGET=${CPU}-rtems ;;
+  4.6*)  TARGET=${CPU}-rtems ;;
+  4.7*)  TARGET=${CPU}-rtems4.7 ;;
+  4.8*)  TARGET=${CPU}-rtems4.8 ;;
+  4.9*)  TARGET=${CPU}-rtems4.9 ;;
+  4.10*) TARGET=${CPU}-rtems4.10 ;;
+  4.11*) TARGET=${CPU}-rtems4.11 ;;
+  *)
+    fatal "Unknown RTEMS Version (${RTEMS_VERSION})" ;;
+esac
</font> 
 ##### VERBOSE
 print_verbose()
<font color='#997700'>@@ -218,7 +224,7 @@
</font>   echo "Core Configuration    " ${do_core}
   echo "Developmental Code:   " ${do_developmental}
   echo "do_all:               " ${do_all}
<font color='#880000'>-  echo "do_covmerge           " ${do_covmerge}
</font><font color='#000088'>+  echo "do_covoar             " ${do_covoar}
</font>   echo "do_rtems_update:      " ${do_rtems_update}
   echo "do_rtems_configure:   " ${do_rtems_configure}
   echo "do_rtems_build:       " ${do_rtems_build}
<font color='#997700'>@@ -256,7 +262,7 @@
</font> fi
 
 if [ ! -d ${RTEMSDIR} ] ; then
<font color='#880000'>-  echo "Check out RTEMS!!!"
</font><font color='#000088'>+  echo "${RTEMSDIR} not found!!!"
</font>   exit 1
 fi
 
<font color='#997700'>@@ -459,8 +465,9 @@
</font>       ${TARGET}-nm --format=sysv $l | grep "FUNC|" | \
         cut -d'|' -f1 | sed -e 's/ *$//'
       # echo "========= END $l"
<font color='#880000'>-    else
-      echo "${l} is not readable"
</font><font color='#000088'>+
+    # no else
+      # We keep a complete CURRENT list and some are not in old versions
</font>     fi
   done
 }
<font color='#997700'>@@ -468,70 +475,73 @@
</font> # generate the list of symbols to analyze
 generate_symbols()
 {
<font color='#880000'>-  if [ ${RTEMS_VERSION} = 4.6 -o ${RTEMS_VERSION} = 4.5 ] ; then
-    cd ${BASEDIR}/b-${BSP}/${TARGET}/c/${BSP}/exec
-    check_status $? "could not cd to object directory"
-
-    subd=o-optimize/
-  else
-    cd ${BASEDIR}/b-${BSP}/${TARGET}/c/${BSP}/cpukit
-    check_status $? "could not cd to object directory"
-
-    subd=
-  fi
-
-  if [ ${RTEMS_VERSION} = 4.5 ] ; then
-    filter_nm wrapup/rtems/o-optimize/librtems.a
-    if [ ${do_posix} = "yes" ] ; then
-      filter_nm wrapup/posix/o-optimize/libposix.a
-    fi
-
-    if [ ${analyze_developmental} = "yes" ] ; then
-      filter_nm ../lib/libc/${subd}libcsupport.a
-      filter_nm ../lib/libmisc/wrapup/${subd}libmisc.a
-    fi
-  else  # 4.6 or newer
</font><font color='#000088'>+  case ${RTEMS_VERSION} in
+    4.5*|4.6*)
+      cd ${BASEDIR}/b-${BSP}/${TARGET}/c/${BSP}/exec
+      check_status $? "could not cd to object directory"
+      subd=o-optimize/
+      ;;
+    *)
+      cd ${BASEDIR}/b-${BSP}/${TARGET}/c/${BSP}/cpukit
+      check_status $? "could not cd to object directory"
+      subd=
+      ;;
+  esac
+
+  case ${RTEMS_VERSION} in
+    4.5*)
+      filter_nm wrapup/rtems/o-optimize/librtems.a
+      if [ ${do_posix} = "yes" ] ; then
+       filter_nm wrapup/posix/o-optimize/libposix.a
+      fi
</font> 
<font color='#880000'>-    # Base set of libraries to analyse.  Do NOT include libscorecpu.a!!!
-    filter_nm score/${subd}libscore.a
-    filter_nm sapi/${subd}libsapi.a
-    filter_nm rtems/${subd}librtems.a
-
-    # Now add the POSIX API onto that
-    if [ ${do_posix} = "yes" ] ; then
-      filter_nm posix/${subd}libposix.a
-    fi
</font><font color='#000088'>+      if [ ${analyze_developmental} = "yes" ] ; then
+       filter_nm ../lib/libc/${subd}libcsupport.a
+       filter_nm ../lib/libmisc/wrapup/${subd}libmisc.a
+      fi
+      ;;
+    *) # 4.6 or newer
+      # Base set of libraries to analyse.  Do NOT include libscorecpu.a!!!
+      filter_nm score/${subd}libscore.a
+      filter_nm sapi/${subd}libsapi.a
+      filter_nm rtems/${subd}librtems.a
+
+      # Now add the POSIX API onto that
+      if [ ${do_posix} = "yes" ] ; then
+        filter_nm posix/${subd}libposix.a
+      fi
</font> 
<font color='#880000'>-    # Now add developmental libraries
-    # NOTE: all non-network libraries are listed here.  --joel 5 March 2010
-    if [ ${analyze_developmental} = "yes" ] ; then
-      # filter_nm libfs/${subd}librfs.a
-      # filter_nm libfs/${subd}libdosfs.a
-      filter_nm libfs/${subd}libdevfs.a
-      filter_nm libfs/${subd}libimfs.a
-      filter_nm libcsupport/${subd}libcsupport.a
-      # filter_nm libi2c/${subd}libi2c.a
-      # filter_nm zlib/${subd}libz.a
-      # filter_nm libmd/${subd}libmd.a
-      # filter_nm libmisc/${subd}libshell.a
-      filter_nm libmisc/${subd}libbspcmdline.a
-      filter_nm libmisc/${subd}libcpuuse.a
-      # filter_nm libmisc/${subd}libuuid.a
-      filter_nm libmisc/${subd}libstackchk.a
-      # filter_nm libmisc/${subd}libmw-fb.a
-      # NEVER INCLUDE libdummy.a!!!
-      # filter_nm libmisc/${subd}libdummy.a
-      # filter_nm libmisc/${subd}libfsmount.a
-      filter_nm libmisc/${subd}libstringto.a
-      filter_nm libmisc/${subd}libdevnull.a
-      # filter_nm libmisc/${subd}libcapture.a
-      filter_nm libmisc/${subd}libdumpbuf.a
-      # filter_nm libmisc/${subd}libmonitor.a
-      # filter_nm libmisc/${subd}libserdbg.a
-      # filter_nm libmisc/${subd}libuntar.a
-      # filter_nm libblock/${subd}libblock.a
-    fi
-  fi
</font><font color='#000088'>+      # Now add developmental libraries
+      # NOTE: all non-network libraries are listed here.  --joel 5 March 2010
+      if [ ${analyze_developmental} = "yes" ] ; then
+        # filter_nm libfs/${subd}librfs.a
+        # filter_nm libfs/${subd}libdosfs.a
+        filter_nm libfs/${subd}libdevfs.a
+        filter_nm libfs/${subd}libimfs.a
+        filter_nm libcsupport/${subd}libcsupport.a
+        # filter_nm libi2c/${subd}libi2c.a
+        # filter_nm zlib/${subd}libz.a
+        # filter_nm libmd/${subd}libmd.a
+        # filter_nm libmisc/${subd}libshell.a
+        filter_nm libmisc/${subd}libbspcmdline.a
+        filter_nm libmisc/${subd}libcpuuse.a
+        # filter_nm libmisc/${subd}libuuid.a
+        filter_nm libmisc/${subd}libstackchk.a
+        # filter_nm libmisc/${subd}libmw-fb.a
+        # NEVER INCLUDE libdummy.a!!!
+        # filter_nm libmisc/${subd}libdummy.a
+        # filter_nm libmisc/${subd}libfsmount.a
+        filter_nm libmisc/${subd}libstringto.a
+        filter_nm libmisc/${subd}libdevnull.a
+        # filter_nm libmisc/${subd}libcapture.a
+        filter_nm libmisc/${subd}libdumpbuf.a
+        # filter_nm libmisc/${subd}libmonitor.a
+        # filter_nm libmisc/${subd}libserdbg.a
+        # filter_nm libmisc/${subd}libuntar.a
+        # filter_nm libblock/${subd}libblock.a
+      fi
+      ;;
+    esac
</font> }
 
 # remove symbols we do not want coverage on.
<font color='#997700'>@@ -562,20 +572,20 @@
</font> test -d ${BASEDIR}/${BSP}-tests || mkdir ${BASEDIR}/${BSP}-tests
 
 # If requested, update and build the coverage support tools
<font color='#880000'>-if [ ${do_covmerge} = "yes" ] ; then
-  echo "Updating and building covmerge..."
</font><font color='#000088'>+if [ ${do_covoar} = "yes" ] ; then
+  echo "Updating and building covoar..."
</font> 
   cd ${COVBASE}/../covoar
<font color='#880000'>-  check_status $? "cd covmerge"
</font><font color='#000088'>+  check_status $? "cd covoar"
</font> 
   cvs up -Pd 2>&1 | grep -v ^cvs
   make clean all
<font color='#880000'>-  check_status $? "build covmerge"
</font><font color='#000088'>+  check_status $? "build covoar"
</font> 
   make
<font color='#880000'>-  check_status $? "make covmerge"
</font><font color='#000088'>+  check_status $? "make covoar"
</font> else
<font color='#880000'>-  echo "Skipping Updating and building covmerge..."
</font><font color='#000088'>+  echo "Skipping Updating and building covoar..."
</font> fi
 
 # If requested, update the RTEMS tree
<font color='#997700'>@@ -646,13 +656,16 @@
</font>   cd ${BASEDIR}/b-${BSP}/
   check_status $? "cd b-${BSP}"
 
<font color='#880000'>-  if [ ${RTEMS_VERSION} = 4.6 -o ${RTEMS_VERSION} = 4.5 ] ; then
-    sleep 5  # 4.5 on chroot'ed env needs this for some reason
-    make >b.log 2>&1
-  else
-    cpus=`/usr/bin/getconf _NPROCESSORS_ONLN`
-    make -j${cpus} >b.log 2>&1
-  fi
</font><font color='#000088'>+  case ${RTEMS_VERSION} in
+    4.5*|4.6*)
+      sleep 5  # 4.5 on chroot'ed env needs this for some reason
+      make >b.log 2>&1
+      ;;
+    *)
+      cpus=`/usr/bin/getconf _NPROCESSORS_ONLN`
+      make -j${cpus} >b.log 2>&1
+      ;;
+  esac
</font>   check_status $? "Building RTEMS for ${BSP}"
 else
   echo "Skipping Building RTEMS ..."

<font color='#006600'>diff -u rtems-testing/rtems-coverage/run_coverage:1.16 rtems-testing/rtems-coverage/run_coverage:1.17
--- rtems-testing/rtems-coverage/run_coverage:1.16      Mon Feb 14 14:51:49 2011
+++ rtems-testing/rtems-coverage/run_coverage   Sun Mar 13 17:16:37 2011
</font><font color='#997700'>@@ -73,7 +73,7 @@
</font>   echo "time ${COVBASE}/do_coverage -A -v -u -m ${SAVE} ${PUBLISH} ${*} -B ${bsp}"
   time ${COVBASE}/do_coverage -A -v -u -m ${SAVE} ${PUBLISH} ${*} -B ${bsp}
   check_status $? "FAILED ${bsp}"<span style="background-color: #FF0000"> </span>
<font color='#880000'>-  rm -rf b-* *-tests
</font><font color='#000088'>+  rm -rf b-${bsp} ${bsp}-tests
</font> }
 
 validate_bsp()
</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-03-13 Joel Sherrill <joel.sherrilL@OARcorp.com>

        * pc386.in: Add another failure message.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/sim-scripts/ChangeLog.diff?r1=text&tr1=1.96&r2=text&tr2=1.97&diff_format=h">M</a></td><td width='1%'>1.97</td><td width='100%'>sim-scripts/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/sim-scripts/pc386.in.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%'>sim-scripts/pc386.in</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems-testing/sim-scripts/ChangeLog:1.96 rtems-testing/sim-scripts/ChangeLog:1.97
--- rtems-testing/sim-scripts/ChangeLog:1.96    Mon Feb 14 14:51:33 2011
+++ rtems-testing/sim-scripts/ChangeLog Sun Mar 13 17:17:11 2011
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2011-03-13    Joel Sherrill <joel.sherrilL@OARcorp.com>
+
+       * pc386.in: Add another failure message.
+
</font> 2011-02-14        Joel Sherrill <joel.sherrilL@OARcorp.com>
 
        * gdb-sim-run.in: math tests now run.

<font color='#006600'>diff -u rtems-testing/sim-scripts/pc386.in:1.11 rtems-testing/sim-scripts/pc386.in:1.12
--- rtems-testing/sim-scripts/pc386.in:1.11     Sun Feb  6 10:47:43 2011
+++ rtems-testing/sim-scripts/pc386.in  Sun Mar 13 17:17:11 2011
</font><font color='#997700'>@@ -68,6 +68,7 @@
</font>   # faulty thread may be deleted or suspended
   for pattern in  \
      "FAULTY THREAD WILL BE " \
<font color='#000088'>+     "raw handler conne" \
</font>      "Error code pushed by processor itself"
   do
     grep "${pattern}" ${logfile}
</pre>
<p> </p>
<a name='cs3'></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-03-13 Joel Sherrill <joel.sherrilL@OARcorp.com>

        * psxtest_with_thread/.init.c.swp: Removed.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/rtems-test-template/ChangeLog.diff?r1=text&tr1=1.8&r2=text&tr2=1.9&diff_format=h">M</a></td><td width='1%'>1.9</td><td width='100%'>rtems-test-template/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/rtems-test-template/psxtest_with_thread/.init.c.swp?rev=1.1&content-type=text/vnd.viewcvs-markup">R</a></td><td width='1%'><font color="#880000">1.1</font></td><td width='100%'><font color="#880000">rtems-test-template/psxtest_with_thread/.init.c.swp</font></td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems-testing/rtems-test-template/ChangeLog:1.8 rtems-testing/rtems-test-template/ChangeLog:1.9
--- rtems-testing/rtems-test-template/ChangeLog:1.8     Fri Nov  5 14:33:03 2010
+++ rtems-testing/rtems-test-template/ChangeLog Sun Mar 13 17:17:27 2011
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2011-03-13    Joel Sherrill <joel.sherrilL@OARcorp.com>
+
+       * psxtest_with_thread/.init.c.swp: Removed.
+
</font> 2010-11-05        Joel Sherrill <joel.sherrill@oarcorp.com>
 
        * psxtest/Makefile.am, psxtest/TEST.doc, psxtest/TEST.scn,
</pre>
<p> </p>
<a name='cs4'></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-03-13 Joel Sherrill <joel.sherrilL@OARcorp.com>

        * README, VERSIONS: Specify rtems-testing not gcc-testing.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/ChangeLog.diff?r1=text&tr1=1.65&r2=text&tr2=1.66&diff_format=h">M</a></td><td width='1%'>1.66</td><td width='100%'>ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/README.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%'>README</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/VERSIONS.diff?r1=text&tr1=1.16&r2=text&tr2=1.17&diff_format=h">M</a></td><td width='1%'>1.17</td><td width='100%'>VERSIONS</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems-testing/ChangeLog:1.65 rtems-testing/ChangeLog:1.66
--- rtems-testing/ChangeLog:1.65        Fri Jan 28 09:59:24 2011
+++ rtems-testing/ChangeLog     Sun Mar 13 17:17:29 2011
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2011-03-13    Joel Sherrill <joel.sherrilL@OARcorp.com>
+
+       * README, VERSIONS: Specify rtems-testing not gcc-testing.
+
</font> 2011-01-28        Joel Sherrill <joel.sherrill@oarcorp.com>
 
        * VERSIONS: Various improvements as part of testing gcc 4.6.0.

<font color='#006600'>diff -u rtems-testing/README:1.11 rtems-testing/README:1.12
--- rtems-testing/README:1.11   Thu Feb 19 13:14:42 2009
+++ rtems-testing/README        Sun Mar 13 17:17:30 2011
</font><font color='#997700'>@@ -22,9 +22,9 @@
</font>   - autoconf SOURCE directory
   - binutils SOURCE directory
   - newlib SOURCE directory
<font color='#880000'>-  - gcc-testing (this package)
</font><font color='#000088'>+  - rtems-testing (this package)
</font> 
<font color='#880000'>-Update gcc-testing/VERSIONS to point to the appropriate directories
</font><font color='#000088'>+Update rtems-testing/VERSIONS to point to the appropriate directories
</font> and versions.
 
 If the various source directories contain a CVS subdirectory,
<font color='#997700'>@@ -45,7 +45,7 @@
</font> # Add compiled tools install directory
 export PATH=${HOME}/test-gcc/install/bin:${PATH}
 # Add simulator scripts install directory
<font color='#880000'>-export PATH=${HOME}/test-gcc/gcc-testing/bin:${PATH}
</font><font color='#000088'>+export PATH=${HOME}/test-gcc/rtems-testing/bin:${PATH}
</font> 
 mkdir ~/test-gcc
 cd ~/test-gcc
<font color='#997700'>@@ -53,8 +53,8 @@
</font> cvs -z 9 -d :pserver:anonymous@www.rtems.org:/usr1/CVS login
 
 # test script infrastructure
<font color='#880000'>-cvs -z 9 -d :pserver:anonymous@www.rtems.org:/usr1/CVS co -P gcc-testing
-make -C gcc-testing/sim-scripts
</font><font color='#000088'>+cvs -z 9 -d :pserver:anonymous@www.rtems.org:/usr1/CVS co -P rtems-testing
+make -C rtems-testing/sim-scripts
</font> 
 # rtems
 cvs -z 9 -d :pserver:anonymous@www.rtems.org:/usr1/CVS co -P rtems

<font color='#006600'>diff -u rtems-testing/VERSIONS:1.16 rtems-testing/VERSIONS:1.17
--- rtems-testing/VERSIONS:1.16 Fri Jan 28 09:59:24 2011
+++ rtems-testing/VERSIONS      Sun Mar 13 17:17:30 2011
</font><font color='#997700'>@@ -31,7 +31,7 @@
</font> INSTALL=${BASEDIR}/install-${GCC_VERSION}
 BSP_INSTALL=${INSTALL}
 #BSP_INSTALL=${BASEDIR}/bsp-install
<font color='#880000'>-SCRIPTDIR=${BASEDIR}/gcc-testing
</font><font color='#000088'>+SCRIPTDIR=${BASEDIR}/rtems-testing
</font> LOGDIR=${BASEDIR}/log
 RESULTSDIR=${BASEDIR}/results-trunk
 
</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>