Fix some uncleanness with testsmbc.c
[Samba/gebeck_regimport.git] / testsuite / smbd / se_access_check.exp
blobcd84ab8ee08170e839fee06bb99aa7de5b04ed4f
2 # @(#) Test se_access_check() function
6 # Unix SMB/Netbios implementation.
7 # Copyright (C) Tim Potter 2000
8 #
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 2 of the License, or
12 # (at your option) any later version.
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write to the Free Software
21 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 load_lib "compile.exp"
25 load_lib "util-defs.exp"
27 # Run tests from C source files
29 set se_access_check_tests [list \
30 { "null security descriptor" "se_access_check_nullsd" } \
31 { "security descriptor allow everyone" "se_access_check_allowall" } \
32 { "security descriptor allow everyone" "se_access_check_allowall" } \
33 { "security descriptor deny everyone" "se_access_check_denyall" } \
34 { "empty security descriptor" "se_access_check_empty" } \
35 { "allow some users access" "se_access_check_allowsome" } \
36 { "deny some users access" "se_access_check_denysome" } \
37 { "printer access permissions" "se_access_check_printer" } \
40 foreach { test } $se_access_check_tests {
41 set test_desc [lindex $test 0]
42 set test_file [lindex $test 1]
44 simple_make "se_access_check" $test_file
45 set output [util_start "$srcdir/$subdir/$test_file" ]
47 if { [regexp "PASS" $output] } {
48 pass $test_desc
49 file delete "$srcdir/$subdir/$test_file" "$srcdir/$subdir/$test_file.o"
50 } else {
51 fail $test_desc
52 puts $output