summaryrefslogtreecommitdiff
path: root/RunGrepTest.in
blob: 109267eea5923d1d0850345dd90c5ef289225f9e (plain)
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
#! /bin/sh

# This file is generated by configure from RunGrepTest.in. Make any changes
# to that file.

echo "Testing pcregrep"

# Run pcregrep tests. The assumption is that the PCRE tests check the library
# itself. What we are checking here is the file handling and options that are
# supported by pcregrep.

cf=diff
if [ ! -d testdata ] ; then
  ln -s @top_srcdir@/testdata testdata
fi
testdata=./testdata

./pcregrep -V 2>testtry

echo "---------------------------- Test 1 ------------------------------" >>testtry
./pcregrep PATTERN $testdata/grepinput >>testtry

echo "---------------------------- Test 2 ------------------------------" >>testtry
./pcregrep '^PATTERN' $testdata/grepinput >>testtry

echo "---------------------------- Test 3 ------------------------------" >>testtry
./pcregrep -in PATTERN $testdata/grepinput >>testtry

echo "---------------------------- Test 4 ------------------------------" >>testtry
./pcregrep -ic PATTERN $testdata/grepinput >>testtry

echo "---------------------------- Test 5 ------------------------------" >>testtry
./pcregrep -in PATTERN $testdata/grepinput $testdata/grepinputx >>testtry

echo "---------------------------- Test 6 ------------------------------" >>testtry
./pcregrep -inh PATTERN $testdata/grepinput $testdata/grepinputx >>testtry

echo "---------------------------- Test 7 ------------------------------" >>testtry
./pcregrep -il PATTERN $testdata/grepinput $testdata/grepinputx >>testtry

echo "---------------------------- Test 8 ------------------------------" >>testtry
./pcregrep -l PATTERN $testdata/grepinput $testdata/grepinputx >>testtry

echo "---------------------------- Test 9 ------------------------------" >>testtry
./pcregrep -q PATTERN $testdata/grepinput $testdata/grepinputx >>testtry
echo "RC=$?" >>testtry

echo "---------------------------- Test 10 -----------------------------" >>testtry
./pcregrep -q NEVER-PATTERN $testdata/grepinput $testdata/grepinputx >>testtry
echo "RC=$?" >>testtry

echo "---------------------------- Test 11 -----------------------------" >>testtry
./pcregrep -vn pattern $testdata/grepinputx >>testtry

echo "---------------------------- Test 12 -----------------------------" >>testtry
./pcregrep -ix pattern $testdata/grepinputx >>testtry

echo "---------------------------- Test 13 -----------------------------" >>testtry
./pcregrep -f$testdata/greplist $testdata/grepinputx >>testtry

echo "---------------------------- Test 14 -----------------------------" >>testtry
./pcregrep -w pat $testdata/grepinput $testdata/grepinputx >>testtry

echo "---------------------------- Test 15 -----------------------------" >>testtry
./pcregrep 'abc^*' $testdata/grepinput 2>>testtry >>testtry

echo "---------------------------- Test 16 -----------------------------" >>testtry
./pcregrep abc $testdata/grepinput $testdata/nonexistfile 2>>testtry >>testtry

echo "---------------------------- Test 17 -----------------------------" >>testtry
./pcregrep -M 'the\noutput' $testdata/grepinput >>testtry

echo "---------------------------- Test 18 -----------------------------" >>testtry
./pcregrep -Mn '(the\noutput|dog\.\n--)' $testdata/grepinput >>testtry

echo "---------------------------- Test 19 -----------------------------" >>testtry
./pcregrep -Mix 'Pattern' $testdata/grepinputx >>testtry

echo "---------------------------- Test 20 -----------------------------" >>testtry
./pcregrep -Mixn 'complete pair\nof lines' $testdata/grepinputx >>testtry

echo "---------------------------- Test 21 -----------------------------" >>testtry
./pcregrep -nA3 'four' $testdata/grepinputx >>testtry

echo "---------------------------- Test 22 -----------------------------" >>testtry
./pcregrep -nB3 'four' $testdata/grepinputx >>testtry

echo "---------------------------- Test 23 -----------------------------" >>testtry
./pcregrep -C3 'four' $testdata/grepinputx >>testtry

echo "---------------------------- Test 24 -----------------------------" >>testtry
./pcregrep -A9 'four' $testdata/grepinputx >>testtry

echo "---------------------------- Test 25 -----------------------------" >>testtry
./pcregrep -nB9 'four' $testdata/grepinputx >>testtry

echo "---------------------------- Test 26 -----------------------------" >>testtry
./pcregrep -A9 -B9 'four' $testdata/grepinputx >>testtry

echo "---------------------------- Test 27 -----------------------------" >>testtry
./pcregrep -A10 'four' $testdata/grepinputx >>testtry

echo "---------------------------- Test 28 -----------------------------" >>testtry
./pcregrep -nB10 'four' $testdata/grepinputx >>testtry

echo "---------------------------- Test 29 -----------------------------" >>testtry
./pcregrep -C12 -B10 'four' $testdata/grepinputx >>testtry

echo "---------------------------- Test 30 -----------------------------" >>testtry
./pcregrep -inB3 'pattern' $testdata/grepinput $testdata/grepinputx >>testtry

echo "---------------------------- Test 31 -----------------------------" >>testtry
./pcregrep -inA3 'pattern' $testdata/grepinput $testdata/grepinputx >>testtry

echo "---------------------------- Test 32 -----------------------------" >>testtry
./pcregrep -L 'fox' $testdata/grepinput $testdata/grepinputx >>testtry

echo "---------------------------- Test 33 -----------------------------" >>testtry
./pcregrep 'fox' $testdata/grepnonexist >>testtry 2>&1 
echo "RC=$?" >>testtry

echo "---------------------------- Test 34 -----------------------------" >>testtry
./pcregrep -s 'fox' $testdata/grepnonexist >>testtry 2>&1 
echo "RC=$?" >>testtry

echo "---------------------------- Test 35 -----------------------------" >>testtry
./pcregrep -L -r --include=grepinputx 'fox' $testdata >>testtry 
echo "RC=$?" >>testtry

echo "---------------------------- Test 36 -----------------------------" >>testtry
./pcregrep -L -r --include=grepinput --exclude 'grepinput$' 'fox' $testdata >>testtry 
echo "RC=$?" >>testtry


# Now compare the results.

$cf testtry $testdata/grepoutput
if [ $? != 0 ] ; then exit 1; else exit 0; fi

# End