summaryrefslogtreecommitdiff
path: root/source4/torture/util.h
AgeCommit message (Collapse)AuthorFilesLines
2013-09-05torture: Add a new w2k12 targetVolker Lendecke1-0/+1
W2k12 seems to do the 2-step break to none, try running raw.oplock.batch12 against it. Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
2012-07-25s4:torture: remove unused shm_setup()Stefan Metzmacher1-1/+0
metze
2009-12-07s4 torture: Add a new torture:hide_on_access_denied parameterTim Prouty1-0/+1
It appears some newer versions of windows return NT_STATUS_OBJECT_NAME_NOT_FOUND on a createfile when access is denied rather than NT_STATUS_ACCESS_DENIED. I'm not sure how this translates to directory enumeration yet, but for now make this a parameter that can be checked in the various torture tests. This also gets RAW-ACLS and SMB2-CREATE passing against win7.
2009-12-03s4 torture: Add a few more windows target typesTim Prouty1-0/+2
2009-12-01s4 torture: Move target macros to a common header instead of redefining them ↵Tim Prouty1-0/+8
in multiple files
2009-10-17s4-torture: add a special check for administrators and privilegesAndrew Tridgell1-0/+3
lsa privileges calls don't expand groups. darn.
2008-12-29s4:lib/tevent: rename structsStefan Metzmacher1-2/+2
list="" list="$list event_context:tevent_context" list="$list fd_event:tevent_fd" list="$list timed_event:tevent_timer" for s in $list; do o=`echo $s | cut -d ':' -f1` n=`echo $s | cut -d ':' -f2` r=`git grep "struct $o" |cut -d ':' -f1 |sort -u` files=`echo "$r" | grep -v source3 | grep -v nsswitch | grep -v packaging4` for f in $files; do cat $f | sed -e "s/struct $o/struct $n/g" > $f.tmp mv $f.tmp $f done done metze
2008-11-16Move torture directory to top-level.Jelmer Vernooij1-1/+1
2008-11-03s4:torture: fix names of definesStefan Metzmacher1-3/+3
metze
2008-04-27Move subunit infrastructure code into lib/torture.Jelmer Vernooij1-0/+5
(This used to be commit 5b44d8121de7735d69e6238a1442aff034a8ebd3)
2008-04-09Move provision C bindings to param/.Jelmer Vernooij1-23/+0
(This used to be commit 7d45ed0c3ebc57f7131603f768f8e022d7139530)
2008-04-04Pass discovered server DN down to provision.Andrew Bartlett1-0/+1
This uses the new 'serverdn' argument added to provision in the previous commit. Andrew Bartlett (This used to be commit 74480c7de76069701246eb5b7acc5858b84d106c)
2008-03-06Make Samba4 pass the NET-API-BECOMEDC test against Win2k3 (again).Andrew Bartlett1-8/+2
To make Samba4, using the python provision system, pass this test required some major rework. Untested code is broken code, and some of the refactoring for a seperate provision test (which also now passes) broke things. Similarly, the iconv work has compiled, but these codepaths have never been run (NULL pointer de-reference). In working to use a local, rather than global, loadparm context, and to support using a target directory, a few things needed to be reworked, particularly around path handling. Andrew Bartlett (This used to be commit 1169e8d7bee20477b0efbfea3534ac63c83fb3d6)
2008-02-15Reconcile header files for torture utility functions.Jelmer Vernooij1-0/+120
(This used to be commit 1269758e95686cc155284d5d56080e1be11bbd75)