diff options
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/nbench/nbench.c | 6 | ||||
-rw-r--r-- | source4/torture/nbench/nbio.c | 7 |
2 files changed, 7 insertions, 6 deletions
diff --git a/source4/torture/nbench/nbench.c b/source4/torture/nbench/nbench.c index 6b0e78e1ab..3da7dedae1 100644 --- a/source4/torture/nbench/nbench.c +++ b/source4/torture/nbench/nbench.c @@ -21,8 +21,8 @@ #include "includes.h" int nbench_line_count = 0; -static int timelimit = 300; -static const char *loadfile; +static int timelimit = 600; +static char *loadfile; #define ival(s) strtol(s, NULL, 0) @@ -188,5 +188,3 @@ BOOL torture_nbench(int dummy) 1.0e-6 * nbio_total() / t); return correct; } - - diff --git a/source4/torture/nbench/nbio.c b/source4/torture/nbench/nbio.c index 819383b7d8..4ce3ea011b 100644 --- a/source4/torture/nbench/nbio.c +++ b/source4/torture/nbench/nbio.c @@ -22,7 +22,7 @@ #include "includes.h" -#define MAX_FILES 1000 +#define MAX_FILES 100 extern int nbench_line_count; static int nbio_id; @@ -557,6 +557,10 @@ void nb_deltree(const char *dname) { int total_deleted; + smb_raw_exit(c->session); + + ZERO_STRUCT(ftable); + total_deleted = cli_deltree(c->tree, dname); if (total_deleted == -1) { @@ -570,7 +574,6 @@ void nb_deltree(const char *dname) void nb_cleanup(const char *cname) { char *dname = NULL; - smb_raw_exit(c->session); asprintf(&dname, "\\clients\\%s", cname); nb_deltree(dname); free(dname); |