summaryrefslogtreecommitdiff
path: root/tools/run-readtest.sh
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-03-04 20:53:26 -0600
committerPaul Davis <paul@linuxaudiosystems.com>2015-03-04 20:55:17 -0600
commit7ed158a79e225ea988eb52f3fd3f274d5260d5ec (patch)
tree119a4f36c0b74f3cb5f55eac35b814ba23d72165 /tools/run-readtest.sh
parent2ab26bd86dadbf2d8c0dc9738e7928aa54b80e96 (diff)
remove unused -N (nocache) option from readtest script
Diffstat (limited to 'tools/run-readtest.sh')
-rwxr-xr-xtools/run-readtest.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/run-readtest.sh b/tools/run-readtest.sh
index 004920d35c..e10a066fc8 100755
--- a/tools/run-readtest.sh
+++ b/tools/run-readtest.sh
@@ -19,7 +19,6 @@ while [ $# -gt 1 ] ; do
-d) dir=$2; shift; shift ;;
-f) filesize=$2; shift; shift ;;
-n) numfiles=$2; shift; shift ;;
- -N) nocache="-s"; shift;;
*) break ;;
esac
done
@@ -82,5 +81,5 @@ for bs in $@ ; do
fi
echo "# Blocksize $bs"
- ./readtest $nocache -b $bs -q $dir/testfile_%d
+ ./readtest -b $bs -q $dir/testfile_%d
done