-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathcmp.sh
executable file
·185 lines (159 loc) · 5.4 KB
/
cmp.sh
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
#!/bin/bash
###########################################################################################
## Copyright 2003, 2015 IBM Corp ##
## ##
## Redistribution and use in source and binary forms, with or without modification, ##
## are permitted provided that the following conditions are met: ##
## 1.Redistributions of source code must retain the above copyright notice, ##
## this list of conditions and the following disclaimer. ##
## 2.Redistributions in binary form must reproduce the above copyright notice, this ##
## list of conditions and the following disclaimer in the documentation and/or ##
## other materials provided with the distribution. ##
## ##
## THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS AND ANY EXPRESS ##
## OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF ##
## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ##
## THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, ##
## EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF ##
## SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ##
## HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, ##
## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS ##
## SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ##
############################################################################################
## File : cmp.sh
##
## Description: This testcase checks a collection of the following
##
## Author: Shoji Sugiyama ([email protected])
###########################################################################################
## source the standard utility functions
#cd `dirname $0`
#LTPBIN=${PWD%%/testcases/*}/testcases/bin
source $LTPBIN/tc_utils.source
################################################################################
# any utility functions specific to this file can go here
################################################################################
################################################################################
# the testcase functions
################################################################################
#
# test01 cmp -c
#
function test01()
{
#
# Register test case
#
tc_register "\"cmp -c\" check -c option"
#
# Check if prereq commands are existed.
#
tc_exec_or_break echo grep || return
#
# Prepare test files
#
echo -e "\x01\x02\x03\x04\x05\x06\x07\x08\x09" > $TCTMP/file1
echo -e "\x01\x02\x03\x14\x05\x06\x17\x08\x09" > $TCTMP/file2
#
# Execute and check result
#
cmp -c $TCTMP/file1 $TCTMP/file2 > $TCTMP/file3
grep "differ:" $TCTMP/file3 | grep "4, line 1 is 4 \^D 24 \^T" $TCTMP/file3 > /dev/null
tc_pass_or_fail $? "[cmp -c] failed with mixed case characters"
}
#
# test02 cmp -i
#
function test02()
{
#
# Register test case
#
tc_register "\"cmp -i\" check -i option"
#
# Check if prereq commands are existed.
#
tc_exec_or_break echo grep || return
#
# Prepare test files
#
echo -e "\x01\x02\x03\x04\x05\x06\x07\x08\x09" > $TCTMP/file1
echo -e "\x01\x02\x03\x14\x05\x06\x17\x08\x09" > $TCTMP/file2
#
# Execute and check result
#
cmp -i 7 $TCTMP/file1 $TCTMP/file2 > /dev/null
tc_pass_or_fail $? "[cmp -i] unexpected result"
}
#
# test03 cmp -l
#
function test03()
{
#
# Register test case
#
tc_register "\"cmp -l\" check -l option"
#
# Check if prereq commands are existed.
#
tc_exec_or_break echo grep || return
#
# Prepare test files
#
echo -e "\x01\x02\x03\x04\x05\x06\x07\x08\x09" > $TCTMP/file1
echo -e "\x01\x02\x03\x14\x05\x06\x17\x08\x09" > $TCTMP/file2
#
# Execute and check result
#
cmp -l $TCTMP/file1 $TCTMP/file2 > $TCTMP/file3
num=`cat $TCTMP/file3 | wc -l`
[ $num = 2 ]
tc_pass_or_fail $? "[cmp -l] unexpected result with muliple differing bytes"
}
#
# test04 cmp -s
#
function test04()
{
#
# Register test case
#
tc_register "\"cmp -l\" check -l option"
#
# Check if prereq commands are existed.
#
tc_exec_or_break echo grep || return
#
# Prepare test files
#
echo -e "\x01\x02\x03\x04\x05\x06\x07\x08\x09" > $TCTMP/file1
echo -e "\x01\x02\x03\x14\x05\x06\x17\x08\x09" > $TCTMP/file2
#
# Execute and check result
#
cmp -s $TCTMP/file1 $TCTMP/file2 > $TCTMP/file3
[ $? != 0 ]
tc_fail_if_bad $? "[cmp -s] unexpected result with no differing bytes" || return
num=`cat $TCTMP/file3 | wc -c`
[ $num = 0 ]
tc_pass_or_fail $? "[cmp -s] failed with unexpected output"
}
################################################################################
# main
################################################################################
TST_TOTAL=4
# standard setup
tc_setup
# tc_add_user_or_break # in addition to standard setup, create a temporary user
test01
test02
test03
test04
# If you want a sequence of tests to each be dependent on the previous one
# having succeeded, chain them together with "&&" as follows ...
#
# test01 && \
# test02 && \
# test03 && \
# test04