From 101092465db158c69720d2ff6789d6b31be656bc Mon Sep 17 00:00:00 2001 From: Peter Meerwald Date: Sun, 9 Nov 2014 17:49:54 +0100 Subject: core: Replace assert()s with pa_assert()s Signed-off-by: Peter Meerwald --- src/tests/flist-test.c | 2 +- src/tests/mcalign-test.c | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'src/tests') diff --git a/src/tests/flist-test.c b/src/tests/flist-test.c index 69152041e..d8c227ad1 100644 --- a/src/tests/flist-test.c +++ b/src/tests/flist-test.c @@ -88,7 +88,7 @@ int main(int argc, char* argv[]) { for (i = 0; i < THREADS_MAX; i++) { threads[i] = pa_thread_new("test", thread_func, pa_sprintf_malloc("Thread #%i", i+1)); - assert(threads[i]); + pa_assert(threads[i]); } pa_msleep(60000); diff --git a/src/tests/mcalign-test.c b/src/tests/mcalign-test.c index 443b4a7b6..455e18cdb 100644 --- a/src/tests/mcalign-test.c +++ b/src/tests/mcalign-test.c @@ -21,7 +21,6 @@ #include #endif -#include #include #include #include @@ -56,7 +55,7 @@ int main(int argc, char *argv[]) { c.index = c.length = 0; } - assert(c.index < pa_memblock_get_length(c.memblock)); + pa_assert(c.index < pa_memblock_get_length(c.memblock)); l = pa_memblock_get_length(c.memblock) - c.index; -- cgit v1.2.3