summaryrefslogtreecommitdiff
path: root/tools/run-readtest.sh
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-01-22 12:21:15 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2015-01-22 12:21:49 -0500
commit6980fc9aee6eb2922a4c25ca72362df9060a9feb (patch)
tree9088e5e31f8da96790da57b05087076fc3273dd4 /tools/run-readtest.sh
parent2afe09a8340ba539b82e3fe1d57012f67f086ba9 (diff)
really re-fix linux cache clear
Diffstat (limited to 'tools/run-readtest.sh')
-rwxr-xr-xtools/run-readtest.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run-readtest.sh b/tools/run-readtest.sh
index b50add4944..fb1d6cd3ed 100755
--- a/tools/run-readtest.sh
+++ b/tools/run-readtest.sh
@@ -73,7 +73,7 @@ for bs in $@ ; do
if uname -a | grep --silent arwin ; then
# clears cache on OS X
sudo purge
- elif [ -f /proc/sys/vm/drop_cache ] ; then
+ elif [ -f /proc/sys/vm/drop_caches ] ; then
# Linux cache clearing
echo 3 | sudo tee /proc/sys/vm/drop_caches >/dev/null
else