diff options
author | Juha Vuolle <juha.vuolle@qt.io> | 2024-12-04 11:00:27 +0200 |
---|---|---|
committer | Matti Paaso <matti.paaso@qt.io> | 2025-01-23 11:19:02 +0000 |
commit | 78b6e54178b21522987a9c5a2b986098b9b51d93 (patch) | |
tree | 51ab03284cbbeb33780c1e6bf30f5092c43cdf00 | |
parent | 080372b087fe6c69d0be2fdb5f95600984f6aef6 (diff) |
Skip parts of OAuth1 autotests6.8.1
The testing service originally hosted at http://term.ie/oauth seems no
longer to exist. But since the host itself (term.ie) is reachable,
tests are not skipped, but instead run and fail.
Task-number: QTBUG-131869
Change-Id: I3e2d20e45470f20ab78d5adff52b36945c95b0b2
Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io>
Reviewed-by: Magdalena Stojek <magdalena.stojek@qt.io>
(cherry picked from commit 201a224441c2dc83e54cbc606b04ea9006ada7f8)
Reviewed-by: Juha Vuolle <juha.vuolle@qt.io>
-rw-r--r-- | tests/auto/oauth1/tst_oauth1.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/auto/oauth1/tst_oauth1.cpp b/tests/auto/oauth1/tst_oauth1.cpp index 2c5ddf9..2d2bfa0 100644 --- a/tests/auto/oauth1/tst_oauth1.cpp +++ b/tests/auto/oauth1/tst_oauth1.cpp @@ -155,6 +155,11 @@ const auto oauthSignature = QStringLiteral("oauth_signature"); bool hostReachable(const QLatin1String &host) { + // http://term.ie/oauth/example testing backend is no longer available. + // For the time being return false, so that tests relying on it skip rather than + // fail trying. QTBUG-131869 + return false; + // check host exists QHostInfo hostInfo = QHostInfo::fromName(host); if (hostInfo.error() != QHostInfo::NoError) |