summaryrefslogtreecommitdiffstats
path: root/source4/torture
Commit message (Collapse)AuthorAgeFilesLines
* s4-server: make server sockets a child of the task contextAndrew Tridgell2010-11-151-1/+1
| | | | | | | | | | | | We previously allocated sockets as direct children of the event context. That led to crashes if a service called task_server_terminate(), as it left the socket open and handling events for a dead protocol. Making them a child of the task allows the task to terminate and take all its sockets with it. Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* torture: Only add in tests for socket_wrapper/nss_wrapper when they have ↵Jelmer Vernooij2010-11-122-2/+18
| | | | been enabled.
* s4-repl: dsdb_extended_replicated_objects_convert -> ↵Kamen Mazdrashki2010-11-111-9/+9
| | | | | | dsdb_replicated_objects_convert/ It is part of dsdb_replicated_* family of functions
* s4-test: repl_schema - Make sure LdbError and ERR_NO_SUCH_OBJECT are visibleKamen Mazdrashki2010-11-111-0/+1
|
* s4-test: use IPC$ instead of ADMIN$ for srvsvc NetShareGetInfo testAndrew Tridgell2010-11-111-3/+3
| | | | | | | IPC$ is guaranteed to exist on servers that do RPC, whereas ADMIN$ isn't Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-smbtorture: use test_GetPrinterData{Ex}_checktype calls in RPC-SPOOLSS tests.Günther Deschner2010-11-101-3/+3
| | | | | | | Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Wed Nov 10 15:07:12 UTC 2010 on sn-devel-104
* s4-smbtorture: allow to test returned type after specific error code in ↵Günther Deschner2010-11-101-15/+48
| | | | | | PrinterData tests. Guenther
* s4-test: Initial implementation for Schema replication black box testKamen Mazdrashki2010-11-081-0/+174
|
* s4:torture/dssync.c - remove unused variableMatthias Dieter Wallnöfer2010-11-071-1/+0
|
* credentials: Lowercase library name,Jelmer Vernooij2010-11-071-1/+1
| | | | | Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sun Nov 7 01:48:44 UTC 2010 on sn-devel-104
* ldbsamba: Lowercase library name.Jelmer Vernooij2010-11-072-2/+2
|
* samdb: Lowercase library name.Jelmer Vernooij2010-11-073-3/+3
|
* s4:DRS-RPC-DSSYNC: don't try to decrypt secret attributes twiceStefan Metzmacher2010-11-061-19/+3
| | | | | | | | | | | | dsdb_extended_replicated_objects_convert() already decrypts the attributes in place. This fixes the usage of --option="dssync:print_pwd_blobs=yes". metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Sat Nov 6 13:30:16 UTC 2010 on sn-devel-104
* s4-torture Add tests for DES-only accounts PAC behaviour/validation.Andrew Bartlett2010-11-023-3/+83
| | | | | | | | Previously we didn't support DES-only in a Samba4 domain. This is important for some legacy systems that have not yet migrated from this weak crypto. Andrew Bartlett
* s4-torture Remove torture/locktest2.c (no longer compiled and unused)Andrew Bartlett2010-11-011-578/+0
| | | | | | | This is a left-over of a speculative approach to lock testing that didn't go anywhere. Andrew Bartlett
* s4:torture - suppress printf "%llu" on uint64_t variables warningsMatthias Dieter Wallnöfer2010-11-014-29/+34
| | | | | | The signed/unsignedness does match (always unsigned). The bitlength (64 bit) on all regular platforms does also. Therefore simply add a cast to "unsigned long long".
* s4-modules: get rid of the remaining static prototypes for modulesAndrew Tridgell2010-11-011-17/+2
| | | | the waf build now generates the prototype declarations for us
* idl: Use DRSUAPI_ATTID_ prefix instead of DRSUAPI_ATTRIBUTE_ for ATTID valuesKamen Mazdrashki2010-10-311-11/+11
| | | | | Those values are actually ATTID values and such, they are used for ATTIDs for Attributes, Classes and Syntaxes.
* s4: Remove the old perl/m4/make/mk-based build system.Jelmer Vernooij2010-10-319-628/+0
| | | | | | | | The new waf-based build system now has all the same functionality, and the old build system has been broken for quite some time. Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sun Oct 31 02:01:44 UTC 2010 on sn-devel-104
* s4-smbd: initialise process models in smbtorture before useAndrew Tridgell2010-10-301-0/+4
| | | | | | | the spoolss notify test needs to setup the process models before use Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Sat Oct 30 13:32:09 UTC 2010 on sn-devel-104
* s4-auth: make KERBEROS subsystem into authkrb5 private libraryAndrew Tridgell2010-10-301-1/+1
| | | | | | this fixes some double linking. The name 'KERBEROS' was also a bit confusing, as it sounded like a base kerberos library, when it is in fact part of auth
* s4-torture: simplify the depenencies for TORTURE_DRSAndrew Tridgell2010-10-301-1/+1
| | | | | | it doesn't need to depend on the kitchen sink Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-smbd: don't initialise process models more than onceAndrew Tridgell2010-10-301-2/+2
| | | | | | | | | this also removes the event_context parameter from process model initialisation. It isn't needed, and is confusing when a process model init can be called from more than one place, possibly with different event contexts. Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* replace: create a private replace-test libraryAndrew Tridgell2010-10-302-2/+3
| | | | used by replace_testuite and smbtorture
* s4:torture/rpc/samr.c - fix NTTIME warnings by castsMatthias Dieter Wallnöfer2010-10-291-13/+16
| | | | | | | | And also the format specifier is wrong since NTTIME is "uint64_t" and therefore unsigned. Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Fri Oct 29 10:36:46 UTC 2010 on sn-devel-104
* s4:torture/rpc/samr.c - test the "ReplicaSourceNodeName" only against s3Matthias Dieter Wallnöfer2010-10-291-2/+4
| | | | AD handles this differently (see MS-SAMR 2.2.4.1)
* s4-drs_tests: drs_util_DsAttributeId_to_string() is not used anymoreKamen Mazdrashki2010-10-291-74/+0
| | | | | Autobuild-User: Kamen Mazdrashki <kamenim@samba.org> Autobuild-Date: Fri Oct 29 09:54:01 UTC 2010 on sn-devel-104
* s4-pfm_test: Use single instance of global testing data to test withKamen Mazdrashki2010-10-291-52/+24
|
* s4-pfm-test: Enrich and fix comment primary for testing dataKamen Mazdrashki2010-10-291-5/+12
|
* s4 net: rename to samba-tool in order to not clash with s3 netKai Blin2010-10-282-7/+7
| | | | | Autobuild-User: Kai Blin <kai@samba.org> Autobuild-Date: Thu Oct 28 07:25:16 UTC 2010 on sn-devel-104
* s4-pfm_test: no need to test created prefixMap contents here - it already testedKamen Mazdrashki2010-10-261-3/+0
|
* s4-pfm_test: Tests for dsdb_schema_pfm_attid_from_oid()Kamen Mazdrashki2010-10-261-0/+117
|
* waf: Stop automaticaly changing dashes to underscores in library names.Jelmer Vernooij2010-10-262-4/+4
|
* waf: Remove lib prefix from libraries manually.Jelmer Vernooij2010-10-261-3/+3
|
* torture_local: Add missing dependency on socket_wrapper.Jelmer Vernooij2010-10-261-1/+1
|
* s4: Drop duplicate 'lib' prefix for private libraries.Jelmer Vernooij2010-10-262-3/+3
|
* s4-test: Extend DRS-msDSIntId test to verify Configuration NC replica alsoKamen Mazdrashki2010-10-251-5/+30
| | | | | Autobuild-User: Kamen Mazdrashki <kamenim@samba.org> Autobuild-Date: Mon Oct 25 13:13:48 UTC 2010 on sn-devel-104
* s4-test: Print correct partition DN in msDSIntId testKamen Mazdrashki2010-10-241-1/+1
| | | | | Autobuild-User: Kamen Mazdrashki <kamenim@samba.org> Autobuild-Date: Sun Oct 24 20:45:21 UTC 2010 on sn-devel-104
* torture/local: Depend on NSS_WRAPPER, even if it wasn't enabled.Jelmer Vernooij2010-10-241-1/+1
| | | | | | | torture_local tests nss_wrapper. Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sun Oct 24 01:02:00 UTC 2010 on sn-devel-104
* s4: Rename LIBCLI_NBT -> cli_nbt.Jelmer Vernooij2010-10-241-1/+1
|
* s4: Rename LIBCLI_LDAP to libcli_ldap.Jelmer Vernooij2010-10-241-1/+1
|
* s4: Rename WBCLIENT to wbclient.Jelmer Vernooij2010-10-241-1/+1
|
* s4: Rename SMBPASSWD to smbpasswd.Jelmer Vernooij2010-10-241-1/+1
| | | | Rename DSDB_MODULE to dsdb_module.
* s4: Rename LIBSAMBA-* to libsamba-*Jelmer Vernooij2010-10-242-6/+6
|
* waf: Rename LIBWINBIND-CLIENT to libwinbind-clientJelmer Vernooij2010-10-241-1/+1
|
* s4: Rename NSS_WRAPPER to nss_wrapper.Jelmer Vernooij2010-10-231-1/+1
| | | | | | | Only link to nss_wrapper when it is enabled. Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sat Oct 23 23:05:44 UTC 2010 on sn-devel-104
* s4: Rename NDR_TABLE to ndr_table.Jelmer Vernooij2010-10-232-2/+2
|
* dns/nbt: Fix spelling of the "authoritative" flag.Kai Blin2010-10-231-10/+10
|
* Lowercase socket_wrapper name.Jelmer Vernooij2010-10-211-1/+1
| | | | | | | Avoid linking against socket_wrapper outside of developer mode. Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Thu Oct 21 20:26:11 UTC 2010 on sn-devel-104
* s4-waf: we don't need the smbtorture.static for s3 any moreAndrew Tridgell2010-10-211-11/+0
| | | | | | | | | this breaks the build farm Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Thu Oct 21 11:04:21 UTC 2010 on sn-devel-104