diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-10-06 12:00:23 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:15:14 -0500 |
commit | 803d33a3266497f89edd9bfae92875a9afdd0df2 (patch) | |
tree | 63ada311ef942a943c663d9df047b893395338a8 /source3/lib/replace/test/testsuite.c | |
parent | a0a47d8149207fcfb9aa937d8d6a7c1ff2c8f417 (diff) | |
download | samba-803d33a3266497f89edd9bfae92875a9afdd0df2.tar.gz samba-803d33a3266497f89edd9bfae92875a9afdd0df2.tar.bz2 samba-803d33a3266497f89edd9bfae92875a9afdd0df2.zip |
r19125: merge from samba4
(This used to be commit 65e1500ae6b5ca6334a63f4a18272568202bc048)
Diffstat (limited to 'source3/lib/replace/test/testsuite.c')
-rw-r--r-- | source3/lib/replace/test/testsuite.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source3/lib/replace/test/testsuite.c b/source3/lib/replace/test/testsuite.c index fa5265f66f..d45304103f 100644 --- a/source3/lib/replace/test/testsuite.c +++ b/source3/lib/replace/test/testsuite.c @@ -231,14 +231,12 @@ static int test_opendir(void) extern int test_readdir_os2_delete(void); -static bool test_readdir(void) +static int test_readdir(void) { printf("testing readdir\n"); if (test_readdir_os2_delete() != 0) { return false; } - - /* FIXME */ return true; } @@ -400,7 +398,7 @@ bool torture_local_replace(struct torture_context *torture) ret &= test_vasprintf(); ret &= test_vsnprintf(); ret &= test_opendir(); - ret &= test_readdir() ; + ret &= test_readdir(); ret &= test_telldir(); ret &= test_seekdir(); ret &= test_dlopen(); |