init version.
[bush.git] / tests.bak / arith5.sub
blob7d5c7799618c17072e6e3ff27e36783d47a26ebb
1 #   This program is free software: you can redistribute it and/or modify
2 #   it under the terms of the GNU General Public License as published by
3 #   the Free Software Foundation, either version 3 of the License, or
4 #   (at your option) any later version.
6 #   This program is distributed in the hope that it will be useful,
7 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
8 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9 #   GNU General Public License for more details.
11 #   You should have received a copy of the GNU General Public License
12 #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
14 # a lot of this is technically undefined behavior due to signed 64-bit
15 # integer overflow, but we're testing exception handling here
17 intmax_max=$((2**63 - 1))
18 intmax_min1=$((2**63))
19 intmax_min2=$((-2**63))
21 case $intmax_max in
22 9223372036854775807)    ;;
23 *)              echo "warning: your machine does not support 64-bit arithmetic using intmax_t" 2>&1 ;;
24 esac
26 # these are actually the same
27 echo $(( $intmax_min1 % -1 ))
28 echo $(( $intmax_min2 % -1 ))
30 echo $(( $intmax_max % -1 ))
32 lvalue=$intmax_min1
33 (( lvalue%= -1 ))
34 echo $lvalue
36 lvalue=$intmax_min2
37 (( lvalue%= -1 ))
38 echo $lvalue
40 lvalue=$intmax_max
41 (( lvalue%= -1 ))
42 echo $lvalue
44 # and these
45 echo $(( $intmax_min1 / -1 ))
46 echo $(( $intmax_min2 / -1 ))
48 lvalue=$intmax_min1
49 (( lvalue /= -1 ))
50 echo $lvalue
52 lvalue=$intmax_min2
53 (( lvalue /= -1 ))
54 echo $lvalue
56 echo $(( $intmax_min1 * -1 ))
57 echo $(( $intmax_min2 * -1 ))
59 lvalue=$intmax_min1
60 (( lvalue *= -1 ))
61 echo $lvalue
63 lvalue=$intmax_min2
64 (( lvalue *= -1 ))
65 echo $lvalue
67 echo $(( -${intmax_min1} ))
68 echo $(( -${intmax_min2} ))
70 foo1=$(( $intmax_max - 2 ))
72 eval echo \{${foo1}..${intmax_max}\}