1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#!/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
|