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

Masayoshi Mizuma msys.mizuma@gmail.com
Thu Sep 27 16:02:04 CEST 2018


On Thu, Sep 27, 2018 at 02:40:11PM +0200, Cyril Hrubis wrote:
> Hi!
> > 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
> 
> You can just write:
> 
> if which lscpu > /dev/null 2>&1; then
> ...
> 
> 
> Other than that it's fine.

Thanks! I'll send the v2 soon.

- Masa


More information about the ltp mailing list