]> git.ipfire.org Git - thirdparty/util-linux.git/blob - tests/ts/lscpu/lscpu
tests: split stdout and stderr
[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.
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="${0%/*}/../.."
21 . $TS_TOPDIR/functions.sh
22
23 ts_init "$*"
24
25 ts_check_prog "tar"
26 ts_check_prog "gzip"
27 ts_check_test_command "$TS_CMD_LSCPU"
28
29 for dump in $(ls $TS_SELF/dumps/*.tar.gz | sort); do
30 name=$(basename $dump .tar.gz)
31 dumpdir="$TS_OUTDIR/dumps"
32
33 ts_init_subtest $name
34 mkdir -p $dumpdir
35
36 tar -C $dumpdir -zxf $dump
37
38 # Architecture information is not applicable with -s.
39 "${TS_CMD_LSCPU}" -s "${dumpdir}/${name}" | \
40 grep -v "Architecture" >> ${TS_OUTPUT} 2>> $TS_ERRLOG
41
42 echo >>"${TS_OUTPUT}"
43
44 "${TS_CMD_LSCPU}" -p -s "${dumpdir}/${name}" \
45 >> ${TS_OUTPUT} 2>> $TS_ERRLOG
46
47 echo >>"${TS_OUTPUT}"
48
49 "${TS_CMD_LSCPU}" -p -y -s "${dumpdir}/${name}" \
50 >> ${TS_OUTPUT} 2>> $TS_ERRLOG
51
52 # LE/BE depends on binary
53 sed -i -e '/Byte Order:.*/d' $TS_OUTPUT
54
55 ts_finalize_subtest
56 done
57
58 ts_finalize
59