Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-03-31 | s4-torture: removed more uses of typeof() | Andrew Tridgell | 1 | -64/+59 | |
not portable | |||||
2010-03-30 | s4:torture/basic/denytest.c - use "typeof" in a better supported syntax | Matthias Dieter Wallnöfer | 1 | -5/+5 | |
This should make it compatible with the SUN Studio C Compiler. | |||||
2010-02-02 | Change uint_t to unsigned int in source4 | Matt Kraai | 6 | -13/+13 | |
Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2010-01-26 | s4:smbtorture: add BASE-BENCH-HOLDOPEN | Stefan Metzmacher | 2 | -0/+64 | |
This is useful for manual performance testing with a large number of share mode entries. metze | |||||
2009-12-07 | s4/torture: add delete-on-close test for directories | Aravind Srinivasan | 1 | -0/+63 | |
This test opens a directory with delete on close, opens it again, and checks to make sure that the second open returned with NT_STATUS_DELETE_PENDING. | |||||
2009-12-03 | s4-torture: Allow the legacy DENY_FCB/DENY_DOS share modes to be ignored | Zachary Loafman | 1 | -0/+20 | |
Signed-off-by: Tim Prouty <tprouty@samba.org> | |||||
2009-11-07 | torture/basic/denytest - makes the code more compatible for TRU64 (consider ↵ | Matthias Dieter Wallnöfer | 1 | -10/+14 | |
buildfarm) | |||||
2009-11-05 | Fix up some of the timing constants for DELAYWRITE. Add some extra tests up ↵ | Jeremy Allison | 1 | -30/+114 | |
test_delayed_write_update6 to investigate what happens to a sticky write handle after a second handle close. Jeremy. | |||||
2009-10-20 | s4-torture: ran minimal_includes.pl over source4/torture | Andrew Tridgell | 17 | -29/+0 | |
This reduces compile time somewhat. | |||||
2009-10-17 | s4-torture: cleanup after the MAXIMUM_ALLOWED test | Andrew Tridgell | 1 | -0/+1 | |
2009-10-17 | s4-torture: add a special check for administrators and privileges | Andrew Tridgell | 1 | -6/+6 | |
lsa privileges calls don't expand groups. darn. | |||||
2009-10-17 | s4-torture: show the sid we are basing privilege tests on | Andrew Tridgell | 1 | -2/+6 | |
2009-10-16 | s4-torture: take privileges into account in BASE-MAXIMUM_ALLOWED | Andrew Tridgell | 1 | -10/+48 | |
The correct answer depends on the users privileges. | |||||
2009-10-15 | s4-smb: declare root_fid as a file handle | Andrew Tridgell | 5 | -12/+12 | |
In order to implement root_fid in the s4 SMB server we need to declare it as a handle type, just as for other fnum values in SMB. This required some extensive (but simple) changes in many bits of code. | |||||
2009-10-06 | s4/torture: Add server target of OneFS | Steven Danneman | 1 | -0/+23 | |
I've added a "--target=onefs" which lists expected deviation in the OneFS SMB server implementation compared to a Windows machine. I've added this in a generic way using a list of module specific parameters. This list currently only contains the absence of SACL support but will be added to as additional server differences are defined. I'd liked to use this abstraction for defining the differences between a WinXP and Win7 server as well. | |||||
2009-10-06 | s4/torture: Add SMB sharemode/access mask tests | Aravind Srinivasan | 3 | -0/+9355 | |
Test several thousand permutations of create mask and sharemodes on file and directory opens. These tests use a checked-in results table derived from a WinXP server to verify correct server behavior. CREATEX_ACCESS CREATEX_SHAREMODES_FILE CREATEX_SHAREMODES_DIR MAXIMUM_ALLOWED | |||||
2009-10-06 | s4/torture: change comments to torture_failures | Aravind Srinivasan | 1 | -2/+4 | |
This allows the frameworks that wrap smbtorture to detect errors better. | |||||
2009-09-14 | Torture test for bug 6529 - Offline files conflict with Vista and Office 2003. | Jeremy Allison | 1 | -0/+131 | |
Ensure we don't regress. Jeremy. | |||||
2009-08-24 | Allow systems with timestamp granularity of 1sec to work with | Jeremy Allison | 1 | -0/+15 | |
this test. Jeremy. | |||||
2009-08-11 | torture/basic: in run_derefopen() the file could have been deleted before ↵ | Matthias Dieter Wallnöfer | 1 | -2/+6 | |
the last unlink Through a suggestion pointed out in bug #6622 the test file sometimes doesn't exist on the last turn anymore. So we haven't to fail here since it could have been deleted by a concurrent process (e.g. when the same test runs multiple times). Therefore also NT_STATUS_OBJECT_NAME_NOT_FOUND is an acceptable result. | |||||
2009-06-03 | Note that the delaytime for update has changed betweek w2k3 and w2k8. | Jeremy Allison | 1 | -7/+11 | |
We must eventually parameterize this. Jeremy. | |||||
2009-03-01 | s4: Use same function signature for convert_* as s3. | Jelmer Vernooij | 2 | -9/+9 | |
2009-03-01 | Add allow_badcharcnv argument to all conversion function, for | Jelmer Vernooij | 2 | -3/+3 | |
consistency with Samba 3. | |||||
2009-02-11 | s4 torture: Two minor fixes to smbtorture BRL tests. | Zack Kirsch | 1 | -1/+1 | |
2009-02-02 | s4:libcliraw: s/private/private_data | Stefan Metzmacher | 1 | -7/+7 | |
metze | |||||
2008-12-29 | s4:lib/tevent: rename structs | Stefan Metzmacher | 1 | -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-12-18 | BASE-LOCK: fix LOCK5 | Stefan Metzmacher | 1 | -4/+12 | |
We need to close all 3 file handle to make the unlink work. metze | |||||
2008-12-09 | s4: [2/3] Fix a delete on close divergence from windows and the associated ↵ | Tim Prouty | 1 | -5/+18 | |
torture test This second patch fixes the deltest17 BASE-DELETE torture test to pass against win2k3/win2k8/winXPsp2 | |||||
2008-11-02 | Remove another use of global_loadparm. | Jelmer Vernooij | 2 | -12/+7 | |
Eventually, we should move some of these parameters into a separate struct (perhaps into smb_transport_options?), to avoid the long lists of parameters. | |||||
2008-11-02 | Add gensec_settings structure. This wraps loadparm_context for now, but | Jelmer Vernooij | 1 | -1/+2 | |
should in the future only contain some settings required for gensec. | |||||
2008-11-02 | Remove another use of global_loadparm. | Jelmer Vernooij | 1 | -0/+1 | |
2008-11-01 | Move lp_*() calls a bit higher up the calls tack. | Jelmer Vernooij | 1 | -1/+2 | |
2008-10-24 | Remove unused include param/param.h. | Jelmer Vernooij | 1 | -3/+4 | |
2008-10-24 | Remove iconv_convenience argument from convert_string{,talloc}() but | Jelmer Vernooij | 2 | -3/+3 | |
make them wrappers around convert_string{,talloc}_convenience(). | |||||
2008-10-24 | Eliminate another instance of global_loadparm. | Jelmer Vernooij | 2 | -1/+3 | |
2008-10-24 | Remove iconv_convenience parameter from simple string push/pull | Jelmer Vernooij | 1 | -11/+10 | |
functions. | |||||
2008-10-22 | Repel pstring to nsswitch/. | Jelmer Vernooij | 1 | -6/+5 | |
2008-10-12 | Fix number of arguments for file_load() functions. | Jelmer Vernooij | 1 | -1/+1 | |
2008-10-11 | Fix include paths to new location of libutil. | Jelmer Vernooij | 2 | -2/+2 | |
2008-09-30 | Pass session options around; saves another use of global_loadparm. | Jelmer Vernooij | 1 | -0/+1 | |
2008-09-30 | Pass options struct into session initialization functions rather than | Jelmer Vernooij | 1 | -1/+4 | |
using global_loadparm. | |||||
2008-09-18 | Properly report why a test didn't succeed (required for use with known | Jelmer Vernooij | 1 | -117/+91 | |
failures). | |||||
2008-09-16 | Fix last few includes to use new tdb location. | Jelmer Vernooij | 1 | -1/+1 | |
2008-09-12 | Comment the delay write time tests so I know what they're | Jeremy Allison | 1 | -3/+41 | |
testing. Jeremy. (This used to be commit 2bf9074c7751324483744f55b02cfb044bb0b2dd) | |||||
2008-09-09 | A truncate write must be a smbcli_smbwrite, not a | Jeremy Allison | 1 | -1/+1 | |
smbcli_write. Jeremy. (This used to be commit 8cebd4d36c862dcdc6551dc6bf4dda2342dfede7) | |||||
2008-09-08 | Make it easier to see when tests start/end. | Jeremy Allison | 1 | -15/+52 | |
Jeremy. (This used to be commit 6f89e728272ca14f0ed9557485e21647c0731ef2) | |||||
2008-09-08 | BASE-DELAYWRITE: test behavior of SMBwrite truncate, writeX, SMBwrite ↵ | Stefan Metzmacher | 1 | -0/+204 | |
truncate and writeX again metze (This used to be commit 66b8c8d80e1c8e45ab6ca38cabebea07aa122c40) | |||||
2008-09-08 | BASE-DELAYWRITE: test behavior of writeX, SMBwrite truncate, writeX and ↵ | Stefan Metzmacher | 1 | -0/+206 | |
SMBwrite again metze (This used to be commit 051164ba0a69d54aa706ffa876059e8dbbeacb36) | |||||
2008-09-08 | BASE-DELAYWRITE: demonstrate that a truncate write doesn't update the write ↵ | Stefan Metzmacher | 1 | -0/+157 | |
time after SET_FILE_INFO metze (This used to be commit f81014db9d5afbf9e0b1c007bc56fc1d3a201309) | |||||
2008-09-08 | BASE-DELAYWRITE: demonstrate that the time between the open and the first ↵ | Stefan Metzmacher | 1 | -0/+159 | |
write doesn't matter metze (This used to be commit 13d051cd633f4a4152d360453fe5297ad53cc7b5) |