File: dlopen

package info (click to toggle)
util-linux 2.41.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 92,844 kB
  • sloc: ansic: 179,146; sh: 22,716; yacc: 1,284; makefile: 525; xml: 422; python: 316; lex: 89; ruby: 75; csh: 37; exp: 19; sed: 16; perl: 15; sql: 9
file content (23 lines) | stat: -rwxr-xr-x 523 bytes parent folder | download | duplicates (3)
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