svn commit: r331864 - user/pho/stress2/tools

Peter Holm pho at FreeBSD.org
Sun Apr 1 07:45:53 UTC 2018


Author: pho
Date: Sun Apr  1 07:45:52 2018
New Revision: 331864
URL: https://svnweb.freebsd.org/changeset/base/331864

Log:
  Remove old installation.
  Added missing escape to quotes.
  Added one more example.

Modified:
  user/pho/stress2/tools/setup.sh

Modified: user/pho/stress2/tools/setup.sh
==============================================================================
--- user/pho/stress2/tools/setup.sh	Sun Apr  1 04:50:05 2018	(r331863)
+++ user/pho/stress2/tools/setup.sh	Sun Apr  1 07:45:52 2018	(r331864)
@@ -19,10 +19,12 @@ work=${work:-/tmp/work}
 mkdir -p $work
 cd $work
 echo "Extracting stress2 to $work"
+[ -d stress2 ] && rm -rf stress2
 svnlite checkout -q svn://svn.freebsd.org/base/user/pho/stress2
 cd stress2
 echo "testuser=$testuser" > `hostname`
 make > /dev/null
-echo "Tests to run are in $work/stress2/misc
+echo "Tests to run are in $work/stress2/misc.
 To run all tests, type ./all.sh -on
-To run for example all tmpfs tests, type ./all.sh -on `grep -l tmpfs *.sh`"
+To run for example all tmpfs tests, type ./all.sh -on \`grep -l tmpfs *.sh\`
+To run fdatasync.sh for one hour, type ./all.sh -m 60 fdatasync.sh"


More information about the svn-src-user mailing list