]> Savannah Git Hosting - gnulib.git/commitdiff
gnulib-tool.py: Follow gnulib-tool changes, part 44.
authorCollin Funk <collin.funk1@gmail.com>
Wed, 6 Mar 2024 08:09:20 +0000 (00:09 -0800)
committerBruno Haible <bruno@clisp.org>
Wed, 6 Mar 2024 11:03:28 +0000 (12:03 +0100)
Follow gnulib-tool changes
2021-06-10  Bruno Haible  <bruno@clisp.org>
Clarify where to report test failures from Gnulib tests.
2021-06-11  Bruno Haible  <bruno@clisp.org>
Make message in last commit more precise.

* pygnulib/GLEmiter.py (GLEmiter.tests_Makefile_am): Emit a dependency
of 'check-am' on 'check-notice' that prints a notice describing where to
report test failures.

ChangeLog
gnulib-tool.py.TODO
pygnulib/GLEmiter.py

index 62f367dfd7afd0b3e6dbde427fcab68188c0be12..2f6d58c2ddfb32db67186653308cb6f386b60cbb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2024-03-06  Collin Funk  <collin.funk1@gmail.com>
+
+       gnulib-tool.py: Follow gnulib-tool changes, part 44.
+       Follow gnulib-tool changes
+       2021-06-10  Bruno Haible  <bruno@clisp.org>
+       Clarify where to report test failures from Gnulib tests.
+       2021-06-11  Bruno Haible  <bruno@clisp.org>
+       Make message in last commit more precise.
+       * pygnulib/GLEmiter.py (GLEmiter.tests_Makefile_am): Emit a dependency
+       of 'check-am' on 'check-notice' that prints a notice describing where to
+       report test failures.
+
 2024-03-06  Bruno Haible  <bruno@clisp.org>
 
        gnulib-tool.py: Tweak comment location.
index a15bfc948a0b0b6ba21f433a47507ca38198a32c..85480130059d1e5e9d559d9d2c45133846659e6d 100644 (file)
@@ -529,28 +529,6 @@ Date:   Sun Aug 8 03:52:01 2021 +0200
 
 --------------------------------------------------------------------------------
 
-commit 39d08c09b444db57f45804bfe86ee17203c45a8a
-Author: Bruno Haible <bruno@clisp.org>
-Date:   Fri Jun 11 15:55:33 2021 +0200
-
-    Make message in last commit more precise.
-
-    Suggested by Eric Blake.
-
-    * gnulib-tool (func_emit_tests_Makefile_am): Add more precision to
-    'check-notice' message.
-
-commit d465dd70e1ec5fe332160780eb66511028f5897b
-Author: Bruno Haible <bruno@clisp.org>
-Date:   Thu Jun 10 21:43:59 2021 +0200
-
-    Clarify where to report test failures from Gnulib tests.
-
-    * gnulib-tool (func_emit_tests_Makefile_am): Emit a dependency of
-    'check-am' on 'check-notice' that prints a notice.
-
---------------------------------------------------------------------------------
-
 commit 4b071c115309079528db7b60e8d2ffb22b129088
 Author: Paul Eggert <eggert@cs.ucla.edu>
 Date:   Mon Apr 26 23:31:29 2021 -0700
index 9f573360e4e4213fdfbb6e033e5d891029df50cc..43c19a402684d23e96f6674d1313fc2b8b709ac0 100644 (file)
@@ -1200,6 +1200,14 @@ AC_DEFUN([%V1%_LIBSOURCES], [
         emit += '\t@echo \'## You can ignore compiler warnings in this directory.  ##\'\n'
         emit += '\t@echo \'## ---------------------------------------------------- ##\'\n'
         emit += '\n'
+        # Arrange to print a message before executing the tests in this directory.
+        emit += 'check-am: check-notice\n'
+        emit += 'check-notice:\n'
+        emit += '\t@echo \'## ---------------------------------------------------------------------- ##\'\n'
+        emit += '\t@echo \'## ---------------------------- Gnulib tests ---------------------------- ##\'\n'
+        emit += '\t@echo \'## Please report test failures in this directory to <bug-gnulib@gnu.org>. ##\'\n'
+        emit += '\t@echo \'## ---------------------------------------------------------------------- ##\'\n'
+        emit += '\n'
         emit += '# Clean up after Solaris cc.\n'
         emit += 'clean-local:\n'
         emit += '\trm -rf SunWS_cache\n\n'