change log for rtems-testing (2011-01-28)
rtems-vc at rtems.org
rtems-vc at rtems.org
Fri Jan 28 19:10:04 UTC 2011
*joel*:
2011-01-28 Joel Sherrill <joel.sherrill at oarcorp.com>
* cvscommit: Now running Go tests on PowerPC (2/3 passing) and i386 (in
process).
M 1.15 cvs-helpers/ChangeLog
M 1.5 cvs-helpers/cvscommit
diff -u rtems-testing/cvs-helpers/ChangeLog:1.14 rtems-testing/cvs-helpers/ChangeLog:1.15
--- rtems-testing/cvs-helpers/ChangeLog:1.14 Tue Jan 4 13:53:53 2011
+++ rtems-testing/cvs-helpers/ChangeLog Fri Jan 28 12:21:20 2011
@@ -1,3 +1,8 @@
+2011-01-28 Joel Sherrill <joel.sherrill at oarcorp.com>
+
+ * cvscommit: Now running Go tests on PowerPC (2/3 passing) and i386 (in
+ process).
+
2011-01-04 Joel Sherrill <joel.sherrill at oarcorp.com>
* cvscommit, mkChangeLogList: Avoid processing autom4te.cache
diff -u rtems-testing/cvs-helpers/cvscommit:1.4 rtems-testing/cvs-helpers/cvscommit:1.5
--- rtems-testing/cvs-helpers/cvscommit:1.4 Tue Jan 4 13:53:53 2011
+++ rtems-testing/cvs-helpers/cvscommit Fri Jan 28 12:21:20 2011
@@ -78,6 +78,15 @@
subdirs="* ."
fi
+# Make sure we have user information
+if test "X${userInfo}" = "X" ; then
+ user_name=`grep ^${user} /etc/passwd | cut -d':' -f5 | cut -d',' -f1`
+ if test "X${user_name}" = "X" ; then
+ echo "User information not set"
+ usage
+ fi
+fi
+
commit()
{
${CVS} up ChangeLog
*joel*:
2011-01-28 Joel Sherrill <joel.sherrill at oarcorp.com>
* do_one, networkconfig.h, rtems_gccgo_init.c: Now running Go tests on
PowerPC (2/3 passing) and i386 (in process).
M 1.20 gcc/ChangeLog
M 1.22 gcc/do_one
M 1.2 gcc/networkconfig.h
M 1.2 gcc/rtems_gccgo_init.c
diff -u rtems-testing/gcc/ChangeLog:1.19 rtems-testing/gcc/ChangeLog:1.20
--- rtems-testing/gcc/ChangeLog:1.19 Fri Jan 28 09:59:17 2011
+++ rtems-testing/gcc/ChangeLog Fri Jan 28 12:21:23 2011
@@ -1,5 +1,10 @@
2011-01-28 Joel Sherrill <joel.sherrill at oarcorp.com>
+ * do_one, networkconfig.h, rtems_gccgo_init.c: Now running Go tests on
+ PowerPC (2/3 passing) and i386 (in process).
+
+2011-01-28 Joel Sherrill <joel.sherrill at oarcorp.com>
+
* do_one, test_driver, testsuite/ada/acats/Makefile.rtems: Various
improvements as part of testing gcc 4.6.0.
diff -u rtems-testing/gcc/do_one:1.21 rtems-testing/gcc/do_one:1.22
--- rtems-testing/gcc/do_one:1.21 Fri Jan 28 09:59:18 2011
+++ rtems-testing/gcc/do_one Fri Jan 28 12:21:23 2011
@@ -749,7 +749,8 @@
fi
##### Do the gccgo tests
-if [ ${do_gccgo} = "yes" -a ${run_gccgotests} = "yes" -a \
+set -x
+if [ $a ${run_gccgotests} = "yes" -a \
-d ${BASEDIR}/b-gccgo1-${cpu} -a ${go_fail} = "no" ] ; then
echo "Running GCC Go Tests..."
cd ${BASEDIR}/b-gccgo1-${cpu}/gcc || exit 1
@@ -781,7 +782,8 @@
fi
##### Do the libgo tests
-if [ ${run_libgotests} = "yes" ] ; then
+if [ $a ${run_libgotests} = "yes" -a \
+ -d ${BASEDIR}/b-gccgo1-${cpu} -a ${go_fail} = "no" ] ; then
echo "Running libgo DejaGNU tests..."
cd ${BASEDIR}/b-gccgo1-${cpu} || exit 1
time sh -x ${SCRIPTDIR}/gcc/rundeja ${bsp} libgo \
diff -u rtems-testing/gcc/networkconfig.h:1.1 rtems-testing/gcc/networkconfig.h:1.2
--- rtems-testing/gcc/networkconfig.h:1.1 Tue Dec 7 15:09:31 2010
+++ rtems-testing/gcc/networkconfig.h Fri Jan 28 12:21:23 2011
@@ -22,21 +22,26 @@
#include <bsp.h>
/*
- * Loopback interface
- */
-extern int rtems_bsdnet_loopattach();
-
-/*
* Default network interface
*/
static struct rtems_bsdnet_ifconfig netdriver_config = {
- "lo0", /* name */
- rtems_bsdnet_loopattach, /* attach function */
- NULL, /* No more interfaces */
- "127.0.0.1", /* IP address */
- "255.0.0.0", /* IP net mask */
- NULL, /* Driver supplies hardware address */
- 0 /* Use default driver parameters */
+ NULL, /* Loop back interface only */
+ NULL, /* Loop back interface only */
+ NULL, /* do not use bootp */
+ 0, /* Default network task priority */
+ 0, /* Default mbuf capacity */
+ 0, /* Default mbuf cluster capacity */
+ "rtems", /* Host name */
+ "nodomain.com", /* Domain name */
+ "127.0.0.1", /* Gateway */
+ "127.0.0.1", /* Log host */
+ {"127.0.0.1" }, /* Name server(s) */
+ {"127.0.0.1" }, /* NTP server(s) */
+ 0, /* sb_efficiency */
+ 0, /* udp_tx_buf_size */
+ 0, /* udp_rx_buf_size */
+ 0, /* tcp_tx_buf_size */
+ 0 /* tcp_rx_buf_size */
};
/*
@@ -53,6 +58,12 @@
"127.0.0.1", /* Gateway */
"127.0.0.1", /* Log host */
{"127.0.0.1" }, /* Name server(s) */
+ {"127.0.0.1" }, /* NTP server(s) */
+ 0, /* sb_efficiency */
+ 0, /* udp_tx_buf_size */
+ 0, /* udp_rx_buf_size */
+ 0, /* tcp_tx_buf_size */
+ 0 /* tcp_rx_buf_size */
};
/*
diff -u rtems-testing/gcc/rtems_gccgo_init.c:1.1 rtems-testing/gcc/rtems_gccgo_init.c:1.2
--- rtems-testing/gcc/rtems_gccgo_init.c:1.1 Tue Dec 7 15:09:31 2010
+++ rtems-testing/gcc/rtems_gccgo_init.c Fri Jan 28 12:21:23 2011
@@ -118,6 +118,7 @@
void _flush_cache()
{
}
+#endif
/* configuration information */
*joel*:
2011-01-28 Joel Sherrill <joel.sherrill at oarcorp.com>
* pc386.in: Now running Go tests on PowerPC (2/3 passing) and i386 (in
process).
M 1.92 sim-scripts/ChangeLog
M 1.10 sim-scripts/pc386.in
diff -u rtems-testing/sim-scripts/ChangeLog:1.91 rtems-testing/sim-scripts/ChangeLog:1.92
--- rtems-testing/sim-scripts/ChangeLog:1.91 Fri Jan 21 10:58:43 2011
+++ rtems-testing/sim-scripts/ChangeLog Fri Jan 28 12:21:27 2011
@@ -1,3 +1,8 @@
+2011-01-28 Joel Sherrill <joel.sherrill at oarcorp.com>
+
+ * pc386.in: Now running Go tests on PowerPC (2/3 passing) and i386 (in
+ process).
+
2011-01-21 Joel Sherrill <joel.sherrilL at OARcorp.com>
* gdb-sim-run.in: Remove lines which break running tests in RTEMS and
diff -u rtems-testing/sim-scripts/pc386.in:1.9 rtems-testing/sim-scripts/pc386.in:1.10
--- rtems-testing/sim-scripts/pc386.in:1.9 Thu Jul 22 06:38:15 2010
+++ rtems-testing/sim-scripts/pc386.in Fri Jan 28 12:21:28 2011
@@ -59,7 +59,7 @@
# -cpu 486
# can also redirect to file with file:log/"`basename ${1} .exe`
SERIAL_ARG="stdio"
- echo "-m 64 -boot a -fda ${fd0Image} -hda fat:${hd0Dir} ${COVERAGE_ARG} \
+ echo "-m 512 -boot a -cpu 486 -fda ${fd0Image} -hda fat:${hd0Dir} ${COVERAGE_ARG} \
-monitor null -nographic -serial ${SERIAL_ARG} --no-reboot"
}
--
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/20110128/d1b9af13/attachment-0001.html>
More information about the vc
mailing list