Annotation of embedaddon/pcre/RunGrepTest, revision 1.1.1.3
1.1 misho 1: #! /bin/sh
2:
3: # Run pcregrep tests. The assumption is that the PCRE tests check the library
4: # itself. What we are checking here is the file handling and options that are
5: # supported by pcregrep.
6:
7: # Set the C locale, so that sort(1) behaves predictably.
8:
9: LC_ALL=C
10: export LC_ALL
11:
1.1.1.2 misho 12: # Remove any non-default colouring and aliases that the caller may have set.
1.1 misho 13:
14: unset PCREGREP_COLOUR PCREGREP_COLOR
1.1.1.2 misho 15: unset cp ls mv rm
1.1 misho 16:
17: # Set the program to be tested, and valgrind settings when requested.
18:
19: pcregrep=`pwd`/pcregrep
20:
21: valgrind=
22: while [ $# -gt 0 ] ; do
23: case $1 in
24: valgrind) valgrind="valgrind -q --leak-check=no --smc-check=all";;
25: *) echo "RunGrepTest: Unknown argument $1"; exit 1;;
26: esac
27: shift
28: done
29:
30: echo " "
31: if [ "$valgrind" = "" ] ; then
32: echo "Testing pcregrep"
33: else
34: echo "Testing pcregrep using valgrind"
35: fi
36:
37: $pcregrep -V
38:
39: # Set up a suitable "diff" command for comparison. Some systems have a diff
40: # that lacks a -u option. Try to deal with this; better do the test for the -b
41: # option as well.
42:
43: cf="diff -ub"
44: if diff -u /dev/null /dev/null; then
45: if diff -ub /dev/null /dev/null; then cf="diff -ub"; else cf="diff -u"; fi
46: else
47: if diff -b /dev/null /dev/null; then cf="diff -b"; else cf="diff"; fi
48: fi
49:
50: # If PCRE has been built in a directory other than the source directory, and
51: # this test is being run from "make check" as usual, then $srcdir will be
52: # set. If not, set it to the current or parent directory, whichever one
53: # contains the test data. We then arrange to run the pcregrep command in the
54: # source directory so that the file names that appear in the output are always
55: # the same.
56:
57: if [ -z "$srcdir" -o ! -d "$srcdir/testdata" ] ; then
58: if [ -d "./testdata" ] ; then
59: srcdir=.
60: elif [ -d "../testdata" ] ; then
61: srcdir=..
62: else
63: echo "Cannot find the testdata directory"
64: exit 1
65: fi
66: fi
67:
68: # Check for the availability of UTF-8 support
69:
1.1.1.2 misho 70: ./pcretest -C utf >/dev/null
1.1 misho 71: utf8=$?
72:
73: echo "---------------------------- Test 1 ------------------------------" >testtry
74: (cd $srcdir; $valgrind $pcregrep PATTERN ./testdata/grepinput) >>testtry
75: echo "RC=$?" >>testtry
76:
77: echo "---------------------------- Test 2 ------------------------------" >>testtry
78: (cd $srcdir; $valgrind $pcregrep '^PATTERN' ./testdata/grepinput) >>testtry
79: echo "RC=$?" >>testtry
80:
81: echo "---------------------------- Test 3 ------------------------------" >>testtry
82: (cd $srcdir; $valgrind $pcregrep -in PATTERN ./testdata/grepinput) >>testtry
83: echo "RC=$?" >>testtry
84:
85: echo "---------------------------- Test 4 ------------------------------" >>testtry
86: (cd $srcdir; $valgrind $pcregrep -ic PATTERN ./testdata/grepinput) >>testtry
87: echo "RC=$?" >>testtry
88:
89: echo "---------------------------- Test 5 ------------------------------" >>testtry
90: (cd $srcdir; $valgrind $pcregrep -in PATTERN ./testdata/grepinput ./testdata/grepinputx) >>testtry
91: echo "RC=$?" >>testtry
92:
93: echo "---------------------------- Test 6 ------------------------------" >>testtry
94: (cd $srcdir; $valgrind $pcregrep -inh PATTERN ./testdata/grepinput ./testdata/grepinputx) >>testtry
95: echo "RC=$?" >>testtry
96:
97: echo "---------------------------- Test 7 ------------------------------" >>testtry
98: (cd $srcdir; $valgrind $pcregrep -il PATTERN ./testdata/grepinput ./testdata/grepinputx) >>testtry
99: echo "RC=$?" >>testtry
100:
101: echo "---------------------------- Test 8 ------------------------------" >>testtry
102: (cd $srcdir; $valgrind $pcregrep -l PATTERN ./testdata/grepinput ./testdata/grepinputx) >>testtry
103: echo "RC=$?" >>testtry
104:
105: echo "---------------------------- Test 9 ------------------------------" >>testtry
106: (cd $srcdir; $valgrind $pcregrep -q PATTERN ./testdata/grepinput ./testdata/grepinputx) >>testtry
107: echo "RC=$?" >>testtry
108:
109: echo "---------------------------- Test 10 -----------------------------" >>testtry
110: (cd $srcdir; $valgrind $pcregrep -q NEVER-PATTERN ./testdata/grepinput ./testdata/grepinputx) >>testtry
111: echo "RC=$?" >>testtry
112:
113: echo "---------------------------- Test 11 -----------------------------" >>testtry
114: (cd $srcdir; $valgrind $pcregrep -vn pattern ./testdata/grepinputx) >>testtry
115: echo "RC=$?" >>testtry
116:
117: echo "---------------------------- Test 12 -----------------------------" >>testtry
118: (cd $srcdir; $valgrind $pcregrep -ix pattern ./testdata/grepinputx) >>testtry
119: echo "RC=$?" >>testtry
120:
121: echo "---------------------------- Test 13 -----------------------------" >>testtry
122: (cd $srcdir; $valgrind $pcregrep -f./testdata/greplist ./testdata/grepinputx) >>testtry
123: echo "RC=$?" >>testtry
124:
125: echo "---------------------------- Test 14 -----------------------------" >>testtry
126: (cd $srcdir; $valgrind $pcregrep -w pat ./testdata/grepinput ./testdata/grepinputx) >>testtry
127: echo "RC=$?" >>testtry
128:
129: echo "---------------------------- Test 15 -----------------------------" >>testtry
130: (cd $srcdir; $valgrind $pcregrep 'abc^*' ./testdata/grepinput) 2>>testtry >>testtry
131: echo "RC=$?" >>testtry
132:
133: echo "---------------------------- Test 16 -----------------------------" >>testtry
134: (cd $srcdir; $valgrind $pcregrep abc ./testdata/grepinput ./testdata/nonexistfile) 2>>testtry >>testtry
135: echo "RC=$?" >>testtry
136:
137: echo "---------------------------- Test 17 -----------------------------" >>testtry
138: (cd $srcdir; $valgrind $pcregrep -M 'the\noutput' ./testdata/grepinput) >>testtry
139: echo "RC=$?" >>testtry
140:
141: echo "---------------------------- Test 18 -----------------------------" >>testtry
142: (cd $srcdir; $valgrind $pcregrep -Mn '(the\noutput|dog\.\n--)' ./testdata/grepinput) >>testtry
143: echo "RC=$?" >>testtry
144:
145: echo "---------------------------- Test 19 -----------------------------" >>testtry
146: (cd $srcdir; $valgrind $pcregrep -Mix 'Pattern' ./testdata/grepinputx) >>testtry
147: echo "RC=$?" >>testtry
148:
149: echo "---------------------------- Test 20 -----------------------------" >>testtry
150: (cd $srcdir; $valgrind $pcregrep -Mixn 'complete pair\nof lines' ./testdata/grepinputx) >>testtry
151: echo "RC=$?" >>testtry
152:
153: echo "---------------------------- Test 21 -----------------------------" >>testtry
154: (cd $srcdir; $valgrind $pcregrep -nA3 'four' ./testdata/grepinputx) >>testtry
155: echo "RC=$?" >>testtry
156:
157: echo "---------------------------- Test 22 -----------------------------" >>testtry
158: (cd $srcdir; $valgrind $pcregrep -nB3 'four' ./testdata/grepinputx) >>testtry
159: echo "RC=$?" >>testtry
160:
161: echo "---------------------------- Test 23 -----------------------------" >>testtry
162: (cd $srcdir; $valgrind $pcregrep -C3 'four' ./testdata/grepinputx) >>testtry
163: echo "RC=$?" >>testtry
164:
165: echo "---------------------------- Test 24 -----------------------------" >>testtry
166: (cd $srcdir; $valgrind $pcregrep -A9 'four' ./testdata/grepinputx) >>testtry
167: echo "RC=$?" >>testtry
168:
169: echo "---------------------------- Test 25 -----------------------------" >>testtry
170: (cd $srcdir; $valgrind $pcregrep -nB9 'four' ./testdata/grepinputx) >>testtry
171: echo "RC=$?" >>testtry
172:
173: echo "---------------------------- Test 26 -----------------------------" >>testtry
174: (cd $srcdir; $valgrind $pcregrep -A9 -B9 'four' ./testdata/grepinputx) >>testtry
175: echo "RC=$?" >>testtry
176:
177: echo "---------------------------- Test 27 -----------------------------" >>testtry
178: (cd $srcdir; $valgrind $pcregrep -A10 'four' ./testdata/grepinputx) >>testtry
179: echo "RC=$?" >>testtry
180:
181: echo "---------------------------- Test 28 -----------------------------" >>testtry
182: (cd $srcdir; $valgrind $pcregrep -nB10 'four' ./testdata/grepinputx) >>testtry
183: echo "RC=$?" >>testtry
184:
185: echo "---------------------------- Test 29 -----------------------------" >>testtry
186: (cd $srcdir; $valgrind $pcregrep -C12 -B10 'four' ./testdata/grepinputx) >>testtry
187: echo "RC=$?" >>testtry
188:
189: echo "---------------------------- Test 30 -----------------------------" >>testtry
190: (cd $srcdir; $valgrind $pcregrep -inB3 'pattern' ./testdata/grepinput ./testdata/grepinputx) >>testtry
191: echo "RC=$?" >>testtry
192:
193: echo "---------------------------- Test 31 -----------------------------" >>testtry
194: (cd $srcdir; $valgrind $pcregrep -inA3 'pattern' ./testdata/grepinput ./testdata/grepinputx) >>testtry
195: echo "RC=$?" >>testtry
196:
197: echo "---------------------------- Test 32 -----------------------------" >>testtry
198: (cd $srcdir; $valgrind $pcregrep -L 'fox' ./testdata/grepinput ./testdata/grepinputx) >>testtry
199: echo "RC=$?" >>testtry
200:
201: echo "---------------------------- Test 33 -----------------------------" >>testtry
202: (cd $srcdir; $valgrind $pcregrep 'fox' ./testdata/grepnonexist) >>testtry 2>&1
203: echo "RC=$?" >>testtry
204:
205: echo "---------------------------- Test 34 -----------------------------" >>testtry
206: (cd $srcdir; $valgrind $pcregrep -s 'fox' ./testdata/grepnonexist) >>testtry 2>&1
207: echo "RC=$?" >>testtry
208:
209: echo "---------------------------- Test 35 -----------------------------" >>testtry
210: (cd $srcdir; $valgrind $pcregrep -L -r --include=grepinputx --exclude-dir='^\.' 'fox' ./testdata) >>testtry
211: echo "RC=$?" >>testtry
212:
213: echo "---------------------------- Test 36 -----------------------------" >>testtry
214: (cd $srcdir; $valgrind $pcregrep -L -r --include=grepinput --exclude 'grepinput$' --exclude_dir='^\.' 'fox' ./testdata | sort) >>testtry
215: echo "RC=$?" >>testtry
216:
217: echo "---------------------------- Test 37 -----------------------------" >>testtry
218: (cd $srcdir; $valgrind $pcregrep '^(a+)*\d' ./testdata/grepinput) >>testtry 2>teststderr
219: echo "RC=$?" >>testtry
220: echo "======== STDERR ========" >>testtry
221: cat teststderr >>testtry
222:
223: echo "---------------------------- Test 38 ------------------------------" >>testtry
224: (cd $srcdir; $valgrind $pcregrep '>\x00<' ./testdata/grepinput) >>testtry
225: echo "RC=$?" >>testtry
226:
227: echo "---------------------------- Test 39 ------------------------------" >>testtry
228: (cd $srcdir; $valgrind $pcregrep -A1 'before the binary zero' ./testdata/grepinput) >>testtry
229: echo "RC=$?" >>testtry
230:
231: echo "---------------------------- Test 40 ------------------------------" >>testtry
232: (cd $srcdir; $valgrind $pcregrep -B1 'after the binary zero' ./testdata/grepinput) >>testtry
233: echo "RC=$?" >>testtry
234:
235: echo "---------------------------- Test 41 ------------------------------" >>testtry
236: (cd $srcdir; $valgrind $pcregrep -B1 -o '\w+ the binary zero' ./testdata/grepinput) >>testtry
237: echo "RC=$?" >>testtry
238:
239: echo "---------------------------- Test 42 ------------------------------" >>testtry
240: (cd $srcdir; $valgrind $pcregrep -B1 -onH '\w+ the binary zero' ./testdata/grepinput) >>testtry
241: echo "RC=$?" >>testtry
242:
243: echo "---------------------------- Test 43 ------------------------------" >>testtry
244: (cd $srcdir; $valgrind $pcregrep -on 'before|zero|after' ./testdata/grepinput) >>testtry
245: echo "RC=$?" >>testtry
246:
247: echo "---------------------------- Test 44 ------------------------------" >>testtry
248: (cd $srcdir; $valgrind $pcregrep -on -e before -ezero -e after ./testdata/grepinput) >>testtry
249: echo "RC=$?" >>testtry
250:
251: echo "---------------------------- Test 45 ------------------------------" >>testtry
252: (cd $srcdir; $valgrind $pcregrep -on -f ./testdata/greplist -e binary ./testdata/grepinput) >>testtry
253: echo "RC=$?" >>testtry
254:
255: echo "---------------------------- Test 46 ------------------------------" >>testtry
256: (cd $srcdir; $valgrind $pcregrep -eabc -e '(unclosed' ./testdata/grepinput) 2>>testtry >>testtry
257: echo "RC=$?" >>testtry
258:
259: echo "---------------------------- Test 47 ------------------------------" >>testtry
260: (cd $srcdir; $valgrind $pcregrep -Fx "AB.VE
261: elephant" ./testdata/grepinput) >>testtry
262: echo "RC=$?" >>testtry
263:
264: echo "---------------------------- Test 48 ------------------------------" >>testtry
265: (cd $srcdir; $valgrind $pcregrep -F "AB.VE
266: elephant" ./testdata/grepinput) >>testtry
267: echo "RC=$?" >>testtry
268:
269: echo "---------------------------- Test 49 ------------------------------" >>testtry
270: (cd $srcdir; $valgrind $pcregrep -F -e DATA -e "AB.VE
271: elephant" ./testdata/grepinput) >>testtry
272: echo "RC=$?" >>testtry
273:
274: echo "---------------------------- Test 50 ------------------------------" >>testtry
275: (cd $srcdir; $valgrind $pcregrep "^(abc|def|ghi|jkl)" ./testdata/grepinputx) >>testtry
276: echo "RC=$?" >>testtry
277:
278: echo "---------------------------- Test 51 ------------------------------" >>testtry
279: (cd $srcdir; $valgrind $pcregrep -Mv "brown\sfox" ./testdata/grepinputv) >>testtry
280: echo "RC=$?" >>testtry
281:
282: echo "---------------------------- Test 52 ------------------------------" >>testtry
283: (cd $srcdir; $valgrind $pcregrep --colour=always jumps ./testdata/grepinputv) >>testtry
284: echo "RC=$?" >>testtry
285:
286: echo "---------------------------- Test 53 ------------------------------" >>testtry
287: (cd $srcdir; $valgrind $pcregrep --file-offsets 'before|zero|after' ./testdata/grepinput) >>testtry
288: echo "RC=$?" >>testtry
289:
290: echo "---------------------------- Test 54 ------------------------------" >>testtry
291: (cd $srcdir; $valgrind $pcregrep --line-offsets 'before|zero|after' ./testdata/grepinput) >>testtry
292: echo "RC=$?" >>testtry
293:
294: echo "---------------------------- Test 55 -----------------------------" >>testtry
295: (cd $srcdir; $valgrind $pcregrep -f./testdata/greplist --color=always ./testdata/grepinputx) >>testtry
296: echo "RC=$?" >>testtry
297:
298: echo "---------------------------- Test 56 -----------------------------" >>testtry
299: (cd $srcdir; $valgrind $pcregrep -c lazy ./testdata/grepinput*) >>testtry
300: echo "RC=$?" >>testtry
301:
302: echo "---------------------------- Test 57 -----------------------------" >>testtry
303: (cd $srcdir; $valgrind $pcregrep -c -l lazy ./testdata/grepinput*) >>testtry
304: echo "RC=$?" >>testtry
305:
306: echo "---------------------------- Test 58 -----------------------------" >>testtry
307: (cd $srcdir; $valgrind $pcregrep --regex=PATTERN ./testdata/grepinput) >>testtry
308: echo "RC=$?" >>testtry
309:
310: echo "---------------------------- Test 59 -----------------------------" >>testtry
311: (cd $srcdir; $valgrind $pcregrep --regexp=PATTERN ./testdata/grepinput) >>testtry
312: echo "RC=$?" >>testtry
313:
314: echo "---------------------------- Test 60 -----------------------------" >>testtry
315: (cd $srcdir; $valgrind $pcregrep --regex PATTERN ./testdata/grepinput) >>testtry
316: echo "RC=$?" >>testtry
317:
318: echo "---------------------------- Test 61 -----------------------------" >>testtry
319: (cd $srcdir; $valgrind $pcregrep --regexp PATTERN ./testdata/grepinput) >>testtry
320: echo "RC=$?" >>testtry
321:
322: echo "---------------------------- Test 62 -----------------------------" >>testtry
323: (cd $srcdir; $valgrind $pcregrep --match-limit=1000 --no-jit -M 'This is a file(.|\R)*file.' ./testdata/grepinput) >>testtry 2>&1
324: echo "RC=$?" >>testtry
325:
326: echo "---------------------------- Test 63 -----------------------------" >>testtry
327: (cd $srcdir; $valgrind $pcregrep --recursion-limit=1000 --no-jit -M 'This is a file(.|\R)*file.' ./testdata/grepinput) >>testtry 2>&1
328: echo "RC=$?" >>testtry
329:
330: echo "---------------------------- Test 64 ------------------------------" >>testtry
331: (cd $srcdir; $valgrind $pcregrep -o1 '(?<=PAT)TERN (ap(pear)s)' ./testdata/grepinput) >>testtry
332: echo "RC=$?" >>testtry
333:
334: echo "---------------------------- Test 65 ------------------------------" >>testtry
335: (cd $srcdir; $valgrind $pcregrep -o2 '(?<=PAT)TERN (ap(pear)s)' ./testdata/grepinput) >>testtry
336: echo "RC=$?" >>testtry
337:
338: echo "---------------------------- Test 66 ------------------------------" >>testtry
339: (cd $srcdir; $valgrind $pcregrep -o3 '(?<=PAT)TERN (ap(pear)s)' ./testdata/grepinput) >>testtry
340: echo "RC=$?" >>testtry
341:
342: echo "---------------------------- Test 67 ------------------------------" >>testtry
343: (cd $srcdir; $valgrind $pcregrep -o12 '(?<=PAT)TERN (ap(pear)s)' ./testdata/grepinput) >>testtry
344: echo "RC=$?" >>testtry
345:
346: echo "---------------------------- Test 68 ------------------------------" >>testtry
347: (cd $srcdir; $valgrind $pcregrep --only-matching=2 '(?<=PAT)TERN (ap(pear)s)' ./testdata/grepinput) >>testtry
348: echo "RC=$?" >>testtry
349:
350: echo "---------------------------- Test 69 -----------------------------" >>testtry
351: (cd $srcdir; $valgrind $pcregrep -vn --colour=always pattern ./testdata/grepinputx) >>testtry
352: echo "RC=$?" >>testtry
353:
354: echo "---------------------------- Test 70 -----------------------------" >>testtry
355: (cd $srcdir; $valgrind $pcregrep --color=always -M "triple:\t.*\n\n" ./testdata/grepinput3) >>testtry
356: echo "RC=$?" >>testtry
357:
358: echo "---------------------------- Test 71 -----------------------------" >>testtry
359: (cd $srcdir; $valgrind $pcregrep -o "^01|^02|^03" ./testdata/grepinput) >>testtry
360: echo "RC=$?" >>testtry
361:
362: echo "---------------------------- Test 72 -----------------------------" >>testtry
363: (cd $srcdir; $valgrind $pcregrep --color=always "^01|^02|^03" ./testdata/grepinput) >>testtry
364: echo "RC=$?" >>testtry
365:
366: echo "---------------------------- Test 73 -----------------------------" >>testtry
367: (cd $srcdir; $valgrind $pcregrep -o --colour=always "^01|^02|^03" ./testdata/grepinput) >>testtry
368: echo "RC=$?" >>testtry
369:
370: echo "---------------------------- Test 74 -----------------------------" >>testtry
371: (cd $srcdir; $valgrind $pcregrep -o "^01|02|^03" ./testdata/grepinput) >>testtry
372: echo "RC=$?" >>testtry
373:
374: echo "---------------------------- Test 75 -----------------------------" >>testtry
375: (cd $srcdir; $valgrind $pcregrep --color=always "^01|02|^03" ./testdata/grepinput) >>testtry
376: echo "RC=$?" >>testtry
377:
378: echo "---------------------------- Test 76 -----------------------------" >>testtry
379: (cd $srcdir; $valgrind $pcregrep -o --colour=always "^01|02|^03" ./testdata/grepinput) >>testtry
380: echo "RC=$?" >>testtry
381:
382: echo "---------------------------- Test 77 -----------------------------" >>testtry
383: (cd $srcdir; $valgrind $pcregrep -o "^01|^02|03" ./testdata/grepinput) >>testtry
384: echo "RC=$?" >>testtry
385:
386: echo "---------------------------- Test 78 -----------------------------" >>testtry
387: (cd $srcdir; $valgrind $pcregrep --color=always "^01|^02|03" ./testdata/grepinput) >>testtry
388: echo "RC=$?" >>testtry
389:
390: echo "---------------------------- Test 79 -----------------------------" >>testtry
391: (cd $srcdir; $valgrind $pcregrep -o --colour=always "^01|^02|03" ./testdata/grepinput) >>testtry
392: echo "RC=$?" >>testtry
393:
394: echo "---------------------------- Test 80 -----------------------------" >>testtry
395: (cd $srcdir; $valgrind $pcregrep -o "\b01|\b02" ./testdata/grepinput) >>testtry
396: echo "RC=$?" >>testtry
397:
398: echo "---------------------------- Test 81 -----------------------------" >>testtry
399: (cd $srcdir; $valgrind $pcregrep --color=always "\\b01|\\b02" ./testdata/grepinput) >>testtry
400: echo "RC=$?" >>testtry
401:
402: echo "---------------------------- Test 82 -----------------------------" >>testtry
403: (cd $srcdir; $valgrind $pcregrep -o --colour=always "\\b01|\\b02" ./testdata/grepinput) >>testtry
404: echo "RC=$?" >>testtry
405:
406: echo "---------------------------- Test 83 -----------------------------" >>testtry
407: (cd $srcdir; $valgrind $pcregrep --buffer-size=100 "^a" ./testdata/grepinput3) >>testtry 2>&1
408: echo "RC=$?" >>testtry
409:
1.1.1.3 ! misho 410: echo "---------------------------- Test 84 -----------------------------" >>testtry
! 411: (cd $srcdir; $valgrind $pcregrep --file-list ./testdata/grepfilelist "fox|complete") >>testtry 2>&1
! 412: echo "RC=$?" >>testtry
! 413:
! 414: echo "---------------------------- Test 85 -----------------------------" >>testtry
! 415: (cd $srcdir; $valgrind $pcregrep --file-list=./testdata/grepfilelist "dolor" ./testdata/grepinput3) >>testtry 2>&1
! 416: echo "RC=$?" >>testtry
! 417:
! 418: echo "---------------------------- Test 86 -----------------------------" >>testtry
! 419: (cd $srcdir; $valgrind $pcregrep "dog" ./testdata/grepbinary) >>testtry 2>&1
! 420: echo "RC=$?" >>testtry
! 421:
! 422: echo "---------------------------- Test 87 -----------------------------" >>testtry
! 423: (cd $srcdir; $valgrind $pcregrep "cat" ./testdata/grepbinary) >>testtry 2>&1
! 424: echo "RC=$?" >>testtry
! 425:
! 426: echo "---------------------------- Test 88 -----------------------------" >>testtry
! 427: (cd $srcdir; $valgrind $pcregrep -v "cat" ./testdata/grepbinary) >>testtry 2>&1
! 428: echo "RC=$?" >>testtry
! 429:
! 430: echo "---------------------------- Test 89 -----------------------------" >>testtry
! 431: (cd $srcdir; $valgrind $pcregrep -I "dog" ./testdata/grepbinary) >>testtry 2>&1
! 432: echo "RC=$?" >>testtry
! 433:
! 434: echo "---------------------------- Test 90 -----------------------------" >>testtry
! 435: (cd $srcdir; $valgrind $pcregrep --binary-files=without-match "dog" ./testdata/grepbinary) >>testtry 2>&1
! 436: echo "RC=$?" >>testtry
! 437:
! 438: echo "---------------------------- Test 91 -----------------------------" >>testtry
! 439: (cd $srcdir; $valgrind $pcregrep -a "dog" ./testdata/grepbinary) >>testtry 2>&1
! 440: echo "RC=$?" >>testtry
! 441:
! 442: echo "---------------------------- Test 92 -----------------------------" >>testtry
! 443: (cd $srcdir; $valgrind $pcregrep --binary-files=text "dog" ./testdata/grepbinary) >>testtry 2>&1
! 444: echo "RC=$?" >>testtry
! 445:
! 446: echo "---------------------------- Test 93 -----------------------------" >>testtry
! 447: (cd $srcdir; $valgrind $pcregrep --text "dog" ./testdata/grepbinary) >>testtry 2>&1
! 448: echo "RC=$?" >>testtry
! 449:
1.1 misho 450: # Now compare the results.
451:
452: $cf $srcdir/testdata/grepoutput testtry
453: if [ $? != 0 ] ; then exit 1; fi
454:
455:
456: # These tests require UTF-8 support
457:
458: if [ $utf8 -ne 0 ] ; then
459: echo "Testing pcregrep UTF-8 features"
460:
461: echo "---------------------------- Test U1 ------------------------------" >testtry
462: (cd $srcdir; $valgrind $pcregrep -n -u --newline=any "^X" ./testdata/grepinput8) >>testtry
463: echo "RC=$?" >>testtry
464:
465: echo "---------------------------- Test U2 ------------------------------" >>testtry
466: (cd $srcdir; $valgrind $pcregrep -n -u -C 3 --newline=any "Match" ./testdata/grepinput8) >>testtry
467: echo "RC=$?" >>testtry
468:
469: $cf $srcdir/testdata/grepoutput8 testtry
470: if [ $? != 0 ] ; then exit 1; fi
471:
472: else
473: echo "Skipping pcregrep UTF-8 tests: no UTF-8 support in PCRE library"
474: fi
475:
476:
477: # We go to some contortions to try to ensure that the tests for the various
478: # newline settings will work in environments where the normal newline sequence
479: # is not \n. Do not use exported files, whose line endings might be changed.
480: # Instead, create an input file using printf so that its contents are exactly
481: # what we want. Note the messy fudge to get printf to write a string that
482: # starts with a hyphen.
483:
484: echo "Testing pcregrep newline settings"
485: printf "abc\rdef\r\nghi\njkl" >testNinput
486:
487: printf "%c--------------------------- Test N1 ------------------------------\r\n" - >testtry
488: $valgrind $pcregrep -n -N CR "^(abc|def|ghi|jkl)" testNinput >>testtry
489:
490: printf "%c--------------------------- Test N2 ------------------------------\r\n" - >>testtry
491: $valgrind $pcregrep -n --newline=crlf "^(abc|def|ghi|jkl)" testNinput >>testtry
492:
493: printf "%c--------------------------- Test N3 ------------------------------\r\n" - >>testtry
494: pattern=`printf 'def\rjkl'`
495: $valgrind $pcregrep -n --newline=cr -F "$pattern" testNinput >>testtry
496:
497: printf "%c--------------------------- Test N4 ------------------------------\r\n" - >>testtry
1.1.1.2 misho 498: $valgrind $pcregrep -n --newline=crlf -F -f $srcdir/testdata/greppatN4 testNinput >>testtry
1.1 misho 499:
500: printf "%c--------------------------- Test N5 ------------------------------\r\n" - >>testtry
501: $valgrind $pcregrep -n --newline=any "^(abc|def|ghi|jkl)" testNinput >>testtry
502:
503: printf "%c--------------------------- Test N6 ------------------------------\r\n" - >>testtry
504: $valgrind $pcregrep -n --newline=anycrlf "^(abc|def|ghi|jkl)" testNinput >>testtry
505:
506: $cf $srcdir/testdata/grepoutputN testtry
507: if [ $? != 0 ] ; then exit 1; fi
508:
509: exit 0
510:
511: # End
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>