From 1c39ee8bda734664f90dc16e100727376a04a1a6 Mon Sep 17 00:00:00 2001 From: Nicolas Dechesne Date: Thu, 19 May 2016 22:00:47 +0200 Subject: device_read_perf: skip mmc boot and rpmb partitions Change-Id: Iaf41c88f17f995a4aac6906d51ea15e09c6e5eb8 Signed-off-by: Nicolas Dechesne --- ubuntu/scripts/device_read_perf.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'ubuntu') 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 -- cgit v1.2.3