[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[8342] run_parser_all.sh no @PATH_SEPARATOR
From: |
gavinsmith0123 |
Subject: |
[8342] run_parser_all.sh no @PATH_SEPARATOR |
Date: |
Fri, 19 Oct 2018 16:09:33 -0400 (EDT) |
Revision: 8342
http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=8342
Author: gavin
Date: 2018-10-19 16:09:32 -0400 (Fri, 19 Oct 2018)
Log Message:
-----------
run_parser_all.sh no @PATH_SEPARATOR
Modified Paths:
--------------
trunk/ChangeLog
trunk/tp/defs.in
trunk/tp/tests/run_parser_all.sh
trunk/tp/tests/sectioning/list-of-tests
Removed Paths:
-------------
trunk/tp/tests/sectioning/res_parser/test_two_include/
trunk/tp/tests/sectioning/res_parser_html/more_nodes_than_sections/
trunk/tp/tests/sectioning/res_parser_html/no_node_chapter_split/
trunk/tp/tests/sectioning/res_parser_html/no_section_no_top/
trunk/tp/tests/sectioning/res_parser_html/no_section_no_top_no_node/
trunk/tp/tests/sectioning/res_parser_html/one_node/
trunk/tp/tests/sectioning/res_parser_html/one_node_no_node/
trunk/tp/tests/sectioning/res_parser_html/test_two_include/
trunk/tp/tests/test_scripts/sectioning_test_two_include.sh
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2018-10-19 19:46:44 UTC (rev 8341)
+++ trunk/ChangeLog 2018-10-19 20:09:32 UTC (rev 8342)
@@ -1,5 +1,15 @@
2018-10-19 Gavin Smith <address@hidden>
+ * tp/tests/run_parser_all.sh: Do not substitute a
+ "@PATH_SEPARATOR@" sequence in the list-of-tests files.
+ It is only used in one test so is not worth the complication.
+ * tp/tests/sectioning/list-of-tests (test_two_include):
+ Remove this test.
+
+ * tp/defs.in: Do not set PATH_SEPARATOR.
+
+2018-10-19 Gavin Smith <address@hidden>
+
* tp/tests/sectioning/list-of-tests:
(no_section_no_top, no_section_no_top_no_node)
(more_nodes_than_sections, one_node_no_node, one_node)
Modified: trunk/tp/defs.in
===================================================================
--- trunk/tp/defs.in 2018-10-19 19:46:44 UTC (rev 8341)
+++ trunk/tp/defs.in 2018-10-19 20:09:32 UTC (rev 8342)
@@ -1,4 +1,3 @@
-PATH_SEPARATOR="@PATH_SEPARATOR@"
PERL="@PERL@"
DIFF_U_OPTION="@DIFF_U_OPTION@"
DIFF_A_OPTION="@DIFF_A_OPTION@"
Modified: trunk/tp/tests/run_parser_all.sh
===================================================================
--- trunk/tp/tests/run_parser_all.sh 2018-10-19 19:46:44 UTC (rev 8341)
+++ trunk/tp/tests/run_parser_all.sh 2018-10-19 20:09:32 UTC (rev 8342)
@@ -2,8 +2,7 @@
# $Id$
# Run all Texinfo tests.
#
-# Copyright 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018
-# Free Software Foundation, Inc.
+# Copyright 2010-2018 Free Software Foundation, Inc.
#
# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
@@ -317,8 +316,7 @@
fi
basename=`basename $file .texi`
- remaining=`echo $line | sed 's/[a-zA-Z0-9_./-]* *[a-zA-Z0-9_./-]* *//' \
- | sed 's,@PATH_SEPARATOR@,'"${PATH_SEPARATOR}$srcdir/$testdir/"',g'`
+ remaining=`echo $line | sed 's/[a-zA-Z0-9_./-]* *[a-zA-Z0-9_./-]* *//'`
src_file="$srcdir/$testdir/$file"
for command_dir in $commands; do
Modified: trunk/tp/tests/sectioning/list-of-tests
===================================================================
--- trunk/tp/tests/sectioning/list-of-tests 2018-10-19 19:46:44 UTC (rev
8341)
+++ trunk/tp/tests/sectioning/list-of-tests 2018-10-19 20:09:32 UTC (rev
8342)
@@ -5,7 +5,6 @@
node_footnote_end node_footnote.texi --footnote-style=end
node_footnote_use_node node_footnote.texi -c 'USE_NODES 1' --node-files
--footnote-style=end --split node
node_footnote_separated node_footnote.texi --footnote-style=separate
-test_two_include test_two_include.texi -I address@hidden@../formatting
equivalent_nodes equivalent_nodes.texi -c 'USE_NODES 1'
equivalent_nodes_no_node equivalent_nodes.texi
equivalent_nodes_test_renamed_nodes equivalent_nodes.texi --init
test_renamed_nodes.init
Deleted: trunk/tp/tests/test_scripts/sectioning_test_two_include.sh
===================================================================
--- trunk/tp/tests/test_scripts/sectioning_test_two_include.sh 2018-10-19
19:46:44 UTC (rev 8341)
+++ trunk/tp/tests/test_scripts/sectioning_test_two_include.sh 2018-10-19
20:09:32 UTC (rev 8342)
@@ -1,25 +0,0 @@
-#! /bin/sh
-# This file generated by maintain/regenerate_cmd_tests.sh
-
-if test z"$srcdir" = "z"; then
- srcdir=.
-fi
-
-one_test_logs_dir=test_log
-diffs_dir=diffs
-
-
-dir=sectioning
-name='test_two_include'
-[ -d "$dir" ] || mkdir $dir
-
-srcdir_test=$dir; export srcdir_test;
-"$srcdir"/run_parser_all.sh -dir $dir $name
-exit_status=$?
-cat $dir/$one_test_logs_dir/$name.log
-if test $exit_status = 0 && test -f $dir/$diffs_dir/$name.diff; then
- echo
- cat $dir/$diffs_dir/$name.diff
-fi
-exit $exit_status
-
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [8342] run_parser_all.sh no @PATH_SEPARATOR,
gavinsmith0123 <=