summaryrefslogtreecommitdiffstats
path: root/selftest
Commit message (Collapse)AuthorAgeFilesLines
...
* selftest/Samba4: pass '--machinepass' to 'samba-tool domain join'Stefan Metzmacher2011-11-291-0/+4
| | | | | | | metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Tue Nov 29 11:00:42 CET 2011 on sn-devel-104
* s4 dns: Turn on internal DNS server during testingKai Blin2011-11-171-1/+1
|
* selftest/Samba4: allow schema updatesStefan Metzmacher2011-11-151-0/+1
| | | | metze
* selftesthelpers: Revert perl changes, add comment on why the original code ↵Jelmer Vernooij2011-11-141-3/+4
| | | | was necessary.
* selftesthelpers: Cope with empty binary mappings list, simplify handling of ↵Jelmer Vernooij2011-11-141-5/+7
| | | | perl.
* selftest/selftesthelpers.py: construct a fullname with env in ↵Stefan Metzmacher2011-11-141-1/+5
| | | | | | | | plantestsuite_idlist() Like we already do for plantestsuite_loadlist() metze
* selftest: planpythontestsuite() should fill 'name' is it's NoneStefan Metzmacher2011-11-141-0/+2
| | | | | | Otherwise make test shows tests with name "None". metze
* selftesthelpers: Fix syntax error.Jelmer Vernooij2011-11-101-1/+1
|
* selftest: Allow passing arbitrary number of additional python path values.Jelmer Vernooij2011-11-101-4/+2
|
* selftest: re-implement directory option for planpythontestsuite.Jelmer Vernooij2011-11-101-7/+11
|
* Revert "test: added directory option to planpythontestsuite()"Jelmer Vernooij2011-11-101-12/+5
| | | | | | This reverts commit b0be72d5080aed3da3f33a45b72f88e90fbe3d13. I'll add an alternative that uses subunit.run.
* test: added directory option to planpythontestsuite()Andrew Tridgell2011-11-101-5/+12
| | | | Pair-Programmed-With: Amitay Isaacs <amitay@gmail.com>
* build: only run symbol checking if running all testsAndrew Tridgell2011-11-101-0/+7
| | | | | | this makes it much faster to run 1 test Pair-Programmed-With: Amitay Isaacs <amitay@gmail.com>
* selftest: Remove the 'all' environment as it is just too slow to start upAndrew Bartlett2011-11-082-60/+1
| | | | | | | Instead we start the 'dc' environment, and other environments are available as: make testenv SELFTEST_TESTENV=fl2003dc Andrew Bartlett
* selftest/Samba4: use "server signing = on" for nowStefan Metzmacher2011-11-031-0/+4
| | | | | | | Otherwise the smb2.compound test fails as it doesn't work with signing yet. metze
* The xcopy test is used in unusual ways (via a different uid). Ensure we can ↵Jeremy Allison2011-10-282-0/+12
| | | | cope with this.
* The xcopy test requires "dos filemode=yes" as it opens with WRITE_OWNER.Jeremy Allison2011-10-281-0/+1
|
* s3-selftest Add all the LOCAL-* smbtorture tests to make testAndrew Bartlett2011-10-282-0/+3
| | | | | | | | The extra knownfail and skip entries are for tests the currently do not pass or hang. We need to work out why this happens, and fix the test or the test invocation. Andrew Bartlett
* selftest: Have only one set of selftest knownfail and skip filesAndrew Bartlett2011-10-285-26/+262
| | | | | | | | | | | Listing tests that are not ever proposed (eg samba4.* in the samba3 selftest) is not an error, so just combine the lists. This is being done because some folks trying to learn how our 'make test' works are having trouble following the distributed nature of the selftest system. Andrew Bartlett
* selftest: Remove --target option and the ability to run 'samba4 only' testsAndrew Bartlett2011-10-282-33/+16
| | | | | | | | | This simplifies the selftest system, and by default we always tested all of samba3 and samba4 in the waf build. This simply removes a rarely used option for testing only part of the system. The make test TESTS="^samba3" syntax remains unchanged, so no functionality is lost. Andrew Bartlett
* Revert "selftest: Avoid being run over by armies of the undead"Andrew Bartlett2011-10-201-2/+0
| | | | | | | | This reverts commit 2b47aface434000b29aa29f4ff6348cc147ae757 because it had a typo in $SIG{CHILD} (it needed to be $SIG{CHLD}), which when fixed simply broke the whole selftest system. Andrew Bartlett
* s4-selftest: Add tests for RPC dnsserverAmitay Isaacs2011-10-201-0/+1
| | | | Signed-off-by: Andrew Tridgell <tridge@samba.org>
* selftest:Samba3: fix signature for check_or_start()Michael Adam2011-10-181-1/+1
|
* selftest:Samba3: fix a message printed when starting winbinddMichael Adam2011-10-181-1/+1
|
* selftest: Fix plugin_s4_dc configuration.Andreas Schneider2011-10-122-7/+26
| | | | | | | Signed-off-by: Stefan Metzmacher <metze@samba.org> Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Wed Oct 12 13:50:10 CEST 2011 on sn-devel-104
* selftest: run dfs tests on plugin_s4_dcStefan Metzmacher2011-10-081-0/+3
| | | | | | | metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Sat Oct 8 03:18:54 CEST 2011 on sn-devel-104
* selftest/Samba3: enable uid wrapper in nmbd, winbindd and smbdStefan Metzmacher2011-10-061-0/+6
| | | | | | | | | metze Signed-off-by: Andreas Schneider <asn@samba.org> Autobuild-User: Andreas Schneider <asn@cryptomilk.org> Autobuild-Date: Thu Oct 6 13:49:05 CEST 2011 on sn-devel-104
* s4-subdomain more work on sub-domain joinAndrew Bartlett2011-09-131-2/+2
| | | | | | | | | | | we can now create a subdomain of an existing windows domain using: samba-tool domain join sub.domain.dns.name subdomain The ordering of the creation of the key records is quite tricky, especially for the NTDSDSA object Pair-Programmed-With: Andrew Tridgell <tridge@samba.org>
* selftest: add test for subdomain supportAndrew Bartlett2011-09-131-0/+120
|
* s3-rpc_server: Handle services with multiple pipe names.Andreas Schneider2011-09-011-2/+0
| | | | | The configuration should only use the default pipe name to configure all of them correctly.
* selftest: Allow a krb5.conf to be generated that covers multiple realmsAndrew Bartlett2011-08-263-23/+38
|
* set passdb backend in Samba4 make test environments tooAndrew Bartlett2011-08-221-0/+2
| | | | | Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Mon Aug 22 03:46:21 CEST 2011 on sn-devel-104
* s3-lsasd: Listen on \PIPE\lsass.Andreas Schneider2011-08-211-0/+1
| | | | Signed-off-by: Simo Sorce <idra@samba.org>
* selftest: Enable testing of the lsa service daemon.Andreas Schneider2011-08-211-0/+5
| | | | | Signed-off-by: Andreas Schneider <asn@samba.org> Signed-off-by: Simo Sorce <idra@samba.org>
* selftest: Fix daemon testing to use the new syntax.Simo Sorce2011-08-211-2/+6
| | | | | Signed-off-by: Andreas Schneider <asn@samba.org> Signed-off-by: Simo Sorce <idra@samba.org>
* selftest:Samba4: test --domain-critical-only in provision_vampire_dc()Stefan Metzmacher2011-08-121-1/+1
| | | | | | | | | | | | This way only only replicate critical objects during the initial join as DC, then we'll replicate the whole domain while 'samba' is running. metze Signed-off-by: Andrew Tridgell <tridge@samba.org> Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Fri Aug 12 14:07:50 CEST 2011 on sn-devel-104
* selftest:target/Samba4: use the correct configuration in setup_vampire_dc()Stefan Metzmacher2011-08-121-0/+2
| | | | | | | | This allows "TDB_NO_FSYNC=1 make -j test TESTS=vampire" to work. metze Signed-off-by: Andrew Tridgell <tridge@samba.org>
* s4-test: use standard process model for 'dc' serverAndrew Tridgell2011-08-121-20/+12
| | | | | | | | | | | this provides us with both 'standard' and 'single' process models in selftest, ensuring that we test the standard process model in the build farm Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Fri Aug 12 11:06:50 CEST 2011 on sn-devel-104
* selftest: Always test the spoolss deamon.Andreas Schneider2011-08-101-0/+1
| | | | | Autobuild-User: Andreas Schneider <asn@cryptomilk.org> Autobuild-Date: Wed Aug 10 19:29:14 CEST 2011 on sn-devel-104
* selftest: print %U in smbclient -L output to allow testingAndrew Bartlett2011-08-031-0/+1
|
* selftest: use the s4 winbindd in plugin_s4_dc testAndrew Bartlett2011-08-032-2/+2
| | | | Signed-off-by: Andrew Tridgell <tridge@samba.org>
* s3-rpc_server: Disable listening on tcpip ports by default.Andreas Schneider2011-08-011-0/+2
|
* s3-torture: Run epmapper as daemon and the tests over ncalrpc.Andreas Schneider2011-08-011-1/+1
|
* s3-selftest Add tests for 'map to guest = bad user'Andrew Bartlett2011-07-291-0/+32
| | | | Signed-off-by: Andrew Tridgell <tridge@samba.org>
* selftest: Avoid being run over by armies of the undeadAndrew Bartlett2011-07-291-0/+2
| | | | | | | | Ignore SIGCHILD to reap zombies Andrew Bartlett Signed-off-by: Andrew Tridgell <tridge@samba.org>
* selftest: explain how the message command test worksAndrew Bartlett2011-07-291-0/+2
|
* selftest: use "state directory" and "cache directory" optionsBjörn Baumbach2011-07-212-4/+4
| | | | | | | | | instead of "state dir" and "cache dir" Signed-off-by: Stefan Metzmacher <metze@samba.org> Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Thu Jul 21 10:06:32 CEST 2011 on sn-devel-104
* samba-tool: fixed some more calls to samba_tool join to be 'domain join'Andrew Tridgell2011-07-211-4/+4
|
* selftest: Pass lsass and epmapper across the named pipe proxy to the AD serverAndrew Bartlett2011-07-201-0/+2
| | | | | | | | | Eventually we will have just one end point mapper, but for now we need to use the source4 one for the AD tests. Andrew Bartlett Signed-off-by: Andrew Tridgell <tridge@samba.org>
* s4-fault: changed to use %d for PID, instead of %PID%Andrew Tridgell2011-07-132-2/+2
| | | | | | this matches the s3 behaviour Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>