summaryrefslogtreecommitdiffstats
path: root/tests/ts/misc/setarch
blob: c8050e52a069fd9e584a1c3bfd2931951036d938 (plain) (blame)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#!/bin/bash

# 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 2 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.

TS_TOPDIR="${0%/*}/../.."
TS_DESC="setarch"

. $TS_TOPDIR/functions.sh
ts_init "$*"

ts_check_test_command "$TS_CMD_SETARCH"

ARCH=$(uname -m)

ts_init_subtest options
echo "###### unknown arch" >>$TS_OUTPUT
$TS_CMD_SETARCH qubit -v echo "success" >>$TS_OUTPUT 2>&1
echo "exit: $?" >>$TS_OUTPUT

echo "###### unknown command" >>$TS_OUTPUT
$TS_CMD_SETARCH $ARCH -v /das/gibs/nicht >>$TS_OUTPUT 2>&1
echo "exit: $?" >>$TS_OUTPUT

echo "###### noop uname -a" >>$TS_OUTPUT
uname_a=$(uname -srm)
$TS_CMD_SETARCH $ARCH -v uname -srm >>$TS_OUTPUT 2>&1
sed -i "$ s@${uname_a}@uname -a unchanged@" $TS_OUTPUT

echo "###### almost all options" >>$TS_OUTPUT
$TS_CMD_SETARCH $ARCH -vRFZLXBIST3 echo "success" >>$TS_OUTPUT 2>&1
ts_finalize_subtest


ts_init_subtest uname26
finmsg="" # for debugging 2.6 issues

echo "###### --uname-2.6 echo" >>$TS_OUTPUT
$TS_CMD_SETARCH $ARCH -v --uname-2.6 echo "2.6 worked" >>$TS_OUTPUT 2>&1
if [ $? -eq 0 ]; then
	expected='^2.6 worked$'
else
	# this may happen after execvp
	expected="^FATAL: kernel too old$"
	finmsg+=" echo"
fi
sed -i "$ s/$expected/2.6 works or kernel too old/" $TS_OUTPUT

echo "###### --uname-2.6 true, non-verbose" >>$TS_OUTPUT
$TS_CMD_SETARCH $ARCH --uname-2.6 true >>$TS_OUTPUT 2>&1
if [ $? -eq 0 ]; then
	echo "2.6 works or kernel too old" >> $TS_OUTPUT
else
	# this may happen after execvp
	expected="^FATAL: kernel too old$"
	sed -i "$ s/$expected/2.6 works or kernel too old/" $TS_OUTPUT
	finmsg+=" true"
fi

if [ -n "$finmsg" ]; then
	finmsg=$(echo unsupported --uname-2.6: $finmsg)
else
	uname26_seems_supported=yes
fi
ts_finalize_subtest "$finmsg"


# conditional subtest
if [ "$uname26_seems_supported" = "yes" ]; then
ts_init_subtest uname26-version
	tmp=$($TS_CMD_SETARCH $ARCH --uname-2.6 uname -r)
	if echo "$tmp" | grep -q "^2\.6\."; then
		echo "kernel version changed to 2.6" >> $TS_OUTPUT
	else
		echo "uname26 failed" >> $TS_OUTPUT
		echo "original kernel: $(uname -r)" >> $TS_OUTPUT
		echo "uname26 kernel:  $tmp" >> $TS_OUTPUT
	fi
ts_finalize_subtest
fi # conditional subtest

ts_finalize