diff options
author | Tim Potter <tpot@samba.org> | 2001-05-09 04:59:49 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-05-09 04:59:49 +0000 |
commit | dcc39ea43984fe9f9c683e48423794793a923e28 (patch) | |
tree | cfccda702e3f50fa6da408c42937f1007abee49e /testsuite/nsswitch/getgrnam.exp | |
parent | 9de17c5c3892930d6d1d349df63e2c4206787ceb (diff) | |
download | samba-dcc39ea43984fe9f9c683e48423794793a923e28.tar.gz samba-dcc39ea43984fe9f9c683e48423794793a923e28.tar.xz samba-dcc39ea43984fe9f9c683e48423794793a923e28.zip |
Cleaned up bitrot in nsswitch testsuite. Merged tests across from TNG
branch.
(This used to be commit acef477383e5739292e764c17cef87822a09f13b)
Diffstat (limited to 'testsuite/nsswitch/getgrnam.exp')
-rw-r--r-- | testsuite/nsswitch/getgrnam.exp | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/testsuite/nsswitch/getgrnam.exp b/testsuite/nsswitch/getgrnam.exp index 2ba6ba0281b..92c5b76742e 100644 --- a/testsuite/nsswitch/getgrnam.exp +++ b/testsuite/nsswitch/getgrnam.exp @@ -1,26 +1,25 @@ # -# @(#) Test domain/local groups resolve using getgrnam() +# @(#) Test domain groups resolve using getgrnam() # -load_lib util-defs.exp -load_lib "$srcdir/config/env.exp" -load_lib "$srcdir/config/default-nt-names.exp" +load_lib "util-defs.exp" +load_lib "compile.exp" # Compile getgrnam.c -set output [target_compile "$srcdir/$subdir/getgrnam.c" \ - "$srcdir/$subdir/getgrnam" executable {additional_flags="-g"}] - -if {$output != ""} { - perror "compile getgrnam" - puts $output - return -} +simple_compile "getgrnam" # Test domain groups -foreach {group} $domain_groups { +set group_list [split [util_start "bin/wbinfo" "-g"] "\n"] + +verbose $group_list + +foreach {group} $group_list { set output [util_start "$srcdir/$subdir/getgrnam" "\"$group\"" ""] + + verbose $output + if {[regexp "PASS:" $output]} { pass "getgrnam $group" } else { |