]> git.saurik.com Git - apt.git/commitdiff
Coverage: Do not print messages from gcov
authorJulian Andres Klode <jak@debian.org>
Sun, 11 Sep 2016 11:58:40 +0000 (13:58 +0200)
committerJulian Andres Klode <jak@debian.org>
Sun, 11 Sep 2016 15:44:17 +0000 (17:44 +0200)
We need to ignore messages from gcov. All those messages
start with profiling: and are printed using vfprintf(), so
the only thing we can do is add a library overriding those
functions and linking apt-pkg to it.

apt-pkg/CMakeLists.txt
test/interactive-helper/CMakeLists.txt
test/interactive-helper/libnoprofile.c [new file with mode: 0644]

index bdaa93d67357b71e8936529b3e6a3caa7c414a26..1b493c8191c8f7d96795ee334072b6ea68d94ede 100644 (file)
@@ -49,3 +49,7 @@ add_version_script(apt-pkg)
 install(TARGETS apt-pkg LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
 install(FILES ${headers} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/apt-pkg)
 flatify(${PROJECT_BINARY_DIR}/include/apt-pkg/ "${headers}")
+
+if(CMAKE_BUILD_TYPE STREQUAL "Coverage")
+  target_link_libraries(apt-pkg PUBLIC noprofile)
+endif()
index fc08d6a8f2f847f05e700fa5151b10b801783948..423fa30e62450709eb8c4938fe256e53c00cdf33 100644 (file)
@@ -8,3 +8,6 @@ add_executable(aptwebserver aptwebserver.cc)
 target_link_libraries(aptwebserver apt-pkg  ${CMAKE_THREAD_LIBS_INIT})
 add_executable(test_fileutl test_fileutl.cc)
 target_link_libraries(test_fileutl apt-pkg)
+
+add_library(noprofile SHARED libnoprofile.c)
+target_link_libraries(noprofile ${CMAKE_DL_LIBS})
diff --git a/test/interactive-helper/libnoprofile.c b/test/interactive-helper/libnoprofile.c
new file mode 100644 (file)
index 0000000..2cba6dc
--- /dev/null
@@ -0,0 +1,50 @@
+#define _GNU_SOURCE
+#include <stdarg.h>
+#include <stdlib.h>
+#include <string.h>
+#include <dlfcn.h>
+#include <unistd.h>
+#include <stdio.h>
+
+int vprintf(const char *format, va_list ap) {
+       static int (*func_fprintf)(const char *format, va_list ap) = NULL;
+       if (func_fprintf == NULL)
+               func_fprintf = (int (*) (const char *format, va_list ap)) dlsym(RTLD_NEXT, "vprintf");
+
+    va_list ap2;
+    va_copy(ap2, ap);
+    if (strncmp(format, "profiling:", strlen("profiling:")) == 0)
+        return 0;
+    int res = func_fprintf(format, ap2);
+    va_end(ap2);
+    return res;
+}
+int printf(const char *format, ...) {
+    va_list ap;
+    va_start(ap, format);
+    int res = vprintf(format, ap);
+    va_end(ap);
+    return res;
+}
+
+int vfprintf(FILE *stream, const char *format, va_list ap) {
+       static int (*func_vfprintf)(FILE *stream, const char *format, va_list ap) = NULL;
+       if (func_vfprintf == NULL)
+               func_vfprintf = (int (*) (FILE *stream, const char *format, va_list ap)) dlsym(RTLD_NEXT, "vfprintf");
+
+    va_list ap2;
+    va_copy(ap2, ap);
+    if (strncmp(format, "profiling:", strlen("profiling:")) == 0)
+        return 0;
+    int res = func_vfprintf(stream, format, ap2);
+    va_end(ap2);
+    return res;
+}
+
+int fprintf(FILE *stream, const char *format, ...) {
+    va_list ap;
+    va_start(ap, format);
+    int res = vfprintf(stream, format, ap);
+    va_end(ap);
+    return res;
+}