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