• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..21-Jan-201171

configs/H27-May-20155

READMEH A D27-Apr-20092.8 KiB

reportH A D27-Apr-20092.7 KiB

report.awkH A D27-Apr-2009939

source/H27-May-201520

test_microH A D27-Apr-20093.3 KiB

README

1# $Id: README,v 1.6 2007/12/21 19:22:01 bostic Exp $
2
3A simple framework for core Berkeley DB micro-benchmarks, intended for
4two purposes: to certify a port of Berkeley DB to a new platform, and
5to provide micro-benchmark information between different Berkeley DB
6releases.
7
8=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
9To run the tests:
10
111. Unpack and build the Berkeley DB releases you want to run against.
12(Note that test_micro is only known to work on release 4.0 and later.)
13
142. Run the tests:
15
16	% sh test_micro
17
18   By default, tests are run for all of the Berkeley DB builds found in
19   the current working directory.  A build is identified by its
20   top-level name, and is expected to be of the form:
21
22	   db-<major>.<minor>.<patch>
23
24   and the fact the Berkeley DB library has been built in the standard
25   location in that directory tree (for example, "build_unix/libdb.a".
26   Directories with other names and directories without a library will
27   be ignored.
28
29   You can run a subset of the tests using command-line arguments:
30
31	% sh test_micro 3			# Run test 3
32	% sh test_micro 3-5			# Run tests 3-5
33	% sh test_micro 3-			# Run test 3 to the maximum test
34	% sh test_micro -3			# Run tests 1-3
35
36   You can run on a subset of the releases using the MAJOR and MINOR
37   environment variables:
38
39	% env MAJOR=4 MINOR=2 sh test_micro	# Run on 4.2.XX
40						# Run on 4.1.XX and 4.2.XX
41	% env MAJOR=4 MINOR='[12]' sh test_micro
42
433. If you want to generate the micro-benchmark output build the HTML
44   page after the run:
45
46	% sh report
47
48   The output of the tests and the web page are created in the directory
49   RUN.hostname (for example, "RUN.abyssinian").  The tests are numeric
50   filenames in that directory (for example, "1", "2", "36").  The web
51   page output is in the file "hostname.html".
52
53=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
54To run different test configurations:
55
561. Modify the configuration files in the configs/ directory to run the
57   tests you want to run.  The configuration file configs/run.std is the
58   tests that are run by the test_micro shell script.
59
60=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
61To add a new test program:
62
631. Add a new file to the SOURCE directory, and build it as part of
64   building the test_micro program.   This will require changes to
65   the test_micro shell script, as well as the standard build rules
66   for all of the Berkeley DB systems, found in the dist/ directory.
67
68   The file must output the following line on stdout:
69
70	# title
71	major.minor.patch<tab>operations/second
72
73   For example:
74
75	# 10000 Btree database open/close pairs
76	3.0.55  29600.69
77	3.1.17  30438.25
78
792. Modify the file test_micro/test_micro.c to exec your new command
80   (this should only require changing the cmdlist structure at the top
81   of that file).
82
833. Modify the test_micro configuration files in the configs/ directory
84   to run your new command.
85