summaryrefslogtreecommitdiff
path: root/source
Commit message (Collapse)AuthorAgeFilesLines
* r19401: make tdb_lockall() much more efficient, and add a tdb_lockall_read()Andrew Tridgell2007-10-107-69/+142
| | | | | call which does a read lock on all chains. These will be used to make ldb searches more efficient
* r19400: fixed a valgrind error in the directory registry backend (name wasAndrew Tridgell2007-10-101-2/+2
| | | | used after closedir(), which invalidates the name)
* r19398: more commentsRafal Szczesniak2007-10-101-3/+97
| | | | rafal
* r19396: Assume socketpair() is always available (cared for by libreplace) andJelmer Vernooij2007-10-101-16/+22
| | | | create a socket for stderr.
* r19395: Fix replacement function compilation.Jelmer Vernooij2007-10-101-1/+1
|
* r19393: Add replacement function for socketpair()Jelmer Vernooij2007-10-103-0/+66
|
* r19392: Use torture_setting_* rather than lp_parm_* where possible.Jelmer Vernooij2007-10-1041-119/+114
|
* r19389: Remove samba3-specific checks: instead, always simply mark these ↵Jelmer Vernooij2007-10-101-7/+5
| | | | | | tests as known failing.
* r19388: Start running all LOCAL-* tests but list some of them as known failing.Jelmer Vernooij2007-10-102-3/+7
|
* r19387: Exit with 0 if failures were expectedJelmer Vernooij2007-10-104-6/+12
|
* r19381: Print out the specific tests that failed after a smbtorture run.Jelmer Vernooij2007-10-106-216/+332
| | | | | Support listing known failures as a list of wildcards in the file `KNOWN_FAILURES'.
* r19380: forgot to add home drive testing as well as home directory...Rafal Szczesniak2007-10-101-0/+8
| | | | rafal
* r19379: add testing home directory field to the samr tests.Rafal Szczesniak2007-10-101-0/+8
| | | | rafal
* r19378: Add another type of test result 'error'Jelmer Vernooij2007-10-103-7/+16
|
* r19377: Simplify report functions.Jelmer Vernooij2007-10-105-61/+35
|
* r19376: Remove unused helper function.Jelmer Vernooij2007-10-103-9/+1
|
* r19375: very basic helper script to build ldb standaloneSimo Sorce2007-10-101-0/+21
|
* r19373: Merge changes from subunit branch: Convert libreplace testsuite to aJelmer Vernooij2007-10-106-27/+25
| | | | standalone program that speaks subunit.
* r19372: Fix segfault for ui's that don't support comments.Jelmer Vernooij2007-10-101-1/+2
|
* r19370: Handle errors if talloc_reference failsSimo Sorce2007-10-101-2/+7
|
* r19369: - we need to set the target:samba3 before calling torture_init()Stefan Metzmacher2007-10-101-10/+7
| | | | | | | | | otherwise BASE-DELETE will run all tests - call ldb_global_init() directly after torture_init() this isn't strictly needed but looks better metze
* r19367: Solaris needs <sys/filio.h> for FIONREAD.Love Hörnquist Åstrand2007-10-101-0/+1
|
* r19366: don't fail async echo tests due to rounding errorsAndrew Tridgell2007-10-101-3/+6
|
* r19365: fixed a memory leak in the ldb attribute handlingAndrew Tridgell2007-10-103-8/+19
|
* r19364: Fix build for 'regular' installs.Jelmer Vernooij2007-10-101-1/+1
|
* r19363: - don't need to store the baseinfo message after cache loadAndrew Tridgell2007-10-102-8/+9
|
* r19362: - don't need to store the baseinfo message after cache loadAndrew Tridgell2007-10-105-0/+11
| | | | | - set better names on talloc structures in ldb modules, making leaks easier to track down
* r19361: added a commentAndrew Tridgell2007-10-101-0/+3
|
* r19360: improve the ldb leak detector - it now takes into account the numberAndrew Tridgell2007-10-101-3/+12
| | | | | of blocks used at connect time (which depends on how many modules are loaded)
* r19359: More portable way of figuring out whether something is a directoryJelmer Vernooij2007-10-101-4/+6
|
* r19358: Use subunit tests from the right location (fromJelmer Vernooij2007-10-105-12/+19
| | | | $src/bin/torture when developing, $LIBDIR/torture when installed)
* r19356: Reapply portability fix..Jelmer Vernooij2007-10-101-1/+5
|
* r19352: Oops, missed a few changes...Jelmer Vernooij2007-10-101-15/+31
|
* r19350: Properly list LOCAL-TALLOC under the "LOCAL" header.Jelmer Vernooij2007-10-1011-70/+84
| | | | | Support directories for subcategories in tests. Several small other fixes.
* r19347: Add socketpair()Jelmer Vernooij2007-10-102-1/+2
|
* r19346: AF_LOCAL isn't defined on all platforms.Jelmer Vernooij2007-10-101-1/+5
|
* r19344: run smbclient and cifsdd under valgrind and pass the correct ↵Stefan Metzmacher2007-10-102-2/+2
| | | | | | | | configuration to get useful backtraces in the build-farm metze
* r19343: Add support for external scripts/binaries that write results using theJelmer Vernooij2007-10-1015-222/+589
| | | | | | | | | | | | | | | | | | | | | | | 'subunit' protocol. This allows us to easily plug EJS scripts or binaries that can't depend on -ltorture into smbtorture. The protocol is very simple: - write "comments" to stderr Example output on stdout: test: foo success: foo test: bar success: bar test: blah failure: blah [ dummy.c:30: Expression 1 != 2 failed! ] test: blie skip: blie [ Iconv support not built in ] I've already converted the talloc testsuite.
* r19341: ndr_push_union_blob() needs the same fix as ndr_push_struct_blob()Stefan Metzmacher2007-10-101-0/+2
| | | | metze
* r19339: Merge my 4.0-unittest branch. This adds an API for more fine-grainedJelmer Vernooij2007-10-1075-6582/+5398
| | | | | | | | | | | | | | | | | | output in the testsuite rather than just True or False for a set of tests. The aim is to use this for: * known failure lists (run all tests and detect tests that started working or started failing). This would allow us to get rid of the RPC-SAMBA3-* tests * nicer torture output * simplification of the testsuite system * compatibility with other unit testing systems * easier usage of smbtorture (being able to run one test and automatically set up the environment for that) This is still a work-in-progress; expect more updates over the next couple of days.
* r19338: leak on errorSimo Sorce2007-10-101-0/+1
|
* r19337: never alloc on module unless you mean to attach a context toSimo Sorce2007-10-101-1/+1
| | | | it to keep the data around as long as the module lives
* r19336: Merge from release branch: new Mapped OIDs, in own subtree.Andrew Bartlett2007-10-103-7/+8
| | | | Andrew Bartlett
* r19334: Commit commented provisioning code to activate the schemaSimo Sorce2007-10-101-0/+32
|
* r19333: commit module changes I made some time ago before I loose themSimo Sorce2007-10-103-106/+135
|
* r19332: ldb_parse_tree leaksSimo Sorce2007-10-104-5/+5
|
* r19331: Respect the mem hierarchySimo Sorce2007-10-101-2/+2
|
* r19330: Fix memleaksSimo Sorce2007-10-101-1/+1
|
* r19329: fixed a leak in the password hash moduleAndrew Tridgell2007-10-101-1/+1
|
* r19328: another leak plugged ....Andrew Tridgell2007-10-101-1/+1
|