tests: add possibility to disable leak check for single test
authorMarek Chalupa <mchqwerty@gmail.com>
Fri, 19 Dec 2014 13:53:06 +0000 (14:53 +0100)
committerDaniel Stone <daniels@collabora.com>
Wed, 28 Jan 2015 17:17:22 +0000 (17:17 +0000)
In tests that are using external libraries (i. e. pthread) we
can get failure because of leaks in the external library.
Until we have some better solution (if ever), let these (and only these)
tests to disable leak checks.

Signed-off-by: Marek Chalupa <mchqwerty@gmail.com>
Reviewed-by: Daniel Stone <daniels@collabora.com>
tests/sanity-test.c
tests/test-runner.c
tests/test-runner.h

index a61dc99..b5a6fae 100644 (file)
@@ -81,6 +81,19 @@ FAIL_TEST(sanity_malloc_direct)
        free(NULL);     /* NULL must not be counted */
 }
 
+TEST(disable_leak_checks)
+{
+       volatile void *mem;
+       assert(leak_check_enabled);
+       /* normally this should be on the beginning of the test.
+        * Here we need to be sure, that the leak checks are
+        * turned on */
+       DISABLE_LEAK_CHECKS;
+
+       mem = malloc(16);
+       assert(mem);
+}
+
 FAIL_TEST(sanity_malloc_indirect)
 {
        struct wl_array array;
index 2e6ad33..70fa0ae 100644 (file)
@@ -175,6 +175,8 @@ check_leaks(int supposed_alloc, int supposed_fds)
                                num_fds - supposed_fds);
                        abort();
                }
+       } else {
+               fprintf(stderr, "Leak checks disabled\n");
        }
 }
 
index 5963ab6..6054da5 100644 (file)
@@ -62,4 +62,10 @@ test_usleep(useconds_t);
 void
 test_sleep(unsigned int);
 
+#define DISABLE_LEAK_CHECKS                    \
+       do {                                    \
+               extern int leak_check_enabled;  \
+               leak_check_enabled = 0;         \
+       } while (0);
+
 #endif