summaryrefslogtreecommitdiff
path: root/source3/Makefile.in
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2000-06-05 13:53:56 +0000
committerAndrew Tridgell <tridge@samba.org>2000-06-05 13:53:56 +0000
commit7df31cb494a0cec411e08e22ee2ae837dff06807 (patch)
treed50a94d4949f1185eb61621ab9e3e3c807ac74a1 /source3/Makefile.in
parent6c178b38597058949c32ea4631bef807a716b981 (diff)
downloadsamba-7df31cb494a0cec411e08e22ee2ae837dff06807.tar.gz
samba-7df31cb494a0cec411e08e22ee2ae837dff06807.tar.bz2
samba-7df31cb494a0cec411e08e22ee2ae837dff06807.zip
added locktest2
this uses 16 open file descriptors on 2 servers, with each server accessed both via POSIX call and SMB calls. The idea is to test NFS/SMB locking interaction. Unfortunately the NT NFS locking implementation is so badly broken that we don't have anything to test against (This used to be commit 581498fe6b2efe44c1229dd12b9a6506b11747d0)
Diffstat (limited to 'source3/Makefile.in')
-rw-r--r--source3/Makefile.in10
1 files changed, 10 insertions, 0 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in
index f972085402..561d5781ea 100644
--- a/source3/Makefile.in
+++ b/source3/Makefile.in
@@ -273,6 +273,10 @@ MASKTEST_OBJ = utils/masktest.o $(LIBSMB_OBJ) $(PARAM_OBJ) \
LOCKTEST_OBJ = utils/locktest.o $(LOCKING_OBJ) $(LIBSMB_OBJ) $(PARAM_OBJ) \
$(UBIQX_OBJ) $(LIB_OBJ)
+
+LOCKTEST2_OBJ = utils/locktest2.o $(LOCKING_OBJ) $(LIBSMB_OBJ) $(PARAM_OBJ) \
+ $(UBIQX_OBJ) $(LIB_OBJ)
+
RPCTORTURE_OBJ = utils/rpctorture.o \
rpcclient/display.o \
rpcclient/cmd_lsarpc.o \
@@ -331,6 +335,8 @@ masktest : CHECK bin/masktest
locktest : CHECK bin/locktest
+locktest2 : CHECK bin/locktest2
+
rpctorture : CHECK bin/rpctorture
debug2html : CHECK bin/debug2html
@@ -505,6 +511,10 @@ bin/locktest: $(LOCKTEST_OBJ) bin/.dummy
@echo Linking $@
@$(CC) $(FLAGS) -o $@ $(LOCKTEST_OBJ) $(LDFLAGS) $(LIBS)
+bin/locktest2: $(LOCKTEST2_OBJ) bin/.dummy
+ @echo Linking $@
+ @$(CC) $(FLAGS) -o $@ $(LOCKTEST2_OBJ) $(LDFLAGS) $(LIBS)
+
bin/rpctorture: $(RPCTORTURE_OBJ) bin/.dummy
@echo Linking $@
@$(CC) $(FLAGS) -o $@ $(RPCTORTURE_OBJ) $(LDFLAGS) $(LIBS)