[LTP] [PATCH] ver_linux: use lscpu command result instead of /proc/cpuinfo

Masayoshi Mizuma msys.mizuma@gmail.com
Wed Aug 15 20:55:16 CEST 2018


From: Masayoshi Mizuma <m.mizuma@jp.fujitsu.com>

lscpu command shows the cpu information clearly. So let's use
the result if the command is installed to the system.

Signed-off-by: Masayoshi Mizuma <m.mizuma@jp.fujitsu.com>
---
 ver_linux | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/ver_linux b/ver_linux
index dda337926..5f9260f5f 100755
--- a/ver_linux
+++ b/ver_linux
@@ -96,5 +96,10 @@ echo 'free reports:'
 free
 
 echo
-echo '/proc/cpuinfo'
-cat /proc/cpuinfo
+echo 'cpuinfo:'
+which lscpu > /dev/null 2>&1
+if [ $? -eq 0 ]; then
+	lscpu
+else
+	cat /proc/cpuinfo
+fi
-- 
2.18.0



More information about the ltp mailing list