1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
Description: Removes online tests run during 'make check'
Several of the tests reach out to online DNS servers or urls.
This patch removes those tests so that the package can be
built in an offline manner without reaching out to external
sources. This patch also removes tests which require other
applications to be running, such as redis and mysql.
.
workflow (0.9.8-1) unstable; urgency=low
.
* test/CMakeLists.txt: Commented out online tests
Author: Lance Lin <lq27267@gmail.com>
Forwarded: not-needed
---
Last-Update: 2021-10-06
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -37,14 +37,8 @@
set(TEST_LIST
task_unittest
algo_unittest
- http_unittest
- redis_unittest
- mysql_unittest
- facilities_unittest
graph_unittest
- memory_unittest
upstream_unittest
- dns_unittest
resource_unittest
uriparser_unittest
)
|