summaryrefslogtreecommitdiff
path: root/ubuntu/scripts/device_read_perf.sh
diff options
context:
space:
mode:
authorNicolas Dechesne <nicolas.dechesne@linaro.org>2016-05-19 22:00:47 +0200
committerNicolas Dechesne <nicolas.dechesne@linaro.org>2016-05-19 22:00:47 +0200
commit1c39ee8bda734664f90dc16e100727376a04a1a6 (patch)
tree7cb3e0e483f3af9d1c8aa4870a793edd41d54b68 /ubuntu/scripts/device_read_perf.sh
parent372f60ed1c557a2e07170aa29275758096521597 (diff)
device_read_perf: skip mmc boot and rpmb partitions
Change-Id: Iaf41c88f17f995a4aac6906d51ea15e09c6e5eb8 Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
Diffstat (limited to 'ubuntu/scripts/device_read_perf.sh')
-rwxr-xr-xubuntu/scripts/device_read_perf.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/ubuntu/scripts/device_read_perf.sh b/ubuntu/scripts/device_read_perf.sh
index f9fdbe2..1ade003 100755
--- a/ubuntu/scripts/device_read_perf.sh
+++ b/ubuntu/scripts/device_read_perf.sh
@@ -74,7 +74,10 @@ fi
# Test device timings for all devices
for i in `lsblk | grep 'disk' | awk -v col1=1 '{print $col1}'`
do
- test_func $i
+ case "$i" in
+ mmcblk*boot*| mmcblk*rpmb) echo "Skipping $i";;
+ *) test_func $i;;
+ esac
done
# Clean exit so lava-test can trust the results