From aeae9467af5609c3c7bf8d0379d5546d9797ead5 Mon Sep 17 00:00:00 2001 From: Sakib Sajal Date: Tue, 13 Apr 2021 12:59:15 -0400 Subject: oe-time-dd-test.sh: provide more information from "top" Improvements: - increase width to 512 - pass -c option to show full command-line Signed-off-by: Sakib Sajal Signed-off-by: Randy MacLeod Signed-off-by: Richard Purdie --- scripts/oe-time-dd-test.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/oe-time-dd-test.sh b/scripts/oe-time-dd-test.sh index 970a86dff0..5b25e6bd97 100755 --- a/scripts/oe-time-dd-test.sh +++ b/scripts/oe-time-dd-test.sh @@ -13,11 +13,16 @@ usage() { echo "Usage: $0 " } +TIMEOUT=5 + if [ $# -ne 1 ]; then usage exit 1 fi uptime -/usr/bin/time -f "%e" dd if=/dev/zero of=foo bs=1024 count=$1 conv=fsync -top -b -n 1 | grep -v "0 0 0" | grep -E ' [RSD] ' | cut -c 46-47 | sort | uniq -c +timeout ${TIMEOUT} dd if=/dev/zero of=oe-time-dd-test.dat bs=1024 count=$1 conv=fsync +if [ $? -ne 0 ]; then + echo "Timeout used: ${TIMEOUT}" + top -c -b -n1 -w 512 +fi -- cgit 1.2.3-korg