diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-03-25 16:01:28 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:59:13 -0500 |
commit | 909b111f587705a45f63540b39968f1af58a9b5d (patch) | |
tree | 48355b5250c40932b0c5a9dde2e5ade2c3fc29df /source4/lib/talloc | |
parent | 6c5853aa8d6dfbfeb96d705cbd157544352f810e (diff) | |
download | samba-909b111f587705a45f63540b39968f1af58a9b5d.tar.gz samba-909b111f587705a45f63540b39968f1af58a9b5d.tar.bz2 samba-909b111f587705a45f63540b39968f1af58a9b5d.zip |
r14720: Add torture_context argument to all torture tests
(This used to be commit 3c7a5ce29108dd82210dc3e1f00414f545949e1d)
Diffstat (limited to 'source4/lib/talloc')
-rw-r--r-- | source4/lib/talloc/testsuite.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/source4/lib/talloc/testsuite.c b/source4/lib/talloc/testsuite.c index a37f8c197e..b03be98587 100644 --- a/source4/lib/talloc/testsuite.c +++ b/source4/lib/talloc/testsuite.c @@ -48,6 +48,8 @@ #define BOOL int #endif +struct torture_context; + static struct timeval timeval_current(void) { struct timeval tv; @@ -842,7 +844,7 @@ BOOL test_lifeless(void) } -BOOL torture_local_talloc(void) +BOOL torture_local_talloc(struct torture_context *torture) { BOOL ret = True; @@ -871,8 +873,8 @@ BOOL torture_local_talloc(void) #if !defined(_SAMBA_BUILD_) || ((SAMBA_VERSION_MAJOR==3)&&(SAMBA_VERSION_MINOR<9)) int main(void) { - if (!torture_local_talloc()) { - printf("ERROR: TESTSUIE FAILED\n"); + if (!torture_local_talloc(NULL)) { + printf("ERROR: TESTSUITE FAILED\n"); return -1; } return 0; |