summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2017-09-23 12:45:22 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2017-09-23 12:49:23 -0700
commitb0ee838e1193899d28f0bfb51192a02d48e4b472 (patch)
tree5186431f950a9d5d5350e5be9a2904067436feb4 /tests
parentc5b290f6ae4d993b0218142b3a4cd8133c5a7756 (diff)
downloadautoconf-b0ee838e1193899d28f0bfb51192a02d48e4b472.tar.gz
maint: update URLs
Most of this is replacing http: with https: when either will do.
Diffstat (limited to 'tests')
-rw-r--r--tests/base.at8
-rw-r--r--tests/compile.at8
-rw-r--r--tests/m4sh.at4
3 files changed, 10 insertions, 10 deletions
diff --git a/tests/base.at b/tests/base.at
index 14809d40..d9a084b6 100644
--- a/tests/base.at
+++ b/tests/base.at
@@ -227,7 +227,7 @@ AT_SETUP([AC_INIT with unusual version strings])
AT_DATA([configure.ac],
[[AC_INIT([GNU String++ with spaces (foo)],
- [2.48++ (2010-07-03)], [[http://example.com/?a=b&c=d#e]], [clisp])
+ [2.48++ (2010-07-03)], [[https://example.com/?a=b&c=d#e]], [clisp])
AC_OUTPUT
]])
@@ -253,7 +253,7 @@ AT_CHECK([$FGREP '2.48++ (2010-07-03)' stdout], [], [ignore])
AT_DATA([configure.ac],
[[AC_INIT([GNU "String++"],
- [2.48], [http://example.com/], [clisp])
+ [2.48], [https://example.com/], [clisp])
AC_OUTPUT
]])
@@ -262,7 +262,7 @@ AT_CHECK([grep 'AC_INIT: not a literal: ' stderr], [], [ignore])
AT_DATA([configure.ac],
[[AC_INIT([GNU String++],
- ['codename' 2.48], [http://example.com/], [clisp])
+ ['codename' 2.48], [https://example.com/], [clisp])
AC_OUTPUT
]])
@@ -271,7 +271,7 @@ AT_CHECK([grep 'AC_INIT: not a literal: ' stderr], [], [ignore])
AT_DATA([configure.ac],
[[AC_INIT([GNU
-String++], [2.48], [http://example.com/], [clisp])
+String++], [2.48], [https://example.com/], [clisp])
AC_OUTPUT
]])
diff --git a/tests/compile.at b/tests/compile.at
index a54d74ec..29374529 100644
--- a/tests/compile.at
+++ b/tests/compile.at
@@ -178,7 +178,7 @@ AT_DATA([configure.ac],
[[# Taken from autoconf.texi:Generating Sources.
# The only change is to not fail if gcc doesn't work.
AC_INIT([Hello], [1.0], [bug-hello@example.org], [],
- [http://www.example.org/])
+ [https://www.example.org/])
AC_DEFINE([HELLO_WORLD], ["Hello, World\n"],
[Greetings string.])
AC_LANG([C])
@@ -199,7 +199,7 @@ AT_CHECK([sed -n 's/ *$//; /#define PACKAGE/,$p' stdout], [],
#define PACKAGE_VERSION "1.0"
#define PACKAGE_STRING "Hello 1.0"
#define PACKAGE_BUGREPORT "bug-hello@example.org"
-#define PACKAGE_URL "http://www.example.org/"
+#define PACKAGE_URL "https://www.example.org/"
#define HELLO_WORLD "Hello, World\n"
const char hw[] = "Hello, World\n";
@@ -223,7 +223,7 @@ AT_DATA([configure.ac],
[[# Taken from autoconf.texi:Generating Sources.
# The only change is to not fail if gcc doesn't work.
AC_INIT([Hello], [1.0], [bug-hello@example.org], [],
- [http://www.example.org/])
+ [https://www.example.org/])
AC_DEFINE([HELLO_WORLD], ["Hello, World\n"],
[Greetings string.])
AC_LANG_CONFTEST(
@@ -244,7 +244,7 @@ AT_CHECK([sed -n 's/ *$//; /#define PACKAGE/,$p' stdout], [],
#define PACKAGE_VERSION "1.0"
#define PACKAGE_STRING "Hello 1.0"
#define PACKAGE_BUGREPORT "bug-hello@example.org"
-#define PACKAGE_URL "http://www.example.org/"
+#define PACKAGE_URL "https://www.example.org/"
#define HELLO_WORLD "Hello, World\n"
const char hw[] = "Hello, World\n";
diff --git a/tests/m4sh.at b/tests/m4sh.at
index 1baaf44b..e9d70b02 100644
--- a/tests/m4sh.at
+++ b/tests/m4sh.at
@@ -764,7 +764,7 @@ AT_CLEANUP
## Negated classes in globbing. ##
## ----------------------------- ##
-# According to http://www.in-ulm.de/~mascheck/bourne/, all shells with
+# According to https://www.in-ulm.de/~mascheck/bourne/, all shells with
# functions also support `[!...]'. But `[^...]' is not universally supported.
AT_SETUP([Negated classes in globbing])
@@ -792,7 +792,7 @@ AT_CLEANUP
## Null variable substitution. ##
## ---------------------------- ##
-# According to http://www.in-ulm.de/~mascheck/bourne/, all shells with
+# According to https://www.in-ulm.de/~mascheck/bourne/, all shells with
# functions also support `${a:-b}'.
AT_SETUP([Null variable substitution])