diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-09-13 06:11:53 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:18:30 -0500 |
commit | 764f74c565e4d5472c68ac9d820b6d1b1dbd598a (patch) | |
tree | 493e0176d96021ea208a45e1b579be0b307dc99b /source4/lib/replace/test/testsuite.c | |
parent | 918db36213fdd2faea7dc200de43595259b397f4 (diff) | |
download | samba-764f74c565e4d5472c68ac9d820b6d1b1dbd598a.tar.gz samba-764f74c565e4d5472c68ac9d820b6d1b1dbd598a.tar.bz2 samba-764f74c565e4d5472c68ac9d820b6d1b1dbd598a.zip |
r18442: run the os2_delete test in the testsuite too
that shows that Tru64 is broken...
It doesn't have getdirent() and the the replacement
code doesn't work there.
tridge: do you have any idea how to fix this?
metze
(This used to be commit a5ebfd0ab71f4f4288697f6fd3183a440ce7506b)
Diffstat (limited to 'source4/lib/replace/test/testsuite.c')
-rw-r--r-- | source4/lib/replace/test/testsuite.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/source4/lib/replace/test/testsuite.c b/source4/lib/replace/test/testsuite.c index 89d2ae6a88..6644fce6bd 100644 --- a/source4/lib/replace/test/testsuite.c +++ b/source4/lib/replace/test/testsuite.c @@ -229,8 +229,15 @@ static int test_opendir(void) return true; } -static int test_readdir(void) +extern int test_readdir_os2_delete(void); + +static bool test_readdir(void) { + printf("testing readdir\n"); + if (test_readdir_os2_delete() != 0) { + return false; + } + /* FIXME */ return true; } |