Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-04-25 | RAW-LOCK: samba4 behaves like windows 7 in regard of locking error codes | Stefan Metzmacher | 1 | -7/+13 | |
metze | |||||
2009-04-25 | s4:torture: use torture api instead of printf for RAW-LOCK | Stefan Metzmacher | 1 | -234/+168 | |
metze | |||||
2009-04-25 | s4:tortore: use torture api instead of printf in RAW-RENAME | Stefan Metzmacher | 1 | -36/+38 | |
metze | |||||
2009-04-01 | s4 torture: Addition to RAW-BENCH-LOCK to take a configurable number of ↵ | Zack Kirsch | 1 | -1/+19 | |
locks before starting the test This can be useful for benchmarking as well as stress testing. | |||||
2009-04-01 | s/NT_STATUS_WIN7_INVALID_RANGE/NT_STATUS_INVALID_LOCK_RANGE/g | Zach Loafman | 1 | -2/+2 | |
2009-04-01 | s4 torture: Remove unused parameter | Tim Prouty | 1 | -14/+7 | |
2009-04-01 | s4 torture: Add new streams oplock test | Tim Prouty | 1 | -0/+176 | |
2009-03-10 | added a test that triggers a bug in the Samba3 notify code | Andrew Tridgell | 1 | -0/+169 | |
The Samba3 internal notify code doesn't work correctly when there is more than one tree connect to the same smbd process. This change to the RAW-NOTIFY test triggers the bug. | |||||
2009-02-27 | And the prize for the most pain caused in the build farm for a simple | Jeremy Allison | 1 | -1/+1 | |
typo goes to..... Tim Prouty !!!! Sorry Tim, nice test but you made a typo in passing in the size of an array so we were reading uninitialized memory :-). That took far longer than it should have to track down... (%$&#ing build system....). The build farm should now slowly go back to normal. Jeremy. | |||||
2009-02-26 | Add another torture test inspired by George @ Apple. | Jeremy Allison | 1 | -0/+86 | |
Inside a directory, keep a file open and then renaming the directory should fail with ACCESS_DENIED. This is connected to the test case where the close was failing due to a delayed write on a file not being able to succeed when Samba allowed the containing directory to be renamed. I will fix this in the server shortly (this should be done across connections also but with will be very hard in Samba - would need a full scan of the open file db on every directory rename) - so I will fix for the local case first (scanning local file opens inside an smbd is cheap). Jeremy. | |||||
2009-02-24 | Added torture test from a usage case from the Apple OS/X client. | Jeremy Allison | 1 | -0/+119 | |
Setting an attribute on a stream fnum must change the attribute on the base file. Jeremy. | |||||
2009-02-20 | s4 torture: Add comment to clarify test | Zack Kirsch | 1 | -0/+3 | |
2009-02-20 | Added torture tests to RAW-NOTIFY | Steven Danneman | 1 | -2/+150 | |
* This adds a test to check the change notify behavior of the SMB server when more events have been generated than can be returned in a single change notify response. * Second test makes sure the server doesn't return notification events for changes to the watched directory itself | |||||
2009-02-18 | s4 torture: Add new test to create a file with a lot of streams | Tim Prouty | 1 | -0/+45 | |
This tests how streaminfo deals with large buffers smbclient seems to have problems when the buffer size approaches the max data size. Also smbclient exposes no way to specify the max data size that is sent in a trans2 request. Instead it hardcodes in a much larger max than windows uses. For these reasons this test isn't actually run, but is more of a reference for how windows handles streaminfo buffers. | |||||
2009-02-18 | s4 torture: Add additional streams create disposition test | Tim Prouty | 1 | -0/+20 | |
2009-02-13 | s4 torture: Add rename test to imitate the way OS X renames files | Aravind Srinivasan | 1 | -0/+83 | |
This tests for mis-behaved case-insensitive get_real_filename implementations. | |||||
2009-02-11 | s4 torture: Smbtorture additions for Windows BRL | Zack Kirsch | 1 | -5/+566 | |
- Adds a few new BRL tests to RAW-LOCK - Adds a "win7" target to allow torture to handle protocol changes in windows 7 | |||||
2009-02-11 | s4 torture: Two minor fixes to smbtorture BRL tests. | Zack Kirsch | 1 | -2/+0 | |
2009-02-10 | s4 torture: Change nttransrename to use a normal access mask | Tim Prouty | 1 | -1/+1 | |
batch9 already tests for stat-only opens | |||||
2009-02-02 | s4:libcliraw: s/private/private_data | Stefan Metzmacher | 4 | -18/+18 | |
metze | |||||
2009-02-02 | s4:torture: s/private/private_data | Stefan Metzmacher | 2 | -14/+14 | |
metze | |||||
2009-01-09 | s4 torture: Add new create disposition test to RAW-STREAMS | Tim Prouty | 1 | -1/+167 | |
2009-01-07 | added support for stream renames in Samba4 | Andrew Tridgell | 1 | -1/+2 | |
This allows the RAW-STREAMS test to work again. We still have some limitations though: - renames of a stream to the default stream doesn't work - delete on close handling between streams and the main file is still broken | |||||
2009-01-04 | s4 torture: Add more rename tests to RAW-STREAMS | Tim Prouty | 1 | -3/+198 | |
There is one part of the new rename tests that passes against windows, but doesn't pass against samba3 right now. Windows allow renaming a stream to the default stream, but none of the current streams module support this. When this ability is added the check for samba can be removed from this test. This patch also adds a missing unlink in the cleanup of test_stream_delete and changes the order that the tests are run to be consistent with the physical order in the file. | |||||
2008-12-29 | s4:lib/tevent: rename structs | Stefan Metzmacher | 5 | -19/+19 | |
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-23 | Fix more compiler warnings. | Jelmer Vernooij | 2 | -2/+1 | |
2008-12-22 | Make it clearer when RAW-STREAMS is failing (don't always print names). | Jeremy Allison | 1 | -4/+6 | |
Jeremy. | |||||
2008-12-19 | Add torture test for bug #5986 - streams rename, so we don't regress. | Jeremy Allison | 1 | -0/+98 | |
Jeremy. | |||||
2008-12-18 | RAW-CHKPATH: not every server behaves like samba3... | Stefan Metzmacher | 1 | -1/+1 | |
metze | |||||
2008-12-17 | Samba3 smbd now passes test BATCH23 (with the fix for bug #5979), only ↵ | Jeremy Allison | 1 | -4/+0 | |
BATCH22 left to fix. Jeremy. | |||||
2008-12-13 | Added torture test for doing an openX over a directory | Jeremy Allison | 1 | -0/+47 | |
to ensure we get the correct error message. Jeremy. | |||||
2008-12-01 | RAW-STREAMS: test stream renames | Stefan Metzmacher | 1 | -8/+74 | |
metze | |||||
2008-12-01 | RAW-STREAMS: some more tests... | Stefan Metzmacher | 1 | -18/+180 | |
metze | |||||
2008-12-01 | RAW-STREAMS: test valid character in the range of 0x01 => 0x7F | Stefan Metzmacher | 1 | -0/+69 | |
metze | |||||
2008-12-01 | RAW-STREAMS: check some strange stream name combinations | Stefan Metzmacher | 1 | -0/+102 | |
metze | |||||
2008-12-01 | RAW-CHKPATH: test every character in the range of 0x01 => 0x7F | Stefan Metzmacher | 1 | -0/+81 | |
metze | |||||
2008-11-08 | Remove debug code added in error. | Jeremy Allison | 1 | -13/+2 | |
Jeremy. | |||||
2008-11-08 | Fix a subtle logic bug in the adaption of se_create_child_secdesc(), pass ↵ | Jeremy Allison | 1 | -5/+18 | |
RAW-ACL inheritance tests. Only access masks for SD get/set left to fix. Jeremy. | |||||
2008-11-06 | Start factoring out the inheritance differences. | Jeremy Allison | 1 | -1/+3 | |
Jeremy. | |||||
2008-11-04 | Pass all of RAW-ACLS except for inheritence. Working on that next. | Jeremy Allison | 1 | -1/+1 | |
Jeremy. | |||||
2008-11-04 | Trigger (and fix) a bug in Samba3 making smbd an infinite data source | Volker Lendecke | 2 | -0/+81 | |
A deferred open directly followed by a ulogoffX makes smbd3 send an infinite stream of ERRinvuid replies :-( | |||||
2008-11-03 | Be more verbose about a directory ACL error. | Jeremy Allison | 1 | -0/+5 | |
Jeremy. | |||||
2008-11-02 | Remove another use of global_loadparm. | Jelmer Vernooij | 5 | -2/+8 | |
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 | Fix the build. | Jelmer Vernooij | 4 | -4/+2 | |
2008-11-02 | Add gensec_settings structure. This wraps loadparm_context for now, but | Jelmer Vernooij | 2 | -2/+8 | |
should in the future only contain some settings required for gensec. | |||||
2008-11-02 | Remove another use of global_loadparm. | Jelmer Vernooij | 3 | -0/+5 | |
2008-10-28 | RAW-ACLS: test the behavior of NULL DACL vs. empty DACL | Stefan Metzmacher | 1 | -0/+244 | |
This is based on the torture test attached to bug 4284 by Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de>. metze | |||||
2008-10-24 | Remove unused include param/param.h. | Jelmer Vernooij | 9 | -9/+0 | |
2008-10-24 | Eliminate another instance of global_loadparm. | Jelmer Vernooij | 4 | -2/+7 | |
2008-10-14 | Add the oplock-batch25 test showing that a writeattr does not break an oplock | Volker Lendecke | 1 | -0/+70 | |
Probably that's already somewhere else, but I did not find it. |