Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Description of problem:
The tp/tests/run_parser_all.sh file contains errors and needs to be modified after verification.
Version-Release number of selected component (if applicable):
texinfo-6.5
How reproducible:
NA
Steps to Reproduce:
diff --git a/tp/tests/run_parser_all.sh b/tp/tests/run_parser_all.sh
index e475da5..e6242b3 100755
--- a/tp/tests/run_parser_all.sh
+++ b/tp/tests/run_parser_all.sh
@@ -46,7 +46,7 @@ check_latex2html_and_tex4ht ()
if echo "$remaining" | grep '[-]init mediawiki.pm' >/dev/null; then
if test "$no_html2wiki" = 'yes' ; then
echo "S: (no html2wiki) $current"
- continue 2
+ return 2
fi
fi
fi
Actual results:
End Return Exit
Expected results:
End Return Exit
Additional info:
Comment 1Vitezslav Crhonek
2021-01-28 13:54:17 UTC
Thank you for the bug report.
Comment 2Vitezslav Crhonek
2021-02-17 08:48:34 UTC
I've fixed the issue in Fedora for future releases and reported upstream, where it's
going to be fixed soon too. It has no real impact on package usability and we don't
plan to fix it in RHEL 8.
Description of problem: The tp/tests/run_parser_all.sh file contains errors and needs to be modified after verification. Version-Release number of selected component (if applicable): texinfo-6.5 How reproducible: NA Steps to Reproduce: diff --git a/tp/tests/run_parser_all.sh b/tp/tests/run_parser_all.sh index e475da5..e6242b3 100755 --- a/tp/tests/run_parser_all.sh +++ b/tp/tests/run_parser_all.sh @@ -46,7 +46,7 @@ check_latex2html_and_tex4ht () if echo "$remaining" | grep '[-]init mediawiki.pm' >/dev/null; then if test "$no_html2wiki" = 'yes' ; then echo "S: (no html2wiki) $current" - continue 2 + return 2 fi fi fi Actual results: End Return Exit Expected results: End Return Exit Additional info: