This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Libtool".

The branch, master has been updated
       via  5e43c14cc9a99af8fbd4121cf913a66b38e100e9 (commit)
      from  0980a3993a6138895d4884f92ff9764d426b148d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 5e43c14cc9a99af8fbd4121cf913a66b38e100e9
Author: Ralf Wildenhues <[email protected]>
Date:   Sat Jan 31 11:27:11 2009 +0100

    Use AT_CHECK more liberally in duplicate members test.
    
    * tests/duplicate_members.at (duplicate members in archive
    tests): Wrap link commands in AT_CHECK, they might fail, as seen
    on QNX.
    * THANKS: Update.
    Report by Mike Gorchak.
    
    Signed-off-by: Ralf Wildenhues <[email protected]>

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                  |    9 +++++++++
 THANKS                     |    1 +
 tests/duplicate_members.at |    9 ++++++---
 3 files changed, 16 insertions(+), 3 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index fb41b86..c6eb87e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2009-01-31  Ralf Wildenhues  <[email protected]>
+
+       Use AT_CHECK more liberally in duplicate members test.
+       * tests/duplicate_members.at (duplicate members in archive
+       tests): Wrap link commands in AT_CHECK, they might fail, as seen
+       on QNX.
+       * THANKS: Update.
+       Report by Mike Gorchak.
+
 2009-01-30  Akim Demaille  <[email protected]>
 
        Fix cwrapper warnings from MSVC 2005.
diff --git a/THANKS b/THANKS
index d1ed846..6acff4d 100644
--- a/THANKS
+++ b/THANKS
@@ -116,6 +116,7 @@
   Marcel Loose                 [email protected]
   Mark Kettenis                        [email protected]
   Michael Haubenwallner                [email protected]
+  Mike Gorchak                 [email protected]
   Mike Frysinger               [email protected]
   Nix                          [email protected]
   Olaf Lenz                    [email protected]
diff --git a/tests/duplicate_members.at b/tests/duplicate_members.at
index 657e307..4f054f7 100755
--- a/tests/duplicate_members.at
+++ b/tests/duplicate_members.at
@@ -61,13 +61,16 @@ do
   $LIBTOOL --mode=compile --tag=CC $CC $CPPFLAGS $CFLAGS -c -o $a/a.lo $a/a.c
 done
 $LIBTOOL --mode=link --tag=CC $CC $CFLAGS $LDFLAGS -o libc0.la 6/a.lo
-$LIBTOOL --mode=link --tag=CC $CC $CFLAGS $LDFLAGS -o libconv.la 1/a.lo 2/a.lo 
3/a.lo 4/a.lo 5/a.lo libc0.la
+AT_CHECK([$LIBTOOL --mode=link --tag=CC $CC $CFLAGS $LDFLAGS -o libconv.la ]dnl
+        [1/a.lo 2/a.lo 3/a.lo 4/a.lo 5/a.lo libc0.la], [], [ignore], [ignore])
 
 $LIBTOOL --mode=compile --tag=CC $CC $CPPFLAGS $CFLAGS -c -o bar.lo bar.c
-$LIBTOOL --mode=link --tag=CC $CC $CFLAGS $LDFLAGS -o libbar.la bar.lo 
libconv.la -rpath /notexist
+AT_CHECK([$LIBTOOL --mode=link --tag=CC $CC $CFLAGS $LDFLAGS -o libbar.la ]dnl
+        [ bar.lo libconv.la -rpath /notexist], [], [ignore], [ignore])
 
 $LIBTOOL --mode=compile --tag=CC $CC $CPPFLAGS $CFLAGS -c -o main.lo main.c
-$LIBTOOL --mode=link --tag=CC $CC $CFLAGS $LDFLAGS -o main$EXEEXT main.lo 
./libbar.la
+AT_CHECK([$LIBTOOL --mode=link --tag=CC $CC $CFLAGS $LDFLAGS -o main$EXEEXT 
]dnl
+        [main.lo ./libbar.la], [], [ignore], [ignore])
 
 LT_AT_EXEC_CHECK([./main],[0],[ignore],[ignore])
 


hooks/post-receive
--
GNU Libtool


Reply via email to