Author: tridge Date: 2005-12-02 03:21:29 +0000 (Fri, 02 Dec 2005) New Revision: 12009
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=12009 Log: made the LOCAL-SDDL test less verbose by default, and add it to the standard tests for the build farm Modified: branches/SAMBA_4_0/source/script/tests/test_local.sh branches/SAMBA_4_0/source/torture/local/sddl.c Changeset: Modified: branches/SAMBA_4_0/source/script/tests/test_local.sh =================================================================== --- branches/SAMBA_4_0/source/script/tests/test_local.sh 2005-12-02 03:19:23 UTC (rev 12008) +++ branches/SAMBA_4_0/source/script/tests/test_local.sh 2005-12-02 03:21:29 UTC (rev 12009) @@ -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 Modified: branches/SAMBA_4_0/source/torture/local/sddl.c =================================================================== --- branches/SAMBA_4_0/source/torture/local/sddl.c 2005-12-02 03:19:23 UTC (rev 12008) +++ branches/SAMBA_4_0/source/torture/local/sddl.c 2005-12-02 03:21:29 UTC (rev 12009) @@ -35,7 +35,9 @@ 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; }
