From 59100a45a05499c20d7ec74e736f5d2fdb28b3e4 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 11 Mar 2002 15:56:59 +0000 Subject: only try an ordinary file in lock6 (This used to be commit 965e23537c284dd312c714c111ec172d9a33b019) --- source3/torture/torture.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/torture/torture.c') diff --git a/source3/torture/torture.c b/source3/torture/torture.c index 015ed5b8eb..cb9685f6b9 100644 --- a/source3/torture/torture.c +++ b/source3/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]); -- cgit