rt-tests is a test suite, that contains programs to test various real time Linux features. It is maintained by Clark Williams and John Kacur. For communication, the rt-users mailing list is used.
The following programs are part of the rt-tests:
rt-tests suite can be installed from source: rt-tests/src, the releases are available here. The libnuma and build-essentials are required. On Debian install libnuma-dev, on Fedora install numactl-devel, on openSUSE install libnuma-devel.
libnuma-dev is required for build. Usually, it's safe to have libnuma-dev installed also in non-NUMA systems, but if you don't want to install the NUMA libs (e.g. in embedded environment) then compile with make NUMA=0.
Clone source code (check out the latest stable branch, because the master branch is not used for stable release any more), compile it and install it to the local filesystem
git clone git://git.kernel.org/pub/scm/utils/rt-tests/rt-tests.git cd rt-tests git checkout stable/v1.0 make all make install
The last step is optional. All compiled programs can be executed from the build directory directly. If only a single program should be compiled only the single make target for the specific program could be executed (example for cyclictest):
make cyclictest