From 8661bf5da0c9cfad0f4b7a729d6cbdaf308cf2d4 Mon Sep 17 00:00:00 2001 From: Collin Funk Date: Wed, 6 Mar 2024 00:09:20 -0800 Subject: [PATCH 4/4] gnulib-tool.py: Follow gnulib-tool changes, part 44. Follow gnulib-tool changes 2021-06-10 Bruno Haible Clarify where to report test failures from Gnulib tests. 2021-06-11 Bruno Haible 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 | 12 ++++++++++++ gnulib-tool.py.TODO | 22 ---------------------- pygnulib/GLEmiter.py | 8 ++++++++ 3 files changed, 20 insertions(+), 22 deletions(-) diff --git a/ChangeLog b/ChangeLog index 53234e7de6..44e86f7f52 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +2024-03-06 Collin Funk + + gnulib-tool.py: Follow gnulib-tool changes, part 44. + Follow gnulib-tool changes + 2021-06-10 Bruno Haible + Clarify where to report test failures from Gnulib tests. + 2021-06-11 Bruno Haible + 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-05 Collin Funk gnulib-tool.py: Follow gnulib-tool changes, part 43. diff --git a/gnulib-tool.py.TODO b/gnulib-tool.py.TODO index a15bfc948a..8548013005 100644 --- a/gnulib-tool.py.TODO +++ b/gnulib-tool.py.TODO @@ -529,28 +529,6 @@ Date: Sun Aug 8 03:52:01 2021 +0200 -------------------------------------------------------------------------------- -commit 39d08c09b444db57f45804bfe86ee17203c45a8a -Author: Bruno Haible -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 -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 Date: Mon Apr 26 23:31:29 2021 -0700 diff --git a/pygnulib/GLEmiter.py b/pygnulib/GLEmiter.py index 1d1463851b..8316d0af5c 100644 --- a/pygnulib/GLEmiter.py +++ b/pygnulib/GLEmiter.py @@ -1198,6 +1198,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 . ##\'\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' -- 2.44.0