[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: * Pod-Simple-Texinfo/Makefile.am (TEST_EXTENSIONS
From: |
Patrice Dumas |
Subject: |
branch master updated: * Pod-Simple-Texinfo/Makefile.am (TEST_EXTENSIONS, T_LOG_DRIVER) (T_LOG_COMPILER, AM_T_LOG_FLAGS, test_files, EXTRA_DIST): use the automake tap framework to output the result of each of the tests. |
Date: |
Sun, 27 Oct 2024 14:34:34 -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 ba1b4f582c * Pod-Simple-Texinfo/Makefile.am (TEST_EXTENSIONS,
T_LOG_DRIVER) (T_LOG_COMPILER, AM_T_LOG_FLAGS, test_files, EXTRA_DIST): use the
automake tap framework to output the result of each of the tests.
ba1b4f582c is described below
commit ba1b4f582c997af49a94de8810b05ded794ba29d
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Sun Oct 27 19:34:22 2024 +0100
* Pod-Simple-Texinfo/Makefile.am (TEST_EXTENSIONS, T_LOG_DRIVER)
(T_LOG_COMPILER, AM_T_LOG_FLAGS, test_files, EXTRA_DIST): use the
automake tap framework to output the result of each of the tests.
* Pod-Simple-Texinfo/t/Pod-Simple-Texinfo.t (index in head node):
remove the TODO block, as a TODO block should fail.
---
ChangeLog | 9 +++++++++
Pod-Simple-Texinfo/Makefile.am | 10 ++++++++--
Pod-Simple-Texinfo/t/Pod-Simple-Texinfo.t | 6 +-----
3 files changed, 18 insertions(+), 7 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index db2dd3af71..9777d171fe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2024-10-27 Patrice Dumas <pertusus@free.fr>
+
+ * Pod-Simple-Texinfo/Makefile.am (TEST_EXTENSIONS, T_LOG_DRIVER)
+ (T_LOG_COMPILER, AM_T_LOG_FLAGS, test_files, EXTRA_DIST): use the
+ automake tap framework to output the result of each of the tests.
+
+ * Pod-Simple-Texinfo/t/Pod-Simple-Texinfo.t (index in head node):
+ remove the TODO block, as a TODO block should fail.
+
2024-10-27 Patrice Dumas <pertusus@free.fr>
* Pod-Simple-Texinfo/lib/Pod/Simple/Texinfo.pm (_accessorize, new)
diff --git a/Pod-Simple-Texinfo/Makefile.am b/Pod-Simple-Texinfo/Makefile.am
index 5829cfbcc6..7d8fb1a97d 100644
--- a/Pod-Simple-Texinfo/Makefile.am
+++ b/Pod-Simple-Texinfo/Makefile.am
@@ -13,7 +13,13 @@ AM_TESTS_ENVIRONMENT = srcdir="$(srcdir)"; export srcdir;
top_srcdir="$(top_srcd
nodist_bin_SCRIPTS = pod2texi
-test_files = prove.sh \
+TEST_EXTENSIONS = .t
+T_LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) \
+ $(top_srcdir)/build-aux/tap-driver.sh
+T_LOG_COMPILER = $(PERL)
+AM_T_LOG_FLAGS = -w
+
+test_files = t/Pod-Simple-Texinfo.t \
test_scripts/manual_sectioning_gap_test.sh \
test_scripts/test_empty_head2.sh \
test_scripts/test_ref_to_unknown.sh
@@ -21,9 +27,9 @@ test_files = prove.sh \
EXTRA_DIST = Changes \
Makefile.PL \
MANIFEST \
- t/Pod-Simple-Texinfo.t \
pod2texi.pl \
tests \
+ prove.sh \
$(test_files)
converterdatadir = $(datadir)/$(CONVERTER)
diff --git a/Pod-Simple-Texinfo/t/Pod-Simple-Texinfo.t
b/Pod-Simple-Texinfo/t/Pod-Simple-Texinfo.t
index 6583669c4a..564cf752cd 100644
--- a/Pod-Simple-Texinfo/t/Pod-Simple-Texinfo.t
+++ b/Pod-Simple-Texinfo/t/Pod-Simple-Texinfo.t
@@ -85,10 +85,8 @@ X<aaa>
', 'index in head');
-TODO: {
-
# fixed in 3.24 2013-02-14
-local $TODO = 'Pod::Simple not ignoring correctly X<>';
+# 'Pod::Simple not ignoring correctly X<>';
run_test('=head1 NAME
X<aaa>
@@ -100,8 +98,6 @@ X<aaa>
',
, 'index in head node', undef, 1);
-}
-
run_test('=head1 NAME
T@c
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: * Pod-Simple-Texinfo/Makefile.am (TEST_EXTENSIONS, T_LOG_DRIVER) (T_LOG_COMPILER, AM_T_LOG_FLAGS, test_files, EXTRA_DIST): use the automake tap framework to output the result of each of the tests.,
Patrice Dumas <=