[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: texinfo-6.8.90 pretest
From: |
Eli Zaretskii |
Subject: |
Re: texinfo-6.8.90 pretest |
Date: |
Sun, 23 Oct 2022 14:26:22 +0300 |
> Date: Sun, 23 Oct 2022 13:42:22 +0300
> From: Eli Zaretskii <eliz@gnu.org>
> CC: pertusus@free.fr, bug-texinfo@gnu.org
>
> On a hunch, I did two things:
>
> . created a file tp/tests/input_file_names_recoded_stamp.txt with
> the text FAILED in it;
> . made the change below in tp/Texinfo/Translations.pm.
>
> Then running a single test with
>
> $ ./run_parser_all.sh -dir contents contents_at_begin
>
> succeeded. Will now try running more tests with these tricks.
The tests that report diffs are as follows:
In 'layout', I see differences like the below:
-<link rel="stylesheet" type="text/css" href="../js/info.css"/>
-<script src="../js/modernizr.js" type="text/javascript"></script>
-<script src="../js/info.js" type="text/javascript"></script>
+<link rel="stylesheet" type="text/css" href="..%5cjs/info.css"/>
+<script src="..%5cjs/modernizr.js" type="text/javascript"></script>
+<script src="..%5cjs/info.js" type="text/javascript"></script>
They are all due to '/' vs '\' (slash vs backslash) issue.
In 'other', I see differences due to non-ASCII characters inside the
produced files, I think. Here's an example:
--- ./other//res_parser_html/highlight_syntax_example/chapter.html
2022-10-09 22:54:59 +0300
+++ other//out_parser_html/highlight_syntax_example/chapter.html
2022-10-23 14:03:33 +0300
@@ -35,29 +35,29 @@
<p>Texinfo
</p><div class="example user-texinfo">
-<pre class="example-preformatted">texinfo
-<i><span style="color:#9A1900">@code{prot?ccted}</span></i>
+<pre class="example-preformatted"><code class="code">texinfo</code>
+@code{prot?ccted}
</pre></div>
<p>C++
</p><div class="example user-C++">
-<pre class="example-preformatted"><i><span style="color:#9A1900">// Your
First C++ Program</span></i>
+<pre class="example-preformatted">// Your First C++ Program
-<b><span style="color:#000080">#include</span></b> <span
style="color:#FF0000"><iostream></span>
+#include <iostream>
In 'tex_html', all the tests are skipped (presumably because I don't
have some commands, like tex4ht or latex2html)?
A couple of directories don't have the list-of-tests file, what's up
with those?
- Re: texinfo-6.8.90 pretest, (continued)
- Re: texinfo-6.8.90 pretest, Eli Zaretskii, 2022/10/23
- free used incorrectly in api.c, Gavin Smith, 2022/10/23
- Re: free used incorrectly in api.c, Eli Zaretskii, 2022/10/23
- Re: free used incorrectly in api.c, Gavin Smith, 2022/10/23
- Re: free used incorrectly in api.c, Eli Zaretskii, 2022/10/23
- Re: free used incorrectly in api.c, pertusus, 2022/10/23
- Re: texinfo-6.8.90 pretest,
Eli Zaretskii <=
- Re: texinfo-6.8.90 pretest, pertusus, 2022/10/23
- Re: texinfo-6.8.90 pretest, Eli Zaretskii, 2022/10/23
- Re: texinfo-6.8.90 pretest, pertusus, 2022/10/23
- Re: texinfo-6.8.90 pretest, Eli Zaretskii, 2022/10/23
- Re: texinfo-6.8.90 pretest, pertusus, 2022/10/23
- Directory separator for INFO_JS_DIR, Gavin Smith, 2022/10/23
- Re: Directory separator for INFO_JS_DIR, Eli Zaretskii, 2022/10/23
- Re: Directory separator for INFO_JS_DIR, pertusus, 2022/10/23
- Re: Directory separator for INFO_JS_DIR, pertusus, 2022/10/23
Re: texinfo-6.8.90 pretest, Gavin Smith, 2022/10/22