diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-06-13 09:33:43 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-06-13 09:33:43 +0000 |
commit | ec33db96d510ab483989df13d4bd4e63c9d0b6b2 (patch) | |
tree | aa09f7c51dd65fc8cbac8c06374cb3fd955f06b6 /source3/utils/torture.c | |
parent | bf575bf2839fe795af59ddd24b1ab3451aea5699 (diff) | |
download | samba-ec33db96d510ab483989df13d4bd4e63c9d0b6b2.tar.gz samba-ec33db96d510ab483989df13d4bd4e63c9d0b6b2.tar.xz samba-ec33db96d510ab483989df13d4bd4e63c9d0b6b2.zip |
added -L switch to tell smbtorture to use oplocks
(This used to be commit 73033d0803317c7de017cac7f7669f4afb08e7c0)
Diffstat (limited to 'source3/utils/torture.c')
-rw-r--r-- | source3/utils/torture.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/source3/utils/torture.c b/source3/utils/torture.c index aa2737af301..a53ba1ce609 100644 --- a/source3/utils/torture.c +++ b/source3/utils/torture.c @@ -32,6 +32,7 @@ static int nprocs=1, numops=100; static int procnum; /* records process count number when forking */ static struct cli_state current_cli; static fstring randomfname; +static BOOL use_oplocks; static double create_procs(void (*fn)(int)); @@ -107,6 +108,7 @@ static BOOL open_connection(struct cli_state *c) } c->timeout = 120000; /* set a really long timeout (2 minutes) */ + if (use_oplocks) c->use_oplocks = True; if (!cli_session_request(c, &calling, &called)) { printf("%s rejected the session\n",host); @@ -1565,7 +1567,6 @@ static void run_maxfidtest(int dummy) fstring fname; int fnum; int retries=4; - int n = numops; cli = current_cli; @@ -2109,6 +2110,7 @@ static void usage(void) printf("\t-o num_operations\n"); printf("\t-O socket_options\n"); printf("\t-m maximum protocol\n"); + printf("\t-L use oplocks\n"); printf("\n\n"); printf("tests are:"); @@ -2180,7 +2182,7 @@ static void usage(void) fstrcpy(workgroup, lp_workgroup()); - while ((opt = getopt(argc, argv, "hW:U:n:N:O:o:m:")) != EOF) { + while ((opt = getopt(argc, argv, "hW:U:n:N:O:o:m:L")) != EOF) { switch (opt) { case 'W': fstrcpy(workgroup,optarg); @@ -2197,6 +2199,9 @@ static void usage(void) case 'O': sockops = optarg; break; + case 'L': + use_oplocks = True; + break; case 'n': fstrcpy(myname, optarg); break; |