summaryrefslogtreecommitdiff
path: root/ubuntu/scripts/device_read_perf.sh
diff options
context:
space:
mode:
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