summaryrefslogtreecommitdiffstats
path: root/source/torture
Commit message (Collapse)AuthorAgeFilesLines
* If the string does not convert back, print the buggy result.Andrew Bartlett2003-04-061-3/+10
|
* Fix bigballofmud.so, and add a test to show a bug I'm having with push_ucs2.Andrew Bartlett2003-04-061-0/+40
| | | | Andrew Bartlett
* Test harness that exercises check_dos_char()Martin Pool2003-04-041-0/+42
|
* reversed the sense of the TCON test, now that we know that win2003Andrew Tridgell2003-04-011-10/+10
| | | | | fixes this. This means that TCON fails on win2000, but passes on Samba and win2003
* This changes our handling of invalid service types that theVolker Lendecke2003-03-301-0/+100
| | | | | | | | | client requested on tconx. We now return the same error code like NT4SP6 and W2kSP3 return. TCONDEV is a little test for this. Volker
* added simple tests for SMBchkpath and SMBioctlAndrew Tridgell2003-03-301-0/+142
|
* updated the TCON test so that win2000 passes. Samba now fails thisAndrew Tridgell2003-03-291-32/+63
| | | | | | | | | | | | test. It is an interesting test because it shows that win2000 completely ignores the TID and VUID fields in a SMBwriteX. In Samba it is hard to do this as we check the VUID and TID fields before we call the SMB specific reply functions. The test also shows that the list of open files must be global to the socket, not specific to a tcon.
* added a simple test for the old SMBtcon interfaceAndrew Tridgell2003-03-291-0/+38
|
* Patch from metze to generalise POPT_COMMON_SAMBA, with some minor changesJelmer Vernooij2003-03-242-45/+13
|
* Run test 10000 times to make measurement easier.Martin Pool2003-03-191-2/+7
|
* The new string macros catch a bug at compile that previously onlyMartin Pool2003-03-181-0/+7
| | | | | | trapped at runtime, which is great. So we have to try a little harder to provoke an overflow -- which is still caught nicely in developer mode.
* show which files we fail to create in the casetable testAndrew Tridgell2003-03-131-2/+5
|
* Update usage message.Martin Pool2003-03-121-1/+2
|
* Add example of string overflow which is now caught in developer mode.Martin Pool2003-03-121-0/+16
|
* having sticky create times is not a bugAndrew Tridgell2003-03-111-1/+0
|
* fixed the MANGLE smbtorture test with the new paranoid string codeAndrew Tridgell2003-03-111-1/+1
|
* make sure we have an empty directory when we start the utable testAndrew Tridgell2003-03-111-1/+5
|
* fixed use_oplocks and the timeout in smbtorture startupAndrew Tridgell2003-03-101-6/+16
|
* added -i option for ignoring dot errors in masktestAndrew Tridgell2003-03-101-2/+9
|
* Make smbtorture use the same cli_full_connection() framework as the rest ofAndrew Bartlett2003-03-064-865/+842
| | | | | | Samba. This fixes things like not doing *SMBSERVER etc. Andrew Bartlett
* FIXME about crash on failure case.Martin Pool2003-03-061-2/+5
|
* Add *SMBSERVER fallback code to smbtorture ...Richard Sharpe2003-03-051-3/+17
|
* Add code to allow us to specify the port to connect on when performingRichard Sharpe2003-03-051-6/+14
| | | | a test ...
* Add simple test harness that exposes StrCaseCmp for testing.Martin Pool2003-02-281-0/+20
|
* More const fixes and flow on fixes from yesterday's const-fest.Tim Potter2003-02-252-2/+2
|
* Add staticAndrew Bartlett2003-02-221-1/+1
|
* New locktest7 code based on patch from "Srikanta Shivanna" ↵Jeremy Allison2003-02-221-0/+134
| | | | | | <sshivanna@pillardata.com> Jeremy.
* correct init for vfs.conn, thanks StefanSimo Sorce2003-02-191-1/+2
|
* Add -V option (to print out version) to utilities where possibleJelmer Vernooij2003-02-182-0/+2
| | | | (pdbedit already has a -V option..)
* Antti Andreimann <Antti.Andreimann@mail.ee> has done some changes to enableAndrew Bartlett2003-02-152-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | users w/o full administrative access on computer accounts to join a computer into AD domain. The patch and detailed changelog is available at: http://www.itcollege.ee/~aandreim/samba This is a list of changes in general: 1. When creating machine account do not fail if SD cannot be changed. setting SD is not mandatory and join will work perfectly without it. 2. Implement KPASSWD CHANGEPW protocol for changing trust password so machine account does not need to have reset password right for itself. 3. Command line utilities no longer interfere with user's existing kerberos ticket cache. 4. Command line utilities can do kerberos authentication even if username is specified (-U). Initial TGT will be requested in this case. I've modified the patch to share the kinit code, rather than copying it, and updated it to current CVS. The other change included in the original patch (local realms) has been left out for now. Andrew Bartlett
* Fixup delete on close torture.Jeremy Allison2003-02-111-10/+4
| | | | Jeremy.
* Samba janitors: applying mbp's redundant umask fix.Jeremy Allison2003-02-071-4/+0
| | | | Jeremy.
* Got complete (I hope) coverage of the OPEN TRUNCATE ATTRIBUTES test.Jeremy Allison2003-02-031-122/+91
| | | | | Now to make Samba pass it :-). Jeremy.
* Added first part of attribute matrix tests. Not run and compiled in right now...Jeremy Allison2003-01-311-0/+101
| | | | Jeremy.
* Fix a number of client-side fstring/pstring mixups.Andrew Bartlett2003-01-114-20/+20
| | | | Andrew Bartlett
* BIG patch...Andrew Bartlett2003-01-028-64/+66
| | | | | | | | | | | | | | | | This patch makes Samba compile cleanly with -Wwrite-strings. - That is, all string literals are marked as 'const'. These strings are always read only, this just marks them as such for passing to other functions. What is most supprising is that I didn't need to change more than a few lines of code (all in 'net', which got a small cleanup of net.h and extern variables). The rest is just adding a lot of 'const'. As far as I can tell, I have not added any new warnings - apart from making all of tdbutil.c's function const (so they warn for adding that const string to struct). Andrew Bartlett
* Finish adding strings to all talloc_init() calls.Jeremy Allison2002-12-231-1/+1
| | | | Jeremy.
* Forward port the change to talloc_init() to make all talloc contextsJeremy Allison2002-12-201-1/+1
| | | | | named. Ensure we can query them. Jeremy.
* Please compile with :Jeremy Allison2002-11-231-20/+26
| | | | | | -g -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual if you're using gcc. It really does help ! Jeremy.
* Added HIDDEN/NORMAL attribute test.Jeremy Allison2002-11-181-1/+49
| | | | Jeremy.
* Fix the build.Jim McDonough2002-11-071-1/+4
| | | | | | Build farm! Build farm! Please check the build farm! ...or at least run make torture.
* Fix build. Extra parm was added to cli_full_connection, but not in locktest2.c.Jim McDonough2002-10-181-1/+2
|
* forgot some bits from previous rpc_secdesc.h rework patchSimo Sorce2002-10-071-3/+3
|
* Fix the compile issue in bin/samtest, and make the 'system' token just have theAndrew Bartlett2002-09-301-2/+2
| | | | | System sid. This avoids comparing with ACEs that we don't yet support in the ADS Domain security descriptor.
* Remove sam/api.c.Andrew Bartlett2002-09-292-14/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | In order to reduce complexity, this patch removes the upper layer of the SAM API. Also, we remove the function pointers on the sam context - there really is no point making these replaceable - that's for the modules. Move a number of functions in include/interface.c around to allow for use of 'static' and to keep the external API in one chunk, at the bottem. All these functions were renamed to remove the context_sam -> sam Consequential changes in the samtest module, and back out metze's change for ACB filtering, becouse I think it belongs in the SAM backeds. (But I will take debate on this one). Changes to the lib/util_sid.c code to create a 'system' token, and make it a SAM_ASSERT() enforced requirement to have a token on those calls that specify it. samtest now uses this. We should have a samtest call to set your own token. We also need to extend our se_access code to cover the things that Win2k is returning in it's access tokens. Currently our system token doesn't pass, due to unexpected flags. (When running sam_ads against Win2k) Andrew Bartlett
* Fix 'plugin' commandJelmer Vernooij2002-09-281-2/+2
|
* Patch from metze to fix enum_accountsJelmer Vernooij2002-09-281-13/+56
|
* Add the beginings of sam_ads to the tree.Andrew Bartlett2002-09-281-3/+3
| | | | | | | | | | | | | | | | This module, primarilly the work of "Stefan (metze) Metzmacher" <metze@metzemix.de>, uses the Active Directory schema to store the user/group/other information. I've been testing it against a real AD server, and it is intended to work with OpenLDAP as well. I've moved a few functions around in our other libads code, which has made it easier to tap into that existing code. Also, I've made some changes to the SAM interface, I hope there are not too many objections... To ensure we don't get silly bugs in the skel module, it is now in the default compile. This way you should not forget to update it :-) Andrew Bartlett
* notify user when no {domains,accounts} were foundJelmer Vernooij2002-09-251-0/+10
|
* Add samtest command 'enum_accounts' + few typo fixes in sam/interface.cJelmer Vernooij2002-09-251-1/+29
|