[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Automake-commit] [SCM] GNU Automake branch, branch-1-10, updated. v1.10
From: |
Ralf Wildenhues |
Subject: |
[Automake-commit] [SCM] GNU Automake branch, branch-1-10, updated. v1.10.2-37-g6326781 |
Date: |
Sat, 07 Mar 2009 00:47:57 +0000 |
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 Automake".
http://git.sv.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=632678196866ac579fb061fa8b00b21d64a8fc1e
The branch, branch-1-10 has been updated
via 632678196866ac579fb061fa8b00b21d64a8fc1e (commit)
from 366983d72292e4f3630c3b3e95ec291bd827be34 (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 632678196866ac579fb061fa8b00b21d64a8fc1e
Author: Ralf Wildenhues <address@hidden>
Date: Sat Mar 7 01:41:29 2009 +0100
testsuite: SKIP compile tests if configure found no compiler.
* tests/depend6.test: configure will exit 77 if AC_PROG_CC found
no working compiler. Allow the test to be SKIPped in that case.
* tests/postproc.test: Likewise.
* tests/pr243.test: Likewise.
* tests/pr266.test: Likewise.
Signed-off-by: Ralf Wildenhues <address@hidden>
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 9 +++++++++
tests/depend6.test | 6 ++++--
tests/postproc.test | 4 ++--
tests/pr243.test | 10 +++++-----
tests/pr266.test | 10 +++++-----
5 files changed, 25 insertions(+), 14 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 2c4d741..b92ebd4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2009-03-07 Ralf Wildenhues <address@hidden>
+
+ testsuite: SKIP compile tests if configure found no compiler.
+ * tests/depend6.test: configure will exit 77 if AC_PROG_CC found
+ no working compiler. Allow the test to be SKIPped in that case.
+ * tests/postproc.test: Likewise.
+ * tests/pr243.test: Likewise.
+ * tests/pr266.test: Likewise.
+
2009-03-06 Ralf Wildenhues <address@hidden>
* doc/automake.texi (maintainer-mode): Fix logic in
diff --git a/tests/depend6.test b/tests/depend6.test
index 6a1595c..7a1f722 100755
--- a/tests/depend6.test
+++ b/tests/depend6.test
@@ -1,5 +1,5 @@
#! /bin/sh
-# Copyright (C) 2008 Free Software Foundation, Inc.
+# Copyright (C) 2008, 2009 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -39,7 +39,9 @@ END
$ACLOCAL
$AUTOMAKE
$AUTOCONF
-./configure --disable-dependency-tracking 2>stderr || { cat stderr >&2; Exit
1; }
+./configure --disable-dependency-tracking 2>stderr || {
+ stat=$?; cat stderr >&2; Exit $stat;
+}
cat stderr >&2
grep shift stderr && Exit 1
:
diff --git a/tests/postproc.test b/tests/postproc.test
index 801b4b2..295a0c2 100755
--- a/tests/postproc.test
+++ b/tests/postproc.test
@@ -1,5 +1,5 @@
#! /bin/sh
-# Copyright (C) 2002, 2004 Free Software Foundation, Inc.
+# Copyright (C) 2002, 2004, 2009 Free Software Foundation, Inc.
#
# This file is part of GNU Automake.
#
@@ -44,7 +44,7 @@ mv myMakefile.in myMakefile.old
echo '# Post-processed by post-processor 3.14.' > myMakefile.in
cat myMakefile.old >> myMakefile.in
-./configure || exit 1
+./configure || Exit $?
test -f .deps/fred.Po || test -f _deps/fred.Po || exit 1
diff --git a/tests/pr243.test b/tests/pr243.test
index c077a25..92cca94 100755
--- a/tests/pr243.test
+++ b/tests/pr243.test
@@ -1,5 +1,5 @@
#! /bin/sh
-# Copyright (C) 2001, 2002 Free Software Foundation, Inc.
+# Copyright (C) 2001, 2002, 2009 Free Software Foundation, Inc.
#
# This file is part of GNU Automake.
#
@@ -41,9 +41,9 @@ noinst_PROGRAMS = fxmisc
fxmisc_SOURCES = fx64.c fximg.c fxos.c linutil.c
END
-$ACLOCAL || exit 1
-$AUTOMAKE || exit 1
-$AUTOCONF || exit 1
-./configure || exit 1
+$ACLOCAL || Exit 1
+$AUTOMAKE || Exit 1
+$AUTOCONF || Exit 1
+./configure || Exit $?
test -f .deps/fx64.Po
diff --git a/tests/pr266.test b/tests/pr266.test
index 4731f22..69b2f91 100755
--- a/tests/pr266.test
+++ b/tests/pr266.test
@@ -1,5 +1,5 @@
#! /bin/sh
-# Copyright (C) 2001, 2002 Free Software Foundation, Inc.
+# Copyright (C) 2001, 2002, 2009 Free Software Foundation, Inc.
#
# This file is part of GNU Automake.
#
@@ -39,9 +39,9 @@ noinst_PROGRAMS = fxmisc
fxmisc_SOURCES = fx64.c fximg.c fxos.c linutil.c
END
-$ACLOCAL || exit 1
-$AUTOMAKE || exit 1
-$AUTOCONF || exit 1
-./configure || exit 1
+$ACLOCAL || Exit 1
+$AUTOMAKE || Exit 1
+$AUTOCONF || Exit 1
+./configure || Exit $?
test -f .deps/fx64.Po
hooks/post-receive
--
GNU Automake
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Automake-commit] [SCM] GNU Automake branch, branch-1-10, updated. v1.10.2-37-g6326781,
Ralf Wildenhues <=