summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-10-02s4-selftest: support 'make testenv SCREEN=1'Andrew Tridgell4-5/+27
this can be used to start a test envioronment in screen windows. Use: make testenv SCREEN=1 SELFTEST_TESTENV=dc to launch just one environment (in this case, "dc")
2010-10-02s4-selftest: silence warnings about bind chownAndrew Tridgell2-2/+4
2010-10-02s4-test: silence a tap2subunit errorAndrew Tridgell1-1/+1
2010-10-02s4-test: silence the Failed to chown message in make testAndrew Tridgell1-3/+5
2010-10-02s4-ldif: get rid of the ndr_pull_error message on startupAndrew Tridgell1-10/+15
detect if the prefixmap blob is text or binary using the first 4 bytes
2010-10-02s4-server: exit with status 127 on SIGTERMAndrew Tridgell1-1/+1
this ensures that make test detects a failure if samba is killed by SIGTERM
2010-10-02s4-selftest: added --screen option for testAndrew Tridgell2-4/+75
you can now do: make test TESTS="some test" SCREEN=1 while in GNU screen, and all the samba servers will launch in their own new screen, named after the server name. You can also do: make test TESTS="some test" SCREEN=1 VALGRIND_SERVER=1 to run valgrind on each samba server, or make test TESTS="some test" SCREEN=1 GDBTEST=1 to run gdb on each server
2010-10-02s4-selftest: fixed up exit codes on signals for make testAndrew Tridgell1-5/+10
also set $ENVNAME in launched servers
2010-10-03land: Force always emailing when there is no other mechanism of progress ↵Jelmer Vernooij1-2/+8
reporting.
2010-10-03land: Attach tarball of logs rather than individual logs to keep theJelmer Vernooij1-19/+11
mail size reasonable.
2010-10-03land: Some cosmetic fixes.Jelmer Vernooij2-30/+55
2010-10-03land: Attach test output files to result emails.Jelmer Vernooij1-11/+43
2010-10-03land: Add --revision argument.Jelmer Vernooij2-8/+29
2010-10-03land-remote: Run remote land command unbuffered.Jelmer Vernooij2-2/+2
2010-10-03s4-kdc Fix up after import of new lorikeet-heimdalAndrew Bartlett2-4/+19
Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Sun Oct 3 01:56:04 UTC 2010 on sn-devel-104
2010-10-03Add new files for sha512 supportAndrew Bartlett2-1/+275
2010-10-03s4:heimdal: import lorikeet-heimdal-201010022046 (commit ↵Andrew Bartlett24-125/+418
1bea031b9404b14114b0272ecbe56e60c567af5c)
2010-10-03s4-heimdal We don't need HDBDIR any moreAndrew Bartlett1-2/+0
2010-10-03heimdal: change the version stringMatthieu Patou1-1/+1
2010-10-03s4-heimdal_build fix up build after heimdal importAndrew Bartlett4-8/+20
Heimdal has it's own dynconfig like system, and so we need the LIBDIR etc in the CFLAGS here. We also need to define build rules for the new files imported in the merge commit, and fix up some header files. This includes the work by Matthieu Patou <mat@matws.net> Andrew Bartlett
2010-10-03s4:heimdal: import lorikeet-heimdal-201009250123 (commit ↵Matthieu Patou382-1687/+34153
42cabfb5b683dbcb97d583c397b897507689e382) I based this on Matthieu's import of lorikeet-heimdal, and then updated it to this commit. Andrew Bartlett
2010-10-02s4-ldapcmp.py: Don't guess credentials for second Credentials objectKamen Mazdrashki1-1/+1
This allow us to fallback to first credentials given. Autobuild-User: Kamen Mazdrashki <kamenim@samba.org> Autobuild-Date: Sat Oct 2 23:05:20 UTC 2010 on sn-devel-104
2010-10-03s4-getopt.py: Make Anonymous creds when no credentialsKamen Mazdrashki1-2/+7
are supplied on command line and caller doesn't want us to guess credentials from environment
2010-10-03s4-test-fsmo.py: Implement kind of busy-wait for role transferKamen Mazdrashki1-18/+36
This allows us not to hard code timeout we are going to wait for before failing the test - if DCs are not very busy, we won't wait at all (speeds up 'make test' by a minute also) Maximum timeout to wait for is set to 20 secs currently, which should be enough even for slow machines and tested DCs being under load
2010-10-03s4-test-dsdb_schema_info.py: Get rid of global module variablesKamen Mazdrashki1-17/+19
2010-10-03s4-test-dsdb_schema_info.py: Simplify connection SamDBKamen Mazdrashki1-19/+3
by using samba.tests.connect_samdb() helper
2010-10-03s4-test-fsmo.py: Use common implementation for env_get_var_value()Kamen Mazdrashki1-8/+2
2010-10-03s4-test-delete_object.py: Use common implementation for env_get_var_value()Kamen Mazdrashki1-8/+2
2010-10-03s4-python-test: Common implementation for getting environment variable valueKamen Mazdrashki1-0/+11
Unit-test based python tests require certain input parameters to be set in environment, otherwise they can't be run
2010-10-03s4-python-samba: Remove trailing ';'sKamen Mazdrashki2-29/+29
2010-10-03s4-test-fsmo.py: Use common implementation for connect_samdb()Kamen Mazdrashki1-22/+2
Connections are restricted to LDAP only (remote), as this test can't be run against local LDBs
2010-10-03s4-test-delete_object.py: Use common implementation for connect_samdb()Kamen Mazdrashki1-20/+2
Connections are restricted to LDAP only (remote), as this test can't be run against local LDBs
2010-10-03s4-python-test: Implement global connect_samdb() functionKamen Mazdrashki1-0/+46
This helper makes proper ldb url to connect to and is a shorthand for test to create SamDB connections
2010-10-03s4-samba.samdb: Fix masking names from outer contextKamen Mazdrashki1-17/+17
- 'filter' is built-in - 'ldb' is a module name we imported
2010-10-03s4-python-samba: 'file' is a built-inKamen Mazdrashki1-3/+3
2010-10-03s4-samba.samdb: Fix leading indention and trailing ';'Kamen Mazdrashki1-10/+10
2010-10-03s4-python-samba: Fix few cosmeticsKamen Mazdrashki1-4/+3
- we have sys module already imported - _glue module is part of samba package so be more precise how to import
2010-10-03s3: Attempt to fix the non-ads buildVolker Lendecke1-1/+1
2010-10-03land-remote: Pass extra arguments on to land.Jelmer Vernooij2-3/+3
2010-10-02pytdb: Include Python.h first to prevent warning.Jelmer Vernooij1-1/+1
2010-10-02subunithelper: Remove accidentally added line.Jelmer Vernooij1-3/+0
2010-10-02pytdb: Check errors after PyObject_New() callsKirill Smelkov1-0/+7
The call could fail with e.g. MemoryError, and we'll dereference NULL pointer without checking. Signed-off-by: Kirill Smelkov <kirr@landau.phys.spbu.ru> Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
2010-10-02pytdb: Add support for tdb_repack()Kirill Smelkov2-0/+15
Cc: 597386@bugs.debian.org Signed-off-by: Kirill Smelkov <kirr@landau.phys.spbu.ru> Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
2010-10-02pytdb: Add TDB_INCOMPATIBLE_HASH open flagKirill Smelkov1-0/+1
In 2dcf76 Rusty added TDB_INCOMPATIBLE_HASH open flag which selects Jenkins lookup3 hash for new databases. Expose this flag to python users too. Cc: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Kirill Smelkov <kirr@mns.spb.ru> Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
2010-10-02subunithelper: Fix format time.Jelmer Vernooij1-1/+2
2010-10-02land: Implement --fail-immediately directly in Python, provide subunit file.Jelmer Vernooij1-26/+96
2010-10-02subunithelper: Make filter options optional.Jelmer Vernooij1-9/+9
2010-10-02format-subunit: Split out summary file writing.Jelmer Vernooij1-7/+11
2010-10-02selftest: Move plain text formatter to subunithelper.Jelmer Vernooij2-204/+204
2010-10-02land: Add separate treestagebuilder for subunit.Jelmer Vernooij1-12/+41