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 <arnaud.rebillout@collabora.com>
This commit is contained in:
Arnaud Rebillout 2019-01-16 18:33:15 +07:00 committed by Arun Raghavan
parent b0a4a85db4
commit b56a381b1b

View file

@ -54,6 +54,10 @@ static pa_strlist *load_makefile() {
} }
START_TEST (mixer_path_test) { START_TEST (mixer_path_test) {
#ifdef MESON_BUILD
pa_log_info("Test disabled for meson build");
return;
#else
DIR *dir; DIR *dir;
struct dirent *ent; struct dirent *ent;
pa_strlist *ship = load_makefile(); pa_strlist *ship = load_makefile();
@ -83,6 +87,7 @@ START_TEST (mixer_path_test) {
} }
closedir(dir); closedir(dir);
pa_strlist_free(ship); pa_strlist_free(ship);
#endif
} }
END_TEST END_TEST