mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-28 05:40:26 -04:00
Set LD_LIBRARY_PATH to have processes spawned by test load the right library. Mark openal-info test skipped if ASAN is enabled. The problem is that openal-info would need LD_PRELOAD to work properly then. Just disable the test then.
45 lines
1.1 KiB
C
45 lines
1.1 KiB
C
/* PipeWire */
|
|
/* SPDX-FileCopyrightText: Copyright © 2019 Wim Taymans */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#include "config.h"
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include "pwtest.h"
|
|
|
|
PWTEST(openal_info_test)
|
|
{
|
|
/* openal-info tries to load libpipewire, which would need
|
|
* LD_PRELOAD=/lib64/libasan.so.XX to work when ASan is enabled. Don't try to
|
|
* figure out the right preload, but just disable the test in that case.
|
|
*/
|
|
#if defined(OPENAL_INFO_PATH) && !defined(HAVE_ASAN)
|
|
int status = pwtest_spawn(OPENAL_INFO_PATH, (char *[]){ "openal-info", NULL });
|
|
pwtest_int_eq(WEXITSTATUS(status), 0);
|
|
pwtest_int_eq(WIFSIGNALED(status), 0);
|
|
return PWTEST_PASS;
|
|
#else
|
|
return PWTEST_SKIP;
|
|
#endif
|
|
}
|
|
|
|
PWTEST(pactl_test)
|
|
{
|
|
#ifdef PACTL_PATH
|
|
int status = pwtest_spawn(PACTL_PATH, (char *[]){ "pactl", "info", NULL });
|
|
pwtest_int_eq(WEXITSTATUS(status), 0);
|
|
pwtest_int_eq(WIFSIGNALED(status), 0);
|
|
return PWTEST_PASS;
|
|
#else
|
|
return PWTEST_SKIP;
|
|
#endif
|
|
}
|
|
|
|
PWTEST_SUITE(pw_array)
|
|
{
|
|
pwtest_add(pactl_test, PWTEST_ARG_DAEMON);
|
|
pwtest_add(openal_info_test, PWTEST_ARG_DAEMON);
|
|
|
|
return PWTEST_PASS;
|
|
}
|