<!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-09-16)</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>sh</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-09-16 Sebastian Huber <sebastian.huber@embedded-brains.de>
* check_endof: Update due to test case output changes.
* gdb-sim-run.in: Run more test cases.
* sis.in: Use 180 seconds time limit for all test cases.
</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.101&r2=text&tr2=1.102&diff_format=h">M</a></td><td width='1%'>1.102</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/check_endof.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%'>sim-scripts/check_endof</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/sim-scripts/gdb-sim-run.in.diff?r1=text&tr1=1.55&r2=text&tr2=1.56&diff_format=h">M</a></td><td width='1%'>1.56</td><td width='100%'>sim-scripts/gdb-sim-run.in</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/sim-scripts/sis.in.diff?r1=text&tr1=1.6&r2=text&tr2=1.7&diff_format=h">M</a></td><td width='1%'>1.7</td><td width='100%'>sim-scripts/sis.in</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems-testing/sim-scripts/ChangeLog:1.101 rtems-testing/sim-scripts/ChangeLog:1.102
--- rtems-testing/sim-scripts/ChangeLog:1.101 Wed Aug 31 15:43:57 2011
+++ rtems-testing/sim-scripts/ChangeLog Fri Sep 16 04:29:34 2011
</font><font color='#997700'>@@ -1,3 +1,9 @@
</font><font color='#000088'>+2011-09-16 Sebastian Huber <sebastian.huber@embedded-brains.de>
+
+ * check_endof: Update due to test case output changes.
+ * gdb-sim-run.in: Run more test cases.
+ * sis.in: Use 180 seconds time limit for all test cases.
+
</font> 2011-08-31 Joel Sherrill <joel.sherrill@oarcorp.com>
* gdb-sim.in: Default bspDoTrace variable to no.
<font color='#006600'>diff -u rtems-testing/sim-scripts/check_endof:1.2 rtems-testing/sim-scripts/check_endof:1.3
--- rtems-testing/sim-scripts/check_endof:1.2 Fri Oct 16 13:58:37 2009
+++ rtems-testing/sim-scripts/check_endof Fri Sep 16 04:29:34 2011
</font><font color='#997700'>@@ -19,15 +19,7 @@
</font> case $f in
# we don't expect an "END OF" from these
*ppd*) ;;
<font color='#880000'>- *fatal*) ;;
</font> *minimum*) ;;
<font color='#880000'>- *stackchk*) ;;
- # These do not know when they hit the case so run until killed.
- *spintrcritical06*) ;;
- *spintrcritical07*) ;;
- *spintrcritical09*) ;;
- *spintrcritical13*) ;;
- *spintrcritical14*) ;;
</font> *)
grep "END OF" $f >/dev/null
if [ $? -ne 0 ] ; then
<font color='#006600'>diff -u rtems-testing/sim-scripts/gdb-sim-run.in:1.55 rtems-testing/sim-scripts/gdb-sim-run.in:1.56
--- rtems-testing/sim-scripts/gdb-sim-run.in:1.55 Wed Jul 20 15:49:47 2011
+++ rtems-testing/sim-scripts/gdb-sim-run.in Fri Sep 16 04:29:34 2011
</font><font color='#997700'>@@ -89,9 +89,8 @@
</font> enable_display_adapter="no"
enable_network="no"
rtems_test="no"
<font color='#880000'>-skipIntrCriticalTest="no"
</font>
<font color='#880000'>-while getopts "vcCgGil:L:DsSNT" OPT
</font><font color='#000088'>+while getopts "vcCgGil:L:DsNT" OPT
</font> do
case "$OPT" in
v) verbose="yes";;
<font color='#997700'>@@ -105,7 +104,6 @@
</font> l) defaultLimit="$OPTARG";;
L) logdir="$OPTARG";;
s) use_sysv_ipc="yes";;
<font color='#880000'>- S) skipIntrCriticalTest="yes";;
</font> t) doTrace="yes";;
T) rtems_test="yes";;
*) fatal;;
<font color='#997700'>@@ -413,16 +411,6 @@
</font> ## If the test is known to be interactive or locks up and we are
## in batch mode, skip it.
case ${baseToRun} in
<font color='#880000'>- monitor*|termios.*|fileio*|capture*)
- warn "skipping interactive ${baseToRun}"
- continue
- ;;
- spintrcritical*|psxintrcritical*)
- if [ ${skipIntrCriticalTest} = "yes" ] ; then
- warn "skipping Interrupt Critical Section test ${baseToRun}"
- continue
- fi
- ;;
</font> appstart*)
warn "skipping intermediate file ${baseToRun}"
continue
<font color='#006600'>diff -u rtems-testing/sim-scripts/sis.in:1.6 rtems-testing/sim-scripts/sis.in:1.7
--- rtems-testing/sim-scripts/sis.in:1.6 Mon Oct 12 16:16:23 2009
+++ rtems-testing/sim-scripts/sis.in Fri Sep 16 04:29:34 2011
</font><font color='#997700'>@@ -18,11 +18,7 @@
</font> {
testname=$1
case ${testname} in
<font color='#880000'>- *stackchk*)limit=5 ;;
- *fatal*) limit=1 ;;
- *minimum*) limit=1 ;;
- *psxtime*) limit=180 ;;
- *) limit=60 ;;
</font><font color='#000088'>+ *) limit=180 ;;
</font> esac
echo ${limit}
}
</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>