From: Ronnie sahlberg Date: Thu, 12 Apr 2007 11:17:10 +0000 (+1000) Subject: add a beginning of a new test X-Git-Tag: tevent-0.9.20~348^2~2930^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=91b7cc8b273004d5e29325b19640c6d7f2b9c5f0;p=thirdparty%2Fsamba.git add a beginning of a new test right now this test only does one fetch lock but this will be enhanced as more code is added to ctdb to handle fetch_lock and store_unlock (This used to be ctdb commit 996f117d9181dee22aea979ce04333035f5522c7) --- diff --git a/ctdb/Makefile.in b/ctdb/Makefile.in index abd21520153..e0baf530459 100644 --- a/ctdb/Makefile.in +++ b/ctdb/Makefile.in @@ -30,7 +30,7 @@ CTDB_OBJ = $(CTDB_COMMON_OBJ) $(CTDB_TCP_OBJ) OBJS = @TDBOBJ@ @TALLOCOBJ@ @LIBREPLACEOBJ@ @INFINIBAND_WRAPPER_OBJ@ $(EXTRA_OBJ) $(EVENTS_OBJ) $(CTDB_OBJ) -BINS = bin/ctdbd bin/ctdbd_test bin/ctdb_test bin/ctdb_bench bin/ctdb_messaging bin/ctdb_fetch @INFINIBAND_BINS@ +BINS = bin/ctdbd bin/ctdbd_test bin/ctdb_test bin/ctdb_bench bin/ctdb_messaging bin/ctdb_fetch bin/ctdb_fetch1 @INFINIBAND_BINS@ DIRS = lib bin @@ -69,6 +69,10 @@ bin/ctdb_fetch: $(OBJS) tests/ctdb_fetch.o @echo Linking $@ @$(CC) $(CFLAGS) -o $@ tests/ctdb_fetch.o $(OBJS) $(LIB_FLAGS) +bin/ctdb_fetch1: $(OBJS) tests/ctdb_fetch1.o + @echo Linking $@ + @$(CC) $(CFLAGS) -o $@ tests/ctdb_fetch1.o $(OBJS) $(LIB_FLAGS) + bin/ctdb_messaging: $(OBJS) tests/ctdb_messaging.o @echo Linking $@ @$(CC) $(CFLAGS) -o $@ tests/ctdb_messaging.o $(OBJS) $(LIB_FLAGS)