summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/conf/distro/include/default-distrovars.inc2
-rw-r--r--meta/lib/oeqa/sdk/buildtools-cases/https.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/meta/conf/distro/include/default-distrovars.inc b/meta/conf/distro/include/default-distrovars.inc
index 3edba1b6d0..4ed2121b04 100644
--- a/meta/conf/distro/include/default-distrovars.inc
+++ b/meta/conf/distro/include/default-distrovars.inc
@@ -52,4 +52,4 @@ KERNEL_IMAGETYPES ??= "${KERNEL_IMAGETYPE}"
52# fetch from the network (and warn you if not). To disable the test set 52# fetch from the network (and warn you if not). To disable the test set
53# the variable to be empty. 53# the variable to be empty.
54# Git example url: git://git.yoctoproject.org/yocto-firewall-test;protocol=git;rev=master;branch=master 54# Git example url: git://git.yoctoproject.org/yocto-firewall-test;protocol=git;rev=master;branch=master
55CONNECTIVITY_CHECK_URIS ?= "https://yoctoproject.org/connectivity.html" 55CONNECTIVITY_CHECK_URIS ?= "https://www.yoctoproject.org/connectivity.html"
diff --git a/meta/lib/oeqa/sdk/buildtools-cases/https.py b/meta/lib/oeqa/sdk/buildtools-cases/https.py
index 35e549eb40..828aaea55b 100644
--- a/meta/lib/oeqa/sdk/buildtools-cases/https.py
+++ b/meta/lib/oeqa/sdk/buildtools-cases/https.py
@@ -13,8 +13,8 @@ class HTTPTests(OESDKTestCase):
13 """ 13 """
14 14
15 def test_wget(self): 15 def test_wget(self):
16 self._run('env -i wget --debug --output-document /dev/null https://yoctoproject.org/connectivity.html') 16 self._run('env -i wget --debug --output-document /dev/null https://www.yoctoproject.org/connectivity.html')
17 17
18 def test_python(self): 18 def test_python(self):
19 # urlopen() returns a file-like object on success and throws an exception otherwise 19 # urlopen() returns a file-like object on success and throws an exception otherwise
20 self._run('python3 -c \'import urllib.request; urllib.request.urlopen("https://yoctoproject.org/connectivity.html")\'') 20 self._run('python3 -c \'import urllib.request; urllib.request.urlopen("https://www.yoctoproject.org/connectivity.html")\'')