[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: * configure.ac (tp-tests): do not conditionalize
From: |
Patrice Dumas |
Subject: |
branch master updated: * configure.ac (tp-tests): do not conditionalize tp tests on prove, it is not needed since we switched to automake tap implementation. |
Date: |
Sat, 21 Sep 2024 16:30:54 -0400 |
This is an automated email from the git hooks/post-receive script.
pertusus pushed a commit to branch master
in repository texinfo.
The following commit(s) were added to refs/heads/master by this push:
new bc5ac9c3df * configure.ac (tp-tests): do not conditionalize tp tests
on prove, it is not needed since we switched to automake tap implementation.
bc5ac9c3df is described below
commit bc5ac9c3df340cca0d721723fbee012de846dd3d
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Sat Sep 21 22:30:53 2024 +0200
* configure.ac (tp-tests): do not conditionalize tp tests on prove, it
is not needed since we switched to automake tap implementation.
* tp/Makefile.am: inline tp_tests variable.
---
ChangeLog | 7 +++++++
configure.ac | 4 +---
tp/Makefile.am | 4 +---
3 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 1803e355c9..5abe68cfe9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2024-09-21 Patrice Dumas <pertusus@free.fr>
+
+ * configure.ac (tp-tests): do not conditionalize tp tests on prove, it
+ is not needed since we switched to automake tap implementation.
+
+ * tp/Makefile.am: inline tp_tests variable.
+
2024-09-21 Patrice Dumas <pertusus@free.fr>
* tp/Texinfo/XS/configure.ac (perl_conf_LDFLAGS): use string
diff --git a/configure.ac b/configure.ac
index 25dd1aa19b..765b6179b8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -521,9 +521,7 @@ AC_ARG_ENABLE([tp-tests],
tp_tests='yes'
fi],
[
- if test "z$PROVE" = 'z'; then
- tp_tests='no'
- elif $PERL -e "use 5.008_001; use Encode; use Test::More; use
File::Compare qw(compare); use Data::Dumper; use Data::Compare; use Test::Deep;
use Storable qw(dclone);" > /dev/null 2>&AS_MESSAGE_LOG_FD;
+ if $PERL -e "use 5.008_001; use Encode; use Test::More; use File::Compare
qw(compare); use Data::Dumper; use Data::Compare; use Test::Deep; use Storable
qw(dclone);" > /dev/null 2>&AS_MESSAGE_LOG_FD;
then
tp_tests='yes'
else
diff --git a/tp/Makefile.am b/tp/Makefile.am
index 0b5e7da84d..662688b1e9 100644
--- a/tp/Makefile.am
+++ b/tp/Makefile.am
@@ -300,8 +300,6 @@ document_domain = $(PACKAGE)_document
# $(document_strings_mo_files) comes from the generated Makefile.docstr.
all-local: maintain/catalog.xml $(document_strings_mo_files)
-tp_tests = prove.sh
-
if TP_TESTS
TESTS = $(test_tap_files_generated_list)
endif
@@ -338,7 +336,7 @@ EXTRA_DIST = \
texi2any.supp \
$(test_files_generated_list) \
$(test_files) \
- $(tp_tests) \
+ prove.sh \
$(maintenance_files) \
maintain/lib \
Texinfo/command_data.txt \
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: * configure.ac (tp-tests): do not conditionalize tp tests on prove, it is not needed since we switched to automake tap implementation.,
Patrice Dumas <=