From 4c684a0874566882a511fd87a20d2f30a0c148db Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Fri, 7 May 2004 18:04:46 +0000 Subject: [PATCH] Move the fsx filesystem tester program from /usr/src/tools/regression to /usr/src/test/stress and add a sample script. --- test/stress/fsx/Makefile | 8 ++++++-- test/stress/fsx/dotest | 6 ++++++ 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100755 test/stress/fsx/dotest diff --git a/test/stress/fsx/Makefile b/test/stress/fsx/Makefile index 0c31ac0191..3e07cb7408 100644 --- a/test/stress/fsx/Makefile +++ b/test/stress/fsx/Makefile @@ -1,6 +1,10 @@ -# $DragonFly: src/test/stress/fsx/Makefile,v 1.1 2003/10/11 13:37:14 drhodus Exp $ +# $DragonFly: src/test/stress/fsx/Makefile,v 1.2 2004/05/07 18:04:46 dillon Exp $ +# -PROG= fsx +PROG= /tmp/fsx + +/tmp/fsx: fsx.c + $(CC) $(CFLAGS) ${.ALLSRC} -o ${.TARGET} NOMAN= yes diff --git a/test/stress/fsx/dotest b/test/stress/fsx/dotest new file mode 100755 index 0000000000..980dc8f43e --- /dev/null +++ b/test/stress/fsx/dotest @@ -0,0 +1,6 @@ +#!/bin/csh +# +# $DragonFly: src/test/stress/fsx/dotest,v 1.1 2004/05/07 18:04:46 dillon Exp $ + +/tmp/fsx -c 100000 -l 4194304 -o 262144 -P /tmp/ test.fsx.dat + -- 2.41.0