File: Disable-network-dependant-test.patch

package info (click to toggle)
attica-kf5 5.116.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,196 kB
  • sloc: cpp: 10,019; sh: 14; makefile: 5
file content (21 lines) | stat: -rw-r--r-- 655 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Maximiliano Curia <maxy@gnuservers.com.ar>
Date: Wed, 15 Aug 2018 11:26:39 +0200
Subject: Disable network dependent test

---
 autotests/CMakeLists.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/autotests/CMakeLists.txt b/autotests/CMakeLists.txt
index 4198837..e0eb38c 100644
--- a/autotests/CMakeLists.txt
+++ b/autotests/CMakeLists.txt
@@ -6,6 +6,7 @@ set_package_properties(Qt5Test PROPERTIES PURPOSE "Required for autotests")
 ecm_add_tests(
   configtest.cpp
   persontest.cpp
-  providertest.cpp
+  # Disable network dependant test
+  # providertest.cpp
   LINK_LIBRARIES Qt${QT_MAJOR_VERSION}::Test KF5::Attica
 )