Name Date Size #Lines LOC

..--

doc/H--43

include/H--6534

lib/H--798598

misc/H--125,39674,180

testcases/H--4,3193,011

tools/H--2,5781,521

MakefileH A D03-Mar-2021164 128

READMEH A D03-Mar-2021895 2115

all.cfgH A D03-Mar-2021149 96

creat.cfgH A D03-Mar-2021153 96

ddb.confH A D03-Mar-2021259 72

default.cfgH A D04-Dec-20243.2 KiB123101

df.cfgH A D03-Mar-2021176 95

disk.cfgH A D03-Mar-2021185 96

io.cfgH A D03-Mar-2021239 106

jeff.cfgH A D03-Mar-2021182 95

link.cfgH A D03-Mar-2021193 107

load.cfgH A D03-Mar-2021662 1914

lockf.cfgH A D03-Mar-2021225 107

marcus.cfgH A D03-Mar-2021466 2521

mkdir.cfgH A D03-Mar-2021176 107

mkfifo.cfgH A D03-Mar-2021177 96

norw.cfgH A D03-Mar-202185 74

noswap.cfgH A D03-Mar-202187 74

pty.cfgH A D03-Mar-2021145 96

run.shH A D03-Mar-20213 KiB8548

rw.cfgH A D03-Mar-2021141 96

syscall.cfgH A D03-Mar-2021222 128

sysctl.cfgH A D03-Mar-2021257 139

udp.cfgH A D03-Mar-2021197 106

vfs.cfgH A D03-Mar-2021204 95

README

1stress2 is a tool for finding problems in the kernel.
2
3It is composed of a large number of regression tests, tests that
4stress various components of the kernel and a few validation tests.
5There are currently some 700 different tests.
6
7The key idea behind stress2 is to randomize as much as possible in
8a test, as a way of achieving better coverage.  For example, varying
9VM pressure, varying numbers of threads, varying delays, etc.
10stress2 has found a large number of problems:
11https://people.freebsd.org/~pho/stress/log/
12
13To run the full test suite type "make test" in the stress2 directory.
14
15To run a subset of tests, go to the stress2/misc directory.
16    To run for example all tmpfs tests, type ./all.sh -o $(grep -l tmpfs *.sh)
17    To run fdatasync.sh for one hour, type ./all.sh -m 60 fdatasync.sh"
18    To run dup2.sh three times, type ./all.sh -l 3 dup2.sh
19
20Peter Holm <pho@FreeBSD.org>
21