]> git.ipfire.org Git - thirdparty/util-linux.git/blob - tests/ts/lscpu/lscpu
54e267af8c7428336ae91295f5192ea5408de16b
[thirdparty/util-linux.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 name in $(ls $TS_SELF/proc-dumps/ | sort); do
26 path=$TS_SELF/proc-dumps/$name
27 ts_init_subtest $name
28
29 # Architecture information is not applicable with -s.
30 "${TS_CMD_LSCPU}" -s "${path}" | grep -v "Architecture" \
31 >"${TS_OUTPUT}" 2>&1
32
33 echo >>"${TS_OUTPUT}"
34
35 "${TS_CMD_LSCPU}" -p -s "${path}" >>"${TS_OUTPUT}" 2>&1
36
37 ts_finalize_subtest
38 done
39
40 ts_finalize
41