Only show user-presets in favorite sidebar
[ardour.git] / tools / run-readtest.sh
index fb1d6cd3ede8c9d89d9db19dafe8e07b57aaa741..abdfb254c7b6260fbddfea7d29cfcc8dcb2dd5aa 100755 (executable)
@@ -7,6 +7,7 @@ nocache=
 interleave=
 needfiles=1
 write_blocksize=262144
+args=
 
 if uname -a | grep --silent arwin ; then
     ddmega=m
@@ -19,7 +20,9 @@ while [ $# -gt 1 ] ; do
        -d) dir=$2; shift; shift ;;
        -f) filesize=$2; shift; shift ;;
        -n) numfiles=$2; shift; shift ;;
-       -N) nocache="-s"; shift; shift ;;
+       -M) args="$args -M"; shift ;;
+       -D) args="$args -D"; shift ;;
+       -R) args="$args -R"; shift ;;
         *) break ;;
     esac
 done
@@ -27,7 +30,7 @@ done
 if [ -d $dir -a -f $dir/testfile_1 ] ; then
     # dir exists and has a testfile within it - reuse to avoid
     # recreating files
-    echo "Re-using files in $dir"
+    echo "Re-using files in $dir"
     needfiles=
 else
     dir=$dir/readtest_$$
@@ -40,7 +43,7 @@ else
 fi
 
 if [ x$needfiles != x ] ; then
-    echo "Building files for test..."
+    echo "Building files for test..."
     if [ x$interleave = x ] ; then
        
        #
@@ -81,6 +84,6 @@ for bs in $@ ; do
         :
     fi
     
-    echo "Blocksize $bs"
-    ./readtest $nocache -b $bs -q $dir/testfile_%d
+    echo "Blocksize $bs"
+    ./readtest $args -b $bs -q $dir/testfile_%d
 done