summaryrefslogtreecommitdiffstats
path: root/tests/ts/lscpu/lscpu
blob: d22400777f5d20207be51d37e362aa311d5fc170 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/bin/bash
#
# Copyright (C) 2008 Cai Qian <qcai@redhat.com>
#
# This file is part of util-linux.
#
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This file is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
TS_TOPDIR="${0%/*}/../.."
. $TS_TOPDIR/functions.sh

ts_init "$*"

ts_check_prog "tar"
ts_check_prog "gzip"
ts_check_test_command "$TS_CMD_LSCPU"

for dump in $(ls $TS_SELF/dumps/*.tar.gz | sort); do
	name=$(basename $dump .tar.gz)
	dumpdir="$TS_OUTDIR/dumps"

	ts_init_subtest $name
	mkdir -p $dumpdir

	tar -C $dumpdir -zxf $dump

	# Architecture information is not applicable with -s.
	"${TS_CMD_LSCPU}" -s "${dumpdir}/${name}" | \
		grep -v "Architecture" >> ${TS_OUTPUT} 2>> $TS_ERRLOG

	echo >>"${TS_OUTPUT}"

	"${TS_CMD_LSCPU}" -p -s "${dumpdir}/${name}" \
		 >> ${TS_OUTPUT} 2>> $TS_ERRLOG

	echo >>"${TS_OUTPUT}"

	"${TS_CMD_LSCPU}" -p -y -s "${dumpdir}/${name}" \
		 >> ${TS_OUTPUT} 2>> $TS_ERRLOG

	# LE/BE depends on binary
	sed -i -e '/Byte Order:.*/d' $TS_OUTPUT

	ts_finalize_subtest
done

ts_finalize