mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-15 23:33:03 +00:00
test: report.at: avoid tiny new failure
Be robust to newer versions of Autoconf where the package URL defaults to https instead of http. * configure.ac (AC_INIT): Use https. * tests/report.at: Adjust expected output s/http/https/ to match updated URL.
This commit is contained in:
committed by
Akim Demaille
parent
21ba496083
commit
27e822abfd
@@ -26,7 +26,9 @@ m4_pattern_allow([^BISON_USE_NLS$])
|
|||||||
|
|
||||||
AC_INIT([GNU Bison],
|
AC_INIT([GNU Bison],
|
||||||
m4_esyscmd([build-aux/git-version-gen .tarball-version]),
|
m4_esyscmd([build-aux/git-version-gen .tarball-version]),
|
||||||
[bug-bison@gnu.org])
|
[bug-bison@gnu.org],
|
||||||
|
[],
|
||||||
|
[https://www.gnu.org/software/bison/])
|
||||||
AC_SUBST([PACKAGE_COPYRIGHT_YEAR], [2020])
|
AC_SUBST([PACKAGE_COPYRIGHT_YEAR], [2020])
|
||||||
AC_DEFINE_UNQUOTED([PACKAGE_COPYRIGHT_YEAR], [$PACKAGE_COPYRIGHT_YEAR],
|
AC_DEFINE_UNQUOTED([PACKAGE_COPYRIGHT_YEAR], [$PACKAGE_COPYRIGHT_YEAR],
|
||||||
[The copyright year for this package])
|
[The copyright year for this package])
|
||||||
|
|||||||
@@ -579,7 +579,7 @@ State 19
|
|||||||
AT_CHECK([sed -e '1s/GNU Bison .*\.$/GNU Bison VERSION./' input.gv], [],
|
AT_CHECK([sed -e '1s/GNU Bison .*\.$/GNU Bison VERSION./' input.gv], [],
|
||||||
[[// Generated by GNU Bison VERSION.
|
[[// Generated by GNU Bison VERSION.
|
||||||
// Report bugs to <bug-bison@gnu.org>.
|
// Report bugs to <bug-bison@gnu.org>.
|
||||||
// Home page: <http://www.gnu.org/software/bison/>.
|
// Home page: <https://www.gnu.org/software/bison/>.
|
||||||
|
|
||||||
digraph "input.yy"
|
digraph "input.yy"
|
||||||
{
|
{
|
||||||
@@ -673,7 +673,7 @@ digraph "input.yy"
|
|||||||
AT_CHECK([[sed -e 's/bison-xml-report version="[^"]*"/bison-xml-report version="VERSION"/g' input.xml]], [],
|
AT_CHECK([[sed -e 's/bison-xml-report version="[^"]*"/bison-xml-report version="VERSION"/g' input.xml]], [],
|
||||||
[[<?xml version="1.0"?>
|
[[<?xml version="1.0"?>
|
||||||
|
|
||||||
<bison-xml-report version="VERSION" bug-report="bug-bison@gnu.org" url="http://www.gnu.org/software/bison/">
|
<bison-xml-report version="VERSION" bug-report="bug-bison@gnu.org" url="https://www.gnu.org/software/bison/">
|
||||||
|
|
||||||
<filename>input.yy</filename>
|
<filename>input.yy</filename>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user