texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[no subject]


From: Patrice Dumas
Date: Sun, 11 Dec 2022 12:44:18 -0500 (EST)

branch: master
commit 02ade07e5004fd666733afdae9f89209c25af489
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Sun Dec 11 18:40:59 2022 +0100

    * tp/maintain/check_back_xml_forth_texi_t.sh: handle 3 digits in
    front of .t test file name.
---
 ChangeLog                                  | 5 +++++
 tp/maintain/check_back_xml_forth_texi_t.sh | 8 ++++++--
 2 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 6e9d17cfb6..8049239986 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,11 @@
        Separate out code for 'unfilled' to make the rest of the code
        easier to understand.
 
+2022-12-11  Patrice Dumas  <pertusus@free.fr>
+
+       * tp/maintain/check_back_xml_forth_texi_t.sh: handle 3 digits in
+       front of .t test file name.
+
 2022-12-11  Patrice Dumas  <pertusus@free.fr>
 
        * tp/Texinfo/Convert/TexinfoMarkup.pm (_convert): use directly
diff --git a/tp/maintain/check_back_xml_forth_texi_t.sh 
b/tp/maintain/check_back_xml_forth_texi_t.sh
index 2a6a15d529..b667a64420 100755
--- a/tp/maintain/check_back_xml_forth_texi_t.sh
+++ b/tp/maintain/check_back_xml_forth_texi_t.sh
@@ -37,15 +37,19 @@ if test -n "$1"; then
     the_test=$2
     if test -f t/$the_directory.t ; then
       perl -w t/$the_directory.t -c $the_test
-    else
+    elif test -f t/??$the_directory.t ; then
       perl -w t/??$the_directory.t -c $the_test
+    else
+      perl -w t/???$the_directory.t -c $the_test
     fi
   else
     rm -rf $mdir/backforth_xmltexi/$the_directory 
$mdir/backforth_checktexi/$the_directory 
$mdir/backforth_plaintexi/$the_directory $mdir/backforth_logs/$the_directory.log
     if test -f t/$the_directory.t ; then
       perl -w t/$the_directory.t -c
-    else
+    elif test -f t/??$the_directory.t ; then
       perl -w t/??$the_directory.t -c
+    else
+      perl -w t/???$the_directory.t -c
     fi
   fi
 else



reply via email to

[Prev in Thread] Current Thread [Next in Thread]