summaryrefslogtreecommitdiff
path: root/source4/torture/raw/search.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-07-24 01:01:00 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:29:59 -0500
commit6b2d6ce60416726cae1bb4b234342fb53281b315 (patch)
treed1bce77fa0b02c5ab48582d7f18e3956fd343d4a /source4/torture/raw/search.c
parent9abc667c7126311e420d29a86f4e15fcb8b8db4d (diff)
downloadsamba-6b2d6ce60416726cae1bb4b234342fb53281b315.tar.gz
samba-6b2d6ce60416726cae1bb4b234342fb53281b315.tar.bz2
samba-6b2d6ce60416726cae1bb4b234342fb53281b315.zip
r8729: make the RAW-SEARCH test more robust to servers with hash based directory ordering
(This used to be commit 8c4d0cd7b7063116ab08545dbe5f23390c7973c4)
Diffstat (limited to 'source4/torture/raw/search.c')
-rw-r--r--source4/torture/raw/search.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/source4/torture/raw/search.c b/source4/torture/raw/search.c
index 235ce81660..ee61f605be 100644
--- a/source4/torture/raw/search.c
+++ b/source4/torture/raw/search.c
@@ -550,6 +550,7 @@ static NTSTATUS multiple_search(struct smbcli_state *cli,
printf("(%s) Incorrect value %s=%d - should be %d\n", \
__location__, #v, v, (int)correct); \
ret = False; \
+ goto done; \
}} while (0)
#define CHECK_STRING(v, correct) do { \
@@ -791,11 +792,7 @@ static BOOL test_modify_search(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
io2.t2fnext.in.max_count = 1;
io2.t2fnext.in.resume_key = 0;
io2.t2fnext.in.flags = 0;
- if (result.count == 0) {
- io2.t2fnext.in.last_name = "";
- } else {
- io2.t2fnext.in.last_name = result.list[result.count-1].both_directory_info.name.s;
- }
+ io2.t2fnext.in.last_name = result.list[result.count-1].both_directory_info.name.s;
status = smb_raw_search_next(cli->tree, mem_ctx,
&io2, &result, multiple_search_callback);
@@ -819,15 +816,15 @@ static BOOL test_modify_search(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
io2.generic.level = RAW_SEARCH_BOTH_DIRECTORY_INFO;
io2.t2fnext.in.handle = io.t2ffirst.out.handle;
- io2.t2fnext.in.max_count = num_files - 1;
+ io2.t2fnext.in.max_count = num_files + 3;
io2.t2fnext.in.resume_key = 0;
io2.t2fnext.in.flags = 0;
- io2.t2fnext.in.last_name = result.list[result.count-2].both_directory_info.name.s;
+ io2.t2fnext.in.last_name = ".";
status = smb_raw_search_next(cli->tree, mem_ctx,
&io2, &result, multiple_search_callback);
CHECK_STATUS(status, NT_STATUS_OK);
- CHECK_VALUE(result.count, 21);
+ CHECK_VALUE(result.count, 22);
ret &= check_result(&result, "t009-9.txt", True, FILE_ATTRIBUTE_ARCHIVE);
ret &= check_result(&result, "t014-14.txt", False, 0);