[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: * Pod-Simple-Texinfo/test_scripts/*.sh: use $PERL
From: |
Patrice Dumas |
Subject: |
branch master updated: * Pod-Simple-Texinfo/test_scripts/*.sh: use $PERL to be sure to use the same perl the XS modules were compiled against. |
Date: |
Wed, 17 Apr 2024 07:45:43 -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 2f0aff4bb2 * Pod-Simple-Texinfo/test_scripts/*.sh: use $PERL to be
sure to use the same perl the XS modules were compiled against.
2f0aff4bb2 is described below
commit 2f0aff4bb2602fa5a621322092bc165e169bb208
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Wed Apr 17 13:45:15 2024 +0200
* Pod-Simple-Texinfo/test_scripts/*.sh: use $PERL to be sure to use
the same perl the XS modules were compiled against.
---
ChangeLog | 5 +++++
Pod-Simple-Texinfo/test_scripts/manual_sectioning_gap_test.sh | 4 ++--
Pod-Simple-Texinfo/test_scripts/test_empty_head2.sh | 2 +-
Pod-Simple-Texinfo/test_scripts/test_ref_to_unknown.sh | 2 +-
4 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 39f6ee0195..598273d6fc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2024-04-17 Patrice Dumas <pertusus@free.fr>
+
+ * Pod-Simple-Texinfo/test_scripts/*.sh: use $PERL to be sure to use
+ the same perl the XS modules were compiled against.
+
2024-04-16 Patrice Dumas <pertusus@free.fr>
* Pod-Simple-Texinfo/Makefile.am (test_files, EXTRA_DIST),
diff --git a/Pod-Simple-Texinfo/test_scripts/manual_sectioning_gap_test.sh
b/Pod-Simple-Texinfo/test_scripts/manual_sectioning_gap_test.sh
index 45b0d3a1ff..4170cca6a6 100755
--- a/Pod-Simple-Texinfo/test_scripts/manual_sectioning_gap_test.sh
+++ b/Pod-Simple-Texinfo/test_scripts/manual_sectioning_gap_test.sh
@@ -20,7 +20,7 @@ mkdir -p out_tests
return_code=0
-${srcdir}/pod2texi.pl --base-level=2 --subdir=out_tests
${srcdir}/tests/sectioning_gap.pod > out_tests/sectioning_gap.texi
+$PERL -w ${srcdir}/pod2texi.pl --base-level=2 --subdir=out_tests
${srcdir}/tests/sectioning_gap.pod > out_tests/sectioning_gap.texi
ret=$?
if [ $ret != 0 ]; then
echo "F sectioning_gap.pod: $ret"
@@ -42,7 +42,7 @@ elif [ $return_code = 0 ]; then
rm -f out_tests/Th1.texi
fi
-${srcdir}/pod2texi.pl --base-level=section --subdir=out_tests/includes
${srcdir}/tests/Module1.pod ${srcdir}/tests/Module2.pod >
out_tests/modules_main.texi
+$PERL -w ${srcdir}/pod2texi.pl --base-level=section
--subdir=out_tests/includes ${srcdir}/tests/Module1.pod
${srcdir}/tests/Module2.pod > out_tests/modules_main.texi
if [ $ret != 0 ]; then
echo "F Module1.pod Module2.pod: $ret"
return_code=1
diff --git a/Pod-Simple-Texinfo/test_scripts/test_empty_head2.sh
b/Pod-Simple-Texinfo/test_scripts/test_empty_head2.sh
index 25480fc834..157c6ef6ec 100755
--- a/Pod-Simple-Texinfo/test_scripts/test_empty_head2.sh
+++ b/Pod-Simple-Texinfo/test_scripts/test_empty_head2.sh
@@ -21,7 +21,7 @@ return_code=0
# The manual processed in the test has an empty head.
# There are errors generated when parsing the manual to fix and add
# menus, which can be seen with --debug=2.
-${srcdir}/pod2texi.pl ${srcdir}/tests/empty_head2.pod >
out_tests_empty_head2/empty_head2.texi
+$PERL -w ${srcdir}/pod2texi.pl ${srcdir}/tests/empty_head2.pod >
out_tests_empty_head2/empty_head2.texi
ret=$?
if [ $ret != 0 ]; then
echo "F empty_head2.pod: $ret"
diff --git a/Pod-Simple-Texinfo/test_scripts/test_ref_to_unknown.sh
b/Pod-Simple-Texinfo/test_scripts/test_ref_to_unknown.sh
index 3760db6b01..b3b4117827 100755
--- a/Pod-Simple-Texinfo/test_scripts/test_ref_to_unknown.sh
+++ b/Pod-Simple-Texinfo/test_scripts/test_ref_to_unknown.sh
@@ -21,7 +21,7 @@ return_code=0
# The manual processed in the test has a reference that is not resolved.
# There is an error generated when gathering internal references after
# parsing the manual to fix and add menus, which can be seen with --debug=2.
-${srcdir}/pod2texi.pl ${srcdir}/tests/ref_to_unknown.pod >
out_tests_ref_to_unknown/ref_to_unknown.texi
+$PERL -w ${srcdir}/pod2texi.pl ${srcdir}/tests/ref_to_unknown.pod >
out_tests_ref_to_unknown/ref_to_unknown.texi
ret=$?
if [ $ret != 0 ]; then
echo "F ref_to_unknown.pod: $ret"
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: * Pod-Simple-Texinfo/test_scripts/*.sh: use $PERL to be sure to use the same perl the XS modules were compiled against.,
Patrice Dumas <=