[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: snapshot in preparation for m4 1.4.12
From: |
Eric Blake |
Subject: |
Re: snapshot in preparation for m4 1.4.12 |
Date: |
Tue, 19 Aug 2008 06:50:41 -0600 |
User-agent: |
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.16) Gecko/20080708 Thunderbird/2.0.0.16 Mnenhy/0.7.5.666 |
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
According to Thomas Klausner on 8/14/2008 1:21 PM:
> One failure on NetBSD-4.99.72/amd64:
> test-frexp.c:113: assertion failed
> [1] Abort trap (core dumped) EXEEXT="" EXEEXT...
> FAIL: test-frexp
Thanks for the report. Are you able to help us fix gnulib, by debugging
where the replacement frexp went wrong?
>
> Three more skipped:
> SKIP: test-c-stack2.sh
Probably because you didn't install libsigsegv, not necessarily a problem,
but something you might want to try. Be aware, though, that libsigsegv
2.5 has a known bug,
http://lists.gnu.org/archive/html/bug-gnulib/2008-07/msg00073.html.
> SKIP: test-lock
> SKIP: test-tls
Expected; these tests are only run if you use ./configure --enable-threads
(generally overkill for m4, since it does not need threading). Bruno, can
I apply this patch, so people quit complaining when these tests are skipped?
- --
Don't work too hard, make some time for fun as well!
Eric Blake address@hidden
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (Cygwin)
Comment: Public key at home.comcast.net/~ericblake/eblake.gpg
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iEYEARECAAYFAkiqwaEACgkQ84KuGfSFAYBxvgCgroiB+4EqAHzmQKMK36yXi+Lu
SKwAoJ2osMLdAhGyo6cq1QWSHX3SkZlb
=DOin
-----END PGP SIGNATURE-----
>From f8e9af0658621a7b09af77d89d816a6db6696692 Mon Sep 17 00:00:00 2001
From: Eric Blake <address@hidden>
Date: Tue, 19 Aug 2008 06:42:05 -0600
Subject: [PATCH] test-lock, test-tls: mention why a test is skipped
* tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
skipped.
* tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
Signed-off-by: Eric Blake <address@hidden>
---
ChangeLog | 7 +++++++
tests/test-lock.c | 3 +++
tests/test-tls.c | 3 +++
3 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index a09e688..360d7cd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-08-19 Eric Blake <address@hidden>
+
+ test-lock, test-tls: mention why a test is skipped
+ * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
+ skipped.
+ * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
+
2008-08-18 Simon Josefsson <address@hidden>
* m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity. Use
diff --git a/tests/test-lock.c b/tests/test-lock.c
index 6d2278e..5faa8d8 100644
--- a/tests/test-lock.c
+++ b/tests/test-lock.c
@@ -678,9 +678,12 @@ main ()
/* No multithreading available. */
+#include <stdio.h>
+
int
main ()
{
+ fputs ("multithreading not enabled\n", stderr);
return 77;
}
diff --git a/tests/test-tls.c b/tests/test-tls.c
index 83c4ffb..b9806bb 100644
--- a/tests/test-tls.c
+++ b/tests/test-tls.c
@@ -314,9 +314,12 @@ main ()
/* No multithreading available. */
+#include <stdio.h>
+
int
main ()
{
+ fputs ("multithreading not enabled\n", stderr);
return 77;
}
--
1.5.6.4
- Re: snapshot in preparation for m4 1.4.12, (continued)
- Re: snapshot in preparation for m4 1.4.12, Tom G. Christensen, 2008/08/09
- Re: snapshot in preparation for m4 1.4.12, Eric Blake, 2008/08/13
- Re: snapshot in preparation for m4 1.4.12, Tom G. Christensen, 2008/08/13
- sa_sigaction [was: snapshot in preparation for m4 1.4.12], Eric Blake, 2008/08/13
- Re: sa_sigaction [was: snapshot in preparation for m4 1.4.12], Tom G. Christensen, 2008/08/14
- Re: sa_sigaction [was: snapshot in preparation for m4 1.4.12], Eric Blake, 2008/08/16
- Re: sa_sigaction [was: snapshot in preparation for m4 1.4.12], Eric Blake, 2008/08/17
Re: snapshot in preparation for m4 1.4.12, Rick Genter, 2008/08/12
Re: snapshot in preparation for m4 1.4.12, Thomas Klausner, 2008/08/14
- Re: snapshot in preparation for m4 1.4.12,
Eric Blake <=