summaryrefslogtreecommitdiff
path: root/source4/script/tests/Samba4.pm
AgeCommit message (Collapse)AuthorFilesLines
2007-10-10r22167: This seems to get Fedora DS to run the tests again.Andrew Bartlett1-2/+2
Andrew Bartlett (This used to be commit b893c63183eaec20ab0000d0c6635672c2893dce)
2007-10-10r22162: get the TEST_LDAP mode working againAndrew Bartlett1-9/+9
Andrew Bartlett (This used to be commit 529575d07aeb269927315eaff121408c1beefa59)
2007-10-10r22161: Clarify exactly where the socket_wrapper should be handled (early),Andrew Bartlett1-9/+8
and ensure that $prefix exists before it tries to create $prefix/w. This should fix the build farm. Perhaps we should have a rm -rf $prefix at the start of this script, as that would have found the problem, but I want to be careful about that... Andrew Bartlett (This used to be commit a230261e83fd9161e60554b74cf8556f36b1af45)
2007-10-10r22156: - Lazy evaluate variable names.Jelmer Vernooij1-19/+39
- Don't set up environments until necessary - Add --resetup-environment option - Add 'none' environment (This used to be commit ed0410309bfdefb0d31cb247c26b947956fb1137)
2007-10-10r22074: More refactoring.Jelmer Vernooij1-13/+22
(This used to be commit b0e0c5cb94fc6d96dff9acd55ec632e3dd461b17)
2007-10-10r21970: Ensure that Fedora DS can be shut down correctly with the stop script:Andrew Bartlett1-1/+1
This needs the pid file to be in the right spot. Andrew Bartlett (This used to be commit cf9993a309ffe605610e4aaa2281576f319b5df0)
2007-10-10r21909: Merge some of my recent improvements to the test infrastructure:Jelmer Vernooij1-28/+72
- Allow tests to specify what environment they need to run in (dc and none are thecurrent supported ones). - Move more Samba4-specific code out of the common code (This used to be commit dbe9de10287c902f4a5ea5d431dea4a79f9b170b)
2007-10-10r21790: Setup the socket_wrapper_dir when we set the environment variable.Andrew Bartlett1-8/+0
Andrew Bartlett (This used to be commit 5c07dbd2487c5c23355ad0e3db6e9f9caf8ce145)
2007-10-10r21743: Always use the 'escaped' LDAPI path.Andrew Bartlett1-3/+13
Wait around for the server to start, so we don't try to contact it during it's starup phase. Andrew Bartlett (This used to be commit f484b0a924809dd8c9861ade8d184fb44b3b5e1f)
2007-10-10r21739: Make it easy to change the log level for the slapd processes, and haveAndrew Bartlett1-3/+3
the logs go to a file. Andrew Bartlett (This used to be commit 9aaa19319718a5a8fcc1df066cbce67eaa3431d8)
2007-10-10r21720: Try to make 'TEST_LDAP=yes make test' work again. These recentAndrew Bartlett1-6/+6
changes seem to have been lost in the merge, and some variables were not yet exported. Andrew Bartlett (This used to be commit ee9d9fb6c0bd3d4d01dea771025536ff83057072)
2007-10-10r21707: Finally merge my (long-living) perlselftest branch.Jelmer Vernooij1-0/+139
This changes the main selftest code to be in perl rather than in shell script. The selftest script is now no longer a black box but a regular executable that takes --help. This adds the following features: * "make test TESTS=foo" will run only the tests that match the regex "foo" * ability to deal with expected failures. the suite will not warn about tests that fail and are known to fail, but will warn about other failing tests and tests that are succeeding tests but incorrectly marked as failing. * ability to print a summary with all failures at the end of the run It also opens up the way to the following features, which I hope to implement later: * "environments", for example having a complete domains with DCs and domain members in a testenvironment * only set up smbd if necessary (not when running LOCAL tests, for example) * different mktestsetup scripts per target. except for the mktestsetup script, we can use the same infrastructure for samba 3 or windows. (This used to be commit 38f867880beb40c691e9713f854426031310629c)