change log for rtems (2011-07-29)

rtems-vc at rtems.org rtems-vc at rtems.org
Fri Jul 29 14:10:12 UTC 2011


 *jennifer*:
2011-07-29	Jennifer Averett <Jennifer.Averett at OARcorp.com>

	* support/include/test_support.h: Fixed incorrect name in prototype.

M  1.188  testsuites/ChangeLog
M    1.7  testsuites/support/include/test_support.h

diff -u rtems/testsuites/ChangeLog:1.187 rtems/testsuites/ChangeLog:1.188
--- rtems/testsuites/ChangeLog:1.187	Fri Jul  1 09:28:03 2011
+++ rtems/testsuites/ChangeLog	Fri Jul 29 08:48:15 2011
@@ -1,3 +1,7 @@
+2011-07-29	Jennifer Averett <Jennifer.Averett at OARcorp.com>
+
+	* support/include/test_support.h: Fixed incorrect name in prototype.
+
 2011-07-01	Jennifer Averett <Jennifer.Averett at OARcorp.com>
 
 	* support/include/tmacros.h: Disable the check for dispatch disable

diff -u rtems/testsuites/support/include/test_support.h:1.6 rtems/testsuites/support/include/test_support.h:1.7
--- rtems/testsuites/support/include/test_support.h:1.6	Tue Jun 28 16:09:13 2011
+++ rtems/testsuites/support/include/test_support.h	Fri Jul 29 08:48:16 2011
@@ -85,7 +85,7 @@
 /**************              TEST SUPPORT               **************/
 /*********************************************************************/
 /*********************************************************************/
-extern void locked_print_init(void);
+extern void locked_print_initialize(void);
 extern void locked_printf(const char *fmt, ...);
 extern void locked_printk(const char *fmt, ...);
 


 *ralf*:
2011-07-29	Ralf Corsépius <ralf.corsepius at rtems.org>

	* POSIX/iconv.c, POSIX/iconv_open.c, POSIX/iconv_close.c: New.
	* POSIX/Makefile.am: Add iconv, iconv_open, iconv_close.

M  1.273  testsuites/libtests/ChangeLog
M    1.8  testsuites/libtests/POSIX/Makefile.am
A    1.1  testsuites/libtests/POSIX/iconv.c
A    1.1  testsuites/libtests/POSIX/iconv_close.c
A    1.1  testsuites/libtests/POSIX/iconv_open.c

diff -u rtems/testsuites/libtests/ChangeLog:1.272 rtems/testsuites/libtests/ChangeLog:1.273
--- rtems/testsuites/libtests/ChangeLog:1.272	Tue Jul 12 10:55:44 2011
+++ rtems/testsuites/libtests/ChangeLog	Fri Jul 29 08:59:42 2011
@@ -1,3 +1,8 @@
+2011-07-29	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	* POSIX/iconv.c, POSIX/iconv_open.c, POSIX/iconv_close.c: New.
+	* POSIX/Makefile.am: Add iconv, iconv_open, iconv_close.
+
 2011-07-12	Joel Sherrill <joel.sherrill at oarcorp.com>
 
 	* malloc04/init.c, malloc04/malloc04.scn: Remove test cases which are

diff -u rtems/testsuites/libtests/POSIX/Makefile.am:1.7 rtems/testsuites/libtests/POSIX/Makefile.am:1.8
--- rtems/testsuites/libtests/POSIX/Makefile.am:1.7	Wed Feb  2 01:34:34 2011
+++ rtems/testsuites/libtests/POSIX/Makefile.am	Fri Jul 29 08:59:42 2011
@@ -61,6 +61,15 @@
 check_PROGRAMS += htonl
 htonl_SOURCES = htonl.c
 
+check_PROGRAMS += iconv
+iconv_SOURCES = iconv.c
+
+check_PROGRAMS += iconv_close
+iconv_close_SOURCES = iconv_close.c
+
+check_PROGRAMS += iconv_open
+iconv_open_SOURCES = iconv_open.c
+
 check_PROGRAMS += lseek
 lseek_SOURCES = lseek.c
 

diff -u /dev/null rtems/testsuites/libtests/POSIX/iconv.c:1.1
--- /dev/null	Fri Jul 29 09:10:12 2011
+++ rtems/testsuites/libtests/POSIX/iconv.c	Fri Jul 29 08:59:42 2011
@@ -0,0 +1,30 @@
+/*
+ * Copyright (c) 2011 by
+ * Ralf Corsépius, Ulm, Germany. All rights reserved.
+ *
+ * Permission to use, copy, modify, and distribute this software
+ * is freely granted, provided that this notice is preserved.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <iconv.h>
+
+int
+main (void)
+{
+  iconv_t cd = NULL;
+  char inbuf[42];
+  size_t isize;
+  char outbuf[42];
+  size_t osize;
+  size_t ret;
+
+  char *i = inbuf;
+  char *o = outbuf;
+  ret = iconv(cd, &i, &isize, &o, &osize);
+
+  return 0;
+}

diff -u /dev/null rtems/testsuites/libtests/POSIX/iconv_close.c:1.1
--- /dev/null	Fri Jul 29 09:10:12 2011
+++ rtems/testsuites/libtests/POSIX/iconv_close.c	Fri Jul 29 08:59:42 2011
@@ -0,0 +1,24 @@
+/*
+ * Copyright (c) 2011 by
+ * Ralf Corsépius, Ulm, Germany. All rights reserved.
+ *
+ * Permission to use, copy, modify, and distribute this software
+ * is freely granted, provided that this notice is preserved.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <iconv.h>
+
+int
+main (void)
+{
+  iconv_t cd = NULL;
+  int ret;
+
+  ret = iconv_close(cd);
+
+  return 0;
+}

diff -u /dev/null rtems/testsuites/libtests/POSIX/iconv_open.c:1.1
--- /dev/null	Fri Jul 29 09:10:12 2011
+++ rtems/testsuites/libtests/POSIX/iconv_open.c	Fri Jul 29 08:59:42 2011
@@ -0,0 +1,23 @@
+/*
+ * Copyright (c) 2011 by
+ * Ralf Corsépius, Ulm, Germany. All rights reserved.
+ *
+ * Permission to use, copy, modify, and distribute this software
+ * is freely granted, provided that this notice is preserved.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <iconv.h>
+
+int
+main (void)
+{
+  iconv_t ret;
+
+  ret = iconv_open("utf8", "ascii" );
+
+  return 0;
+}


 *ralf*:
2011-07-29	Ralf Corsépius <ralf.corsepius at rtems.org>

	* bsp_specs: Remove *lib (Anachronism).

M   1.50  c/src/lib/libbsp/nios2/nios2_iss/ChangeLog
M    1.4  c/src/lib/libbsp/nios2/nios2_iss/bsp_specs

diff -u rtems/c/src/lib/libbsp/nios2/nios2_iss/ChangeLog:1.49 rtems/c/src/lib/libbsp/nios2/nios2_iss/ChangeLog:1.50
--- rtems/c/src/lib/libbsp/nios2/nios2_iss/ChangeLog:1.49	Mon Mar 21 15:24:07 2011
+++ rtems/c/src/lib/libbsp/nios2/nios2_iss/ChangeLog	Fri Jul 29 09:06:56 2011
@@ -1,3 +1,7 @@
+2011-07-29	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	* bsp_specs: Remove *lib (Anachronism).
+
 2011-03-21	Joel Sherrill <joel.sherrilL at OARcorp.com>
 
 	* Makefile.am: Remove stub version.

diff -u rtems/c/src/lib/libbsp/nios2/nios2_iss/bsp_specs:1.3 rtems/c/src/lib/libbsp/nios2/nios2_iss/bsp_specs:1.4
--- rtems/c/src/lib/libbsp/nios2/nios2_iss/bsp_specs:1.3	Thu Dec  4 14:32:06 2008
+++ rtems/c/src/lib/libbsp/nios2/nios2_iss/bsp_specs	Fri Jul 29 09:06:56 2011
@@ -1,13 +1,7 @@
-%rename lib old_lib
 %rename endfile old_endfile
 %rename startfile old_startfile
 %rename link old_link
 
-*lib:
-%{!qrtems: %(old_lib)} \
-%{!nostdlib: %{qrtems: --start-group -lrtemsbsp -lrtemscpu -lc -lgcc --end-group \
-%{!qnolinkcmds: -T linkcmds%s}}}
-
 *startfile:
 %{!qrtems: %(old_startfile)} \
 %{!nostdlib: %{qrtems: start.o%s crti.o%s crtbegin.o%s -e start}}



--

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/20110729/95367d84/attachment.html>


More information about the vc mailing list