Skip to content

Commit

Permalink
berkeleydbtest: implement put/get/range benchmark
Browse files Browse the repository at this point in the history
berkeleydb-test.c is replaced with berkeleydbtest.c
  • Loading branch information
mita committed Nov 22, 2010
1 parent e2d54ed commit 95cfcb3
Show file tree
Hide file tree
Showing 3 changed files with 133 additions and 280 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ testutil.o: testutil.c testutil.h
$(CC) $(CFLAGS) -c $<

tokyocabinettest: tokyocabinettest.c testutil.o
$(CC) $(CFLAGS) -o $@ $< testutil.o -ltokyocabinet
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< testutil.o -ltokyocabinet

berkeleydbtest: berkeleydbtest.c testutil.o
$(CC) $(CFLAGS) -o $@ $< testutil.o -ldb
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< testutil.o -ldb

tokyotyranttest: tokyotyranttest.c testutil.o
$(CC) $(CFLAGS) -o $@ $< testutil.o -ltokyotyrant -ltokyocabinet
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< testutil.o -ltokyotyrant -ltokyocabinet

kyototycoontest: kyototycoontest.cc testutil.o
$(CXX) $(CXXFLAGS) $(LDFLAGS) -o $@ $< testutil.o -lkyototycoon
Expand Down
274 changes: 0 additions & 274 deletions berkeleydb-test.c

This file was deleted.

Loading

0 comments on commit 95cfcb3

Please sign in to comment.