[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Automake-commit] [SCM] GNU Automake branch, master, updated. v1.11-1736
From: |
Stefano Lattarini |
Subject: |
[Automake-commit] [SCM] GNU Automake branch, master, updated. v1.11-1736-g083a75b |
Date: |
Mon, 16 Jan 2012 08:46:30 +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=083a75be98d83517afdaa3da9ada22adb106cb1a
The branch, master has been updated
via 083a75be98d83517afdaa3da9ada22adb106cb1a (commit)
from 239a5894acb53e6b72f281699ff20edb60dac7a3 (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 083a75be98d83517afdaa3da9ada22adb106cb1a
Author: Stefano Lattarini <address@hidden>
Date: Mon Jan 16 09:40:21 2012 +0100
maintcheck: completeness check on list of tests simplified
* CheckListOfTests.am: Simplify the recipe, accordingly to the
assumption that all the entries in $(TEST_EXTENSIONS) and in
$(TESTS) have an associated real test script. This was not the
case when we used to have some entries in $(TESTS) that were not
real files, but rather "parameters" (sort of) for the corresponding
$(LOG_COMPILER). However, that usage had proven to be confusing
and brittle, and thus removed (see commit 'v1.11-1308-g375f23d' of
September 8 2011, "testsuite: revamp generation of autogenerated
tests").
-----------------------------------------------------------------------
Summary of changes:
CheckListOfTests.am | 18 ++----------------
1 files changed, 2 insertions(+), 16 deletions(-)
diff --git a/CheckListOfTests.am b/CheckListOfTests.am
index 28cb795..0a48447 100644
--- a/CheckListOfTests.am
+++ b/CheckListOfTests.am
@@ -1,6 +1,6 @@
## -*- Automake -*-
##
-## Copyright (C) 2011 Free Software Foundation, Inc.
+## Copyright (C) 2011, 2012 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
@@ -31,20 +31,6 @@ maintainer-check-list-of-tests:
else \
diff='diff'; \
fi; \
-## Determine which files are to be considered test scripts.
-## Do not blindly look for `$(TEST_EXTENSIONS)', because the parallel
-## testsuite driver provided by Automake allow entries in `$(TESTS)'
-## not to be real files, but rather paramaters for the corresponding
-## LOG_COMPILER (well, sort of).
- set X $(checked_test_extensions); shift; \
- if test $$# -eq 0; then \
- set X $(TEST_EXTENSIONS); shift; \
- fi; \
- if test $$# -eq 0; then \
- echo '$@: internal error: $$(checked_test_extensions) and' \
- '$$(TEST_EXTENSIONS) are both undefined or empty' >&2; \
- exit 255; \
- fi; \
## List of tests in Makefile.
lst='$(expected_list_of_tests)'; \
test -n "$$lst" || lst='$(TESTS)'; \
@@ -52,7 +38,7 @@ maintainer-check-list-of-tests:
echo "$$t"; \
done | sort >$(am__tmk); \
## List of tests on filesystem. Be careful to cater for VPATH builds too.
- for ext in $$*; do \
+ for ext in $(TEST_EXTENSIONS); do \
ls *$$ext 2>/dev/null; \
if test $(srcdir) != $(builddir); then \
(cd $(srcdir) && ls *$$ext 2>/dev/null); \
hooks/post-receive
--
GNU Automake
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Automake-commit] [SCM] GNU Automake branch, master, updated. v1.11-1736-g083a75b,
Stefano Lattarini <=