1
0
Fork 0
util-linux/tests/ts/liblastlog2/dlopen
Daniel Baumann c36e531662
Adding upstream version 2.41.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 11:26:35 +02:00

23 lines
523 B
Bash
Executable file

#!/bin/bash
TS_TOPDIR="${0%/*}/../.."
TS_DESC="dlopen"
. "$TS_TOPDIR"/functions.sh
ts_init "$*"
# incorrect warning: top_builddir is referenced but not assigned.
# shellcheck disable=SC2154
if [ -e "$top_builddir/meson.conf" ]; then
#meson build
libpath=${top_builddir}/liblastlog2
else
#automake/autoconf build
libpath=${top_builddir}/.libs
fi
ts_check_test_command $TS_HELPER_LIBLASTLOG2_DLOPEN
$TS_HELPER_LIBLASTLOG2_DLOPEN ${libpath}/liblastlog2.so >/dev/null || ts_failed "returned an error"
ts_finalize