summaryrefslogtreecommitdiffstats
path: root/README
blob: eb034c2acdc07c73d254bac39c6dd414f4695058 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46

Rteval is a python program written to evaluate the performance of a
realtime Linux kernel on a particular hardware platform. The program
unpacks source code for two loads: hackbench and a Linux kernel
compile, then loops running hackbench and a parallel build of the
Linux kernel. While the loads are running, the cyclictest program is
run to measure realtime performance under load. When the specified run
duration is met, the loads are stopped and cyclictest outputs measured
timer latency values in histogram format, which is analyzed by
rteval. Rteval then writes an XML file to disk with information about
the system (gotten through DMI tables), the raw histogram data
collected during the run and the statistical analysis of the run. 

The rteval source may be pulled from it's git tree on kernel.org:
    git://git.kernel.org/pub/scm/linux/kernel/git/clrkwllms/rteval.git

Rteval requires the following packages to run:

Python >= 2.4 (and < 3.0)
    http://www.python.org/download/

python-schedtils
    git://git.kernel.org/pub/scm/linux/kernel/git/acme/python-schedutils.git

python-ethtools
    git://git.kernel.org/pub/scm/linux/kernel/git/acme/python-ethtool.git

python-lxml
  http://lxml.de/

python-dmidecode
    http://www.ohloh.net/p/python-dmidecode

libxml2-python
  http://xmlsoft.org/

rt-tests
   git://git.kernel.org/pub/scm/linux/kernel/git/clrkwllms/rt-tests.git


Clark Williams <williams@redhat.com> wrote rteval
David Sommerseth <davids@redhat.com> wrote the XML-RPC and database
     logic for handling rteval results.