1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-01 21:18:10 +03:00

r19034: merge from samba4:

prepare libreplace testsuite for usage in smbtorture

metze
This commit is contained in:
Stefan Metzmacher 2006-10-02 10:37:17 +00:00 committed by Gerald (Jerry) Carter
parent fdad2ce734
commit 281677084e

View File

@ -89,7 +89,7 @@ static int test_strlcpy(void)
char buf[4]; char buf[4];
const struct { const struct {
const char *src; const char *src;
int result; size_t result;
} tests[] = { } tests[] = {
{ "abc", 3 }, { "abc", 3 },
{ "abcdef", 6 }, { "abcdef", 6 },
@ -373,9 +373,11 @@ static int test_MAX(void)
return true; return true;
} }
int torture_local_replace(void *ctx) struct torture_context;
bool torture_local_replace(struct torture_context *torture)
{ {
int ret = true; bool ret = true;
ret &= test_ftruncate(); ret &= test_ftruncate();
ret &= test_strlcpy(); ret &= test_strlcpy();
ret &= test_strlcat(); ret &= test_strlcat();
@ -423,7 +425,7 @@ int torture_local_replace(void *ctx)
return ret; return ret;
} }
#if !defined(_SAMBA_BUILD_) || ((SAMBA_VERSION_MAJOR==3)&&(SAMBA_VERSION_MINOR<9)) #if _SAMBA_BUILD_<4
int main(void) int main(void)
{ {
if (!torture_local_replace(NULL)) { if (!torture_local_replace(NULL)) {