Control: tags -1 + patch

The same behavior is noticed on other architectures as well: alpha, arm64, 
kfreebsd-amd64, kfreebsd-i386, mips64el, s390x, sparc64.
https://buildd.debian.org/status/logs.php?pkg=cpp-netlib&ver=0.11.2%2Bdfsg1-2%2Bb2&suite=sid

I took a look on github repository and this test has been disabled in the 
latest cpp-netlib-0.12.0-final release.
Here are relevant commits:
https://github.com/cpp-netlib/cpp-netlib/commit/cb9a7fa4439b19a2447db1428d7c55187cbe4961
https://github.com/cpp-netlib/cpp-netlib/commit/6686ebd57442279e79e08c8900116e6fedf2aa9f


Could we do the same?

The patch that disables the test is attached.
With this patch I was able to build cpp-netlib successfully for amd64.

From cb9a7fa4439b19a2447db1428d7c55187cbe4961 Mon Sep 17 00:00:00 2001
From: Glyn Matthews <glyn.matth...@gmail.com>
Date: Sat, 30 Jan 2016 22:44:38 +0100
Subject: [PATCH] Mime tests don't actually pass, so I will disable them.

---
 CMakeLists.txt | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2ce87cc..681f7a4 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -9,7 +9,7 @@ project(CPP-NETLIB)
 
 option( CPP-NETLIB_BUILD_SHARED_LIBS "Build cpp-netlib as shared libraries." OFF )
 option( CPP-NETLIB_BUILD_TESTS "Build the cpp-netlib project tests." ON)
-option( CPP-NETLIB_BUILD_EXPERIMENTS "Build the cpp-netlib project experiments." ON)
+# option( CPP-NETLIB_BUILD_EXPERIMENTS "Build the cpp-netlib project experiments." ON)
 option( CPP-NETLIB_BUILD_EXAMPLES "Build the cpp-netlib project examples." ON)
 option( CPP-NETLIB_ENABLE_HTTPS "Build cpp-netlib with support for https if OpenSSL is found." ON)
 
@@ -102,12 +102,12 @@ if (Boost_FOUND)
       add_subdirectory(deps/googletest)
       add_subdirectory(libs/network/test)
     endif (CPP-NETLIB_BUILD_TESTS)
-    if (CPP-NETLIB_BUILD_EXPERIMENTS)
-      add_subdirectory(libs/network/experiment)
-    endif (CPP-NETLIB_BUILD_EXPERIMENTS)
-    if (NOT MSVC AND CPP-NETLIB_BUILD_TESTS)
-      add_subdirectory(libs/mime/test)
-    endif(NOT MSVC AND CPP-NETLIB_BUILD_TESTS)
+    # if (CPP-NETLIB_BUILD_EXPERIMENTS)
+    #   add_subdirectory(libs/network/experiment)
+    # endif (CPP-NETLIB_BUILD_EXPERIMENTS)
+    # if (NOT MSVC AND CPP-NETLIB_BUILD_TESTS)
+    #   add_subdirectory(libs/mime/test)
+    # endif(NOT MSVC AND CPP-NETLIB_BUILD_TESTS)
     if (CPP-NETLIB_BUILD_EXAMPLES)
       add_subdirectory(libs/network/example)
     endif (CPP-NETLIB_BUILD_EXAMPLES)

Reply via email to