1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/testsuite/nsswitch/pam_winbind_syms.exp
Lars Müller b372fd2cff r14317: Use source/bin as dir to link pam_winbind instead of source/nsswitch/
The intention is to have the resulting binaries at one place.  This is
also usefull for upcoming changes to provide a test_pammodules rule.

With these changes I even got aware of
testsuite/nsswitch/pam_winbind_syms.exp  But this only covers
pam_winbind.
(This used to be commit 9883957b74)
2007-10-10 11:15:24 -05:00

45 lines
978 B
Plaintext

#
# @(#) Test nss functions are exported from the pam_winbind.so library
# @(#) Test there are no external dependencies in the pam_winbind.so library
#
# We expect the following symbols to be exported:
#
# pam_sm_acct_mgmt
# pam_sm_authenticate
# pam_sm_setcred
#
# This test also has the nice side-effect of showing any unresolved symbols
# in the library.
#
load_lib util-defs.exp
# Compile pam_winbind_syms.c
set output [target_compile "$srcdir/$subdir/pam_winbind_syms.c" \
"$srcdir/$subdir/pam_winbind_syms" executable \
{"libs=-ldl -lpam" "additional_flags=-g"}]
if {$output != ""} {
perror "compile pam_winbind_syms.c"
puts $output
return
}
# Run load-dl.c
set output [util_start "$srcdir/$subdir/pam_winbind_syms" \
"bin/pam_winbind.so"]
if {[regexp "FAIL:" $output]} {
fail "run pam_winbind_syms"
puts $output
return
}
pass "pam_winbind_syms"
# Clean up
file delete "$srcdir/$subdir/pam_winbind_syms"