# rteval_2 **Repository Path**: mirrors_kernel_googlesource/rteval_2 ## Basic Information - **Project Name**: rteval_2 - **Description**: No description available - **Primary Language**: Unknown - **License**: GPL-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-19 - **Last Updated**: 2026-06-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README SPDX-License-Identifier: GPL-2.0-or-later Rteval is a Python program written to evaluate the performance of a realtime Linux kernel on a particular hardware platform. The program runs measurement modules (cyclictest or timerlat) to measure scheduling and timer latency while simultaneously running system load modules (kernel compile, hackbench, stress-ng) to stress the system. When the specified run duration is met, rteval stops the loads and measurements, then writes an XML report to disk with information about the system (from DMI tables), raw measurement data, and statistical analysis including min/max latency, standard deviation, and histograms. INSTALLATION ============ The rteval source may be pulled from its git tree on kernel.org: https://git.kernel.org/pub/scm/utils/rteval/rteval.git Required Dependencies: Python >= 3.8 https://www.python.org/download/ python3-lxml https://lxml.de/ python3-libxml2 https://xmlsoft.org/ sysstat System performance monitoring tools (sar, iostat, mpstat) Measurement Module Requirements (choose one): For cyclictest measurement module: rt-tests (realtime-tests package) https://git.kernel.org/pub/scm/utils/rt-tests/rt-tests.git For timerlat measurement module (recommended): rtla (part of Linux kernel tools) Requires kernel 5.15+ with CONFIG_OSNOISE_TRACER enabled Load Module Requirements: For kcompile load module: rteval-loads package (provides kernel source tarballs) Or manually download kernel sources from https://www.kernel.org/ Build tools: gcc, binutils, gcc-c++, make, flex, bison, bc, kernel-headers, openssl-devel, perl-interpreter, elfutils-libelf-devel, xz, bzip2, tar, gzip For stress-ng load module (optional): stress-ng https://github.com/ColinIanKing/stress-ng System utilities: numactl, dmidecode, procps-ng Installation: $ git clone https://git.kernel.org/pub/scm/utils/rteval/rteval.git $ cd rteval $ sudo make install For rt-tests (if using cyclictest): $ git clone https://git.kernel.org/pub/scm/utils/rt-tests/rt-tests.git $ cd rt-tests $ sudo make prefix=/usr install TESTING ======= Rteval includes unit tests and end-to-end tests. End-to-end tests require: Test::Harness (Perl module) https://metacpan.org/pod/Test::Harness Run tests with: $ make test # Unit tests $ make e2e-tests # End-to-end tests (requires root) USAGE ===== Basic usage (requires root): $ sudo rteval -d 3600 Run with timerlat measurement module: $ sudo rteval -d 3600 --measurement-module timerlat See the man page for more options: $ man rteval AUTHORS ======= Clark Williams wrote rteval. David Sommerseth wrote the XML-RPC and database logic for handling rteval results. John Kacur ported it to Python 3 and has been developing and maintaining it since then.