change log for rtems (2011-01-10)

rtems-vc at rtems.org rtems-vc at rtems.org
Mon Jan 10 06:11:35 UTC 2011


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

	* configure.ac: Use ac_cv_header_complex_h.

M  1.244  testsuites/libtests/ChangeLog
M   1.59  testsuites/libtests/configure.ac

diff -u rtems/testsuites/libtests/ChangeLog:1.243 rtems/testsuites/libtests/ChangeLog:1.244
--- rtems/testsuites/libtests/ChangeLog:1.243	Thu Dec 16 15:33:30 2010
+++ rtems/testsuites/libtests/ChangeLog	Sun Jan  9 23:15:01 2011
@@ -1,3 +1,7 @@
+2011-01-10	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	* configure.ac: Use ac_cv_header_complex_h.
+
 2010-12-16	Joel Sherrill <joel.sherrill at oarcorp.com>
 
 	* math/Makefile.am, math/init.c: Init task has to be floating point and

diff -u rtems/testsuites/libtests/configure.ac:1.58 rtems/testsuites/libtests/configure.ac:1.59
--- rtems/testsuites/libtests/configure.ac:1.58	Tue Nov 30 23:43:07 2010
+++ rtems/testsuites/libtests/configure.ac	Sun Jan  9 23:15:01 2011
@@ -36,7 +36,7 @@
 AM_CONDITIONAL(TARTESTS,test "$as_ln_s" = "ln -s" && test -n "$PAX")
 
 AM_CONDITIONAL(HAS_CXX,test "$rtems_cv_HAS_CPLUSPLUS" = "yes")
-AM_CONDITIONAL([HAS_COMPLEX],[test "$ac_cv_header_COMPLEX_H" = yes])
+AM_CONDITIONAL([HAS_COMPLEX],[test "$ac_cv_header_complex_h" = yes])
 
 # Explicitly list all Makefiles here
 AC_CONFIG_FILES([Makefile


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

	* math/domath.in: Fix typo in printf.
	* math/domath.c, math/domathf.c, math/domathl.c: Regenerate.
	* math/math.scn: Regenerate.

M  1.245  testsuites/libtests/ChangeLog
M    1.2  testsuites/libtests/math/domath.c
M    1.2  testsuites/libtests/math/domath.in
M    1.2  testsuites/libtests/math/domathf.c
M    1.2  testsuites/libtests/math/domathl.c
M    1.2  testsuites/libtests/math/math.scn

diff -u rtems/testsuites/libtests/ChangeLog:1.244 rtems/testsuites/libtests/ChangeLog:1.245
--- rtems/testsuites/libtests/ChangeLog:1.244	Sun Jan  9 23:15:01 2011
+++ rtems/testsuites/libtests/ChangeLog	Mon Jan 10 00:07:18 2011
@@ -1,5 +1,11 @@
 2011-01-10	Ralf Corsépius <ralf.corsepius at rtems.org>
 
+	* math/domath.in: Fix typo in printf.
+	* math/domath.c, math/domathf.c, math/domathl.c: Regenerate.
+	* math/math.scn: Regenerate.
+
+2011-01-10	Ralf Corsépius <ralf.corsepius at rtems.org>
+
 	* configure.ac: Use ac_cv_header_complex_h.
 
 2010-12-16	Joel Sherrill <joel.sherrill at oarcorp.com>

diff -u rtems/testsuites/libtests/math/domath.c:1.1 rtems/testsuites/libtests/math/domath.c:1.2
--- rtems/testsuites/libtests/math/domath.c:1.1	Tue Nov 30 07:48:35 2010
+++ rtems/testsuites/libtests/math/domath.c	Mon Jan 10 00:07:18 2011
@@ -264,7 +264,7 @@
   fprintf( stdout, "tanh           : %f\n", f1);
 
   f1 = tgamma (2.1);
-  fprintf( stdout, "tanh           : %f\n", f1);
+  fprintf( stdout, "tgamma         : %f\n", f1);
 
   f1 = trunc (3.5);
   fprintf( stdout, "trunc          : %f\n", f1);

diff -u rtems/testsuites/libtests/math/domath.in:1.1 rtems/testsuites/libtests/math/domath.in:1.2
--- rtems/testsuites/libtests/math/domath.in:1.1	Tue Nov 30 07:48:35 2010
+++ rtems/testsuites/libtests/math/domath.in	Mon Jan 10 00:07:18 2011
@@ -264,7 +264,7 @@
   fprintf( stdout, "tanh at FSUFFIX@          : %f\n", f1);
 
   f1 = tgamma at FSUFFIX@(2.1);
-  fprintf( stdout, "tanh at FSUFFIX@          : %f\n", f1);
+  fprintf( stdout, "tgamma at FSUFFIX@        : %f\n", f1);
 
   f1 = trunc at FSUFFIX@(3.5);
   fprintf( stdout, "trunc at FSUFFIX@         : %f\n", f1);

diff -u rtems/testsuites/libtests/math/domathf.c:1.1 rtems/testsuites/libtests/math/domathf.c:1.2
--- rtems/testsuites/libtests/math/domathf.c:1.1	Tue Nov 30 07:48:35 2010
+++ rtems/testsuites/libtests/math/domathf.c	Mon Jan 10 00:07:18 2011
@@ -264,7 +264,7 @@
   fprintf( stdout, "tanhf          : %f\n", f1);
 
   f1 = tgammaf(2.1);
-  fprintf( stdout, "tanhf          : %f\n", f1);
+  fprintf( stdout, "tgammaf        : %f\n", f1);
 
   f1 = truncf(3.5);
   fprintf( stdout, "truncf         : %f\n", f1);

diff -u rtems/testsuites/libtests/math/domathl.c:1.1 rtems/testsuites/libtests/math/domathl.c:1.2
--- rtems/testsuites/libtests/math/domathl.c:1.1	Tue Nov 30 07:48:35 2010
+++ rtems/testsuites/libtests/math/domathl.c	Mon Jan 10 00:07:18 2011
@@ -264,7 +264,7 @@
   fprintf( stdout, "tanhl          : %Lf\n", f1);
 
   f1 = tgammal(2.1);
-  fprintf( stdout, "tanhl          : %Lf\n", f1);
+  fprintf( stdout, "tgammal        : %Lf\n", f1);
 
   f1 = truncl(3.5);
   fprintf( stdout, "truncl         : %Lf\n", f1);

diff -u rtems/testsuites/libtests/math/math.scn:1.1 rtems/testsuites/libtests/math/math.scn:1.2
--- rtems/testsuites/libtests/math/math.scn:1.1	Tue Nov 30 07:48:35 2010
+++ rtems/testsuites/libtests/math/math.scn	Mon Jan 10 00:07:18 2011
@@ -75,7 +75,7 @@
 sqrt           : 3.000000
 tan            : 1.000000
 tanh           : 0.655794
-tanh           : 1.046486
+tgamma         : 1.046486
 trunc          : 3.000000
 y0             : 0.228084
 y1             : -0.621136
@@ -156,7 +156,7 @@
 sqrtf          : 3.000000
 tanf           : 1.000000
 tanhf          : 0.655794
-tanhf          : 1.046486
+tgammaf        : 1.046486
 truncf         : 3.000000
 y0f            : 0.228084
 y1f            : -0.621136



--

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/20110110/908ea7a5/attachment.html>


More information about the vc mailing list