]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/dc/tests/inout.sh
Merge libc++ trunk r338150 (just before the 7.0.0 branch point), and
[FreeBSD/FreeBSD.git] / usr.bin / dc / tests / inout.sh
1 # SPDX-License-Identifier: BSD-2-Clause-FreeBSD
2 #
3 # Copyright (c) 2017 Alan Somers
4 # All rights reserved.
5 #
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions
8 # are met:
9 # 1. Redistributions of source code must retain the above copyright
10 #    notice, this list of conditions and the following disclaimer.
11 # 2. Redistributions in binary form must reproduce the above copyright
12 #    notice, this list of conditions and the following disclaimer in the
13 #    documentation and/or other materials provided with the distribution.
14 #
15 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 # ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 # SUCH DAMAGE.
26 #
27 # $FreeBSD$
28
29 atf_test_case base16_input
30 base16_input_head()
31 {
32         atf_set "descr" "Input hexadecimal numbers"
33 }
34 base16_input_body()
35 {
36         cat > input.dc << EOF
37 4k      # set scale to 4 decimal places
38 16i     # switch to base 16
39 0   p
40 10  p
41 1   p
42 1.  p   # The '.' should have no effect
43 1.0 p   # Unlike with decimal, should not change the result's scale
44 .8  p   # Can input fractions
45 # Check that we can input fractions that need more scale in base 10 than in 16
46 # See PR 206230
47 .1  p
48 .10 p   # Result should be .0625, with scale=4
49 .01 p   # Result should be truncated to scale=4
50 8k      # Increase scale to 8 places
51 .01 p   # Result should be exact again
52 0.1 p   # Leading zeros are ignored
53 00.1 p  # Leading zeros are ignored
54 EOF
55         dc input.dc > output.txt
56         cat > expect.txt << EOF
57 0
58 16
59 1
60 1
61 1
62 .5
63 .0625
64 .0625
65 .0039
66 .00390625
67 .0625
68 .0625
69 EOF
70         atf_check cmp expect.txt output.txt
71 }
72
73 atf_test_case base3_input
74 base3_input_head()
75 {
76         atf_set "descr" "Input ternary numbers"
77 }
78 base3_input_body()
79 {
80         cat > input.dc << EOF
81 4k      # 4 digits of precision
82 3i      # Base 3 input
83 0 p
84 1 p
85 10 p
86 .1 p    # Repeating fractions get truncated
87 EOF
88 dc input.dc > output.txt
89 cat > expect.txt << EOF
90 0
91 1
92 3
93 .3333
94 EOF
95         atf_check cmp expect.txt output.txt
96 }
97
98 atf_init_test_cases()
99 {
100         atf_add_test_case base16_input
101         atf_add_test_case base3_input
102 }