Upload Tizen:Base source
[framework/base/util-linux-ng.git] / tests / ts / lscpu / lscpu
1 #!/bin/bash
2 #
3 # Copyright (C) 2008 Cai Qian <qcai@redhat.com>
4 #
5 # This file is part of util-linux-ng.
6 #
7 # This file is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This file is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 TS_TOPDIR="$(dirname $0)/../.."
21 . $TS_TOPDIR/functions.sh
22
23 ts_init "$*"
24
25 for dump in $(ls $TS_SELF/dumps/*.tar.gz | sort); do
26         name=$(basename $dump .tar.gz)
27         dumpdir="$TS_OUTDIR/dumps"
28
29         ts_init_subtest $name
30         mkdir -p $dumpdir
31
32         tar -C $dumpdir -zxf $dump 
33
34         # Architecture information is not applicable with -s.
35         "${TS_CMD_LSCPU}" -s "${dumpdir}/${name}" | \
36                 grep -v "Architecture" >"${TS_OUTPUT}" 2>&1
37
38         echo >>"${TS_OUTPUT}"
39
40         "${TS_CMD_LSCPU}" -p -s "${dumpdir}/${name}" \
41                  >>"${TS_OUTPUT}" 2>&1
42
43         ts_finalize_subtest
44 done
45
46 ts_finalize
47