From b56a381b1b48825e8fe44095863edbf21d7a4e20 Mon Sep 17 00:00:00 2001 From: Arnaud Rebillout Date: Wed, 16 Jan 2019 18:33:15 +0700 Subject: [PATCH] meson: Disable alsa-mixer-path-test This test relies on parsing the generated Makefile. A meson equivalent requires to re-write all the parser. Signed-off-by: Arnaud Rebillout --- src/tests/alsa-mixer-path-test.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/tests/alsa-mixer-path-test.c b/src/tests/alsa-mixer-path-test.c index ac92d78b2..ee40587b7 100644 --- a/src/tests/alsa-mixer-path-test.c +++ b/src/tests/alsa-mixer-path-test.c @@ -54,6 +54,10 @@ static pa_strlist *load_makefile() { } START_TEST (mixer_path_test) { +#ifdef MESON_BUILD + pa_log_info("Test disabled for meson build"); + return; +#else DIR *dir; struct dirent *ent; pa_strlist *ship = load_makefile(); @@ -83,6 +87,7 @@ START_TEST (mixer_path_test) { } closedir(dir); pa_strlist_free(ship); +#endif } END_TEST