diff options
author | Andrew Tridgell <tridge@samba.org> | 2002-03-11 15:56:59 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2002-03-11 15:56:59 +0000 |
commit | 965e23537c284dd312c714c111ec172d9a33b019 (patch) | |
tree | aee4673a99211e1c3cdcc73bfc665462ffdec729 | |
parent | 3396a671c59e6afe70a22ce64e4a9381b1d6fef8 (diff) | |
download | samba-965e23537c284dd312c714c111ec172d9a33b019.tar.gz samba-965e23537c284dd312c714c111ec172d9a33b019.tar.xz samba-965e23537c284dd312c714c111ec172d9a33b019.zip |
only try an ordinary file in lock6
-rw-r--r-- | source/torture/torture.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/torture/torture.c b/source/torture/torture.c index 015ed5b8ebf..cb9685f6b9b 100644 --- a/source/torture/torture.c +++ b/source/torture/torture.c @@ -1499,7 +1499,7 @@ static BOOL run_locktest5(int dummy) static BOOL run_locktest6(int dummy) { static struct cli_state cli; - char *fname[2] = { "\\lock6.txt", "\\pipe\\lsarpc"}; + char *fname[1] = { "\\lock6.txt" }; int i; int fnum; NTSTATUS status; @@ -1512,7 +1512,7 @@ static BOOL run_locktest6(int dummy) printf("starting locktest6\n"); - for (i=0;i<2;i++) { + for (i=0;i<1;i++) { printf("Testing %s\n", fname[i]); cli_unlink(&cli, fname[i]); |