1#
2# @(#) Test maximum number of clients (file descriptors) for winbindd
3#
4
5load_lib util-defs.exp
6
7# Unimplemented - eek!
8
9untested "bigfd"
10return
11
12# Compile bigfd.c
13
14set output [target_compile "$srcdir/$subdir/bigfd.c" \
15        "$srcdir/$subdir/bigfd" executable {additional_flags="-g"}]
16
17if {$output != ""} {
18    perror "compile bigfd"
19    puts $output
20    return
21}
22
23# Run bigfd
24
25set output [util_start "$srcdir/$subdir/bigfd" "" ""]
26puts $output
27
28pass "bigfd"
29