NameDateSize

..17-Aug-202322

all.cfgH A D22-Jun-2021149

creat.cfgH A D22-Jun-2021153

ddb.confH A D22-Jun-2021259

default.cfgH A D29-Jun-20233.2 KiB

df.cfgH A D22-Jun-2021176

disk.cfgH A D22-Jun-2021185

doc/H22-Jun-20215

include/H22-Jun-20213

io.cfgH A D22-Jun-2021239

jeff.cfgH A D22-Jun-2021182

lib/H17-Mar-20237

link.cfgH A D22-Jun-2021193

load.cfgH A D22-Jun-2021662

lockf.cfgH A D22-Jun-2021225

MakefileH A D22-Jun-2021164

marcus.cfgH A D22-Jun-2021466

misc/HToday995

mkdir.cfgH A D22-Jun-2021176

mkfifo.cfgH A D22-Jun-2021177

norw.cfgH A D22-Jun-202185

noswap.cfgH A D22-Jun-202187

pty.cfgH A D22-Jun-2021145

READMEH A D22-Jun-2021895

run.shH A D22-Jun-20213 KiB

rw.cfgH A D22-Jun-2021141

syscall.cfgH A D22-Jun-2021222

sysctl.cfgH A D22-Jun-2021257

testcases/H22-Jun-202130

tools/H30-May-202432

udp.cfgH A D22-Jun-2021197

vfs.cfgH A D22-Jun-2021204

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