1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

r12009: made the LOCAL-SDDL test less verbose by default, and add it to the

standard tests for the build farm
(This used to be commit 9d6d9b6e50)
This commit is contained in:
Andrew Tridgell 2005-12-02 03:21:29 +00:00 committed by Gerald (Jerry) Carter
parent 3aaa6ff496
commit 86a6ce529f
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh
local_tests="LOCAL-NTLMSSP LOCAL-TALLOC LOCAL-MESSAGING LOCAL-IRPC LOCAL-BINDING LOCAL-IDTREE LOCAL-SOCKET LOCAL-PAC LOCAL-STRLIST"
local_tests="LOCAL-NTLMSSP LOCAL-TALLOC LOCAL-MESSAGING LOCAL-IRPC LOCAL-BINDING LOCAL-IDTREE LOCAL-SOCKET LOCAL-PAC LOCAL-STRLIST LOCAL-SDDL"
if [ $# -lt 0 ]; then
cat <<EOF

View File

@ -35,7 +35,9 @@ static BOOL test_sddl(TALLOC_CTX *mem_ctx, const char *sddl)
printf("Failed to decode '%s'\n", sddl);
return False;
}
NDR_PRINT_DEBUG(security_descriptor, sd);
if (DEBUGLVL(2)) {
NDR_PRINT_DEBUG(security_descriptor, sd);
}
talloc_free(sd);
return True;
}