grepoutput 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757
  1. ---------------------------- Test 1 ------------------------------
  2. PATTERN at the start of a line.
  3. In the middle of a line, PATTERN appears.
  4. Check up on PATTERN near the end.
  5. RC=0
  6. ---------------------------- Test 2 ------------------------------
  7. PATTERN at the start of a line.
  8. RC=0
  9. ---------------------------- Test 3 ------------------------------
  10. 7:PATTERN at the start of a line.
  11. 8:In the middle of a line, PATTERN appears.
  12. 10:This pattern is in lower case.
  13. 610:Check up on PATTERN near the end.
  14. RC=0
  15. ---------------------------- Test 4 ------------------------------
  16. 4
  17. RC=0
  18. ---------------------------- Test 5 ------------------------------
  19. ./testdata/grepinput:7:PATTERN at the start of a line.
  20. ./testdata/grepinput:8:In the middle of a line, PATTERN appears.
  21. ./testdata/grepinput:10:This pattern is in lower case.
  22. ./testdata/grepinput:610:Check up on PATTERN near the end.
  23. ./testdata/grepinputx:3:Here is the pattern again.
  24. ./testdata/grepinputx:5:Pattern
  25. ./testdata/grepinputx:42:This line contains pattern not on a line by itself.
  26. RC=0
  27. ---------------------------- Test 6 ------------------------------
  28. 7:PATTERN at the start of a line.
  29. 8:In the middle of a line, PATTERN appears.
  30. 10:This pattern is in lower case.
  31. 610:Check up on PATTERN near the end.
  32. 3:Here is the pattern again.
  33. 5:Pattern
  34. 42:This line contains pattern not on a line by itself.
  35. RC=0
  36. ---------------------------- Test 7 ------------------------------
  37. ./testdata/grepinput
  38. ./testdata/grepinputx
  39. RC=0
  40. ---------------------------- Test 8 ------------------------------
  41. ./testdata/grepinput
  42. RC=0
  43. ---------------------------- Test 9 ------------------------------
  44. RC=0
  45. ---------------------------- Test 10 -----------------------------
  46. RC=1
  47. ---------------------------- Test 11 -----------------------------
  48. 1:This is a second file of input for the pcregrep tests.
  49. 2:
  50. 4:
  51. 5:Pattern
  52. 6:That time it was on a line by itself.
  53. 7:
  54. 8:To pat or not to pat, that is the question.
  55. 9:
  56. 10:complete pair
  57. 11:of lines
  58. 12:
  59. 13:That was a complete pair
  60. 14:of lines all by themselves.
  61. 15:
  62. 16:complete pair
  63. 17:of lines
  64. 18:
  65. 19:And there they were again, to check line numbers.
  66. 20:
  67. 21:one
  68. 22:two
  69. 23:three
  70. 24:four
  71. 25:five
  72. 26:six
  73. 27:seven
  74. 28:eight
  75. 29:nine
  76. 30:ten
  77. 31:eleven
  78. 32:twelve
  79. 33:thirteen
  80. 34:fourteen
  81. 35:fifteen
  82. 36:sixteen
  83. 37:seventeen
  84. 38:eighteen
  85. 39:nineteen
  86. 40:twenty
  87. 41:
  88. 43:This is the last line of this file.
  89. RC=0
  90. ---------------------------- Test 12 -----------------------------
  91. Pattern
  92. RC=0
  93. ---------------------------- Test 13 -----------------------------
  94. Here is the pattern again.
  95. That time it was on a line by itself.
  96. seventeen
  97. This line contains pattern not on a line by itself.
  98. RC=0
  99. ---------------------------- Test 14 -----------------------------
  100. ./testdata/grepinputx:To pat or not to pat, that is the question.
  101. RC=0
  102. ---------------------------- Test 15 -----------------------------
  103. pcregrep: Error in command-line regex at offset 4: nothing to repeat
  104. RC=2
  105. ---------------------------- Test 16 -----------------------------
  106. pcregrep: Failed to open ./testdata/nonexistfile: No such file or directory
  107. RC=2
  108. ---------------------------- Test 17 -----------------------------
  109. features should be added at the end, because some of the tests involve the
  110. output of line numbers, and we don't want these to change.
  111. RC=0
  112. ---------------------------- Test 18 -----------------------------
  113. 4:features should be added at the end, because some of the tests involve the
  114. output of line numbers, and we don't want these to change.
  115. 583:brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
  116. -------------------------------------------------------------------------------
  117. RC=0
  118. ---------------------------- Test 19 -----------------------------
  119. Pattern
  120. RC=0
  121. ---------------------------- Test 20 -----------------------------
  122. 10:complete pair
  123. of lines
  124. 16:complete pair
  125. of lines
  126. RC=0
  127. ---------------------------- Test 21 -----------------------------
  128. 24:four
  129. 25-five
  130. 26-six
  131. 27-seven
  132. --
  133. 34:fourteen
  134. 35-fifteen
  135. 36-sixteen
  136. 37-seventeen
  137. RC=0
  138. ---------------------------- Test 22 -----------------------------
  139. 21-one
  140. 22-two
  141. 23-three
  142. 24:four
  143. --
  144. 31-eleven
  145. 32-twelve
  146. 33-thirteen
  147. 34:fourteen
  148. RC=0
  149. ---------------------------- Test 23 -----------------------------
  150. one
  151. two
  152. three
  153. four
  154. five
  155. six
  156. seven
  157. --
  158. eleven
  159. twelve
  160. thirteen
  161. fourteen
  162. fifteen
  163. sixteen
  164. seventeen
  165. RC=0
  166. ---------------------------- Test 24 -----------------------------
  167. four
  168. five
  169. six
  170. seven
  171. eight
  172. nine
  173. ten
  174. eleven
  175. twelve
  176. thirteen
  177. fourteen
  178. fifteen
  179. sixteen
  180. seventeen
  181. eighteen
  182. nineteen
  183. twenty
  184. This line contains pattern not on a line by itself.
  185. This is the last line of this file.
  186. RC=0
  187. ---------------------------- Test 25 -----------------------------
  188. 15-
  189. 16-complete pair
  190. 17-of lines
  191. 18-
  192. 19-And there they were again, to check line numbers.
  193. 20-
  194. 21-one
  195. 22-two
  196. 23-three
  197. 24:four
  198. 25-five
  199. 26-six
  200. 27-seven
  201. 28-eight
  202. 29-nine
  203. 30-ten
  204. 31-eleven
  205. 32-twelve
  206. 33-thirteen
  207. 34:fourteen
  208. RC=0
  209. ---------------------------- Test 26 -----------------------------
  210. complete pair
  211. of lines
  212. And there they were again, to check line numbers.
  213. one
  214. two
  215. three
  216. four
  217. five
  218. six
  219. seven
  220. eight
  221. nine
  222. ten
  223. eleven
  224. twelve
  225. thirteen
  226. fourteen
  227. fifteen
  228. sixteen
  229. seventeen
  230. eighteen
  231. nineteen
  232. twenty
  233. This line contains pattern not on a line by itself.
  234. This is the last line of this file.
  235. RC=0
  236. ---------------------------- Test 27 -----------------------------
  237. four
  238. five
  239. six
  240. seven
  241. eight
  242. nine
  243. ten
  244. eleven
  245. twelve
  246. thirteen
  247. fourteen
  248. fifteen
  249. sixteen
  250. seventeen
  251. eighteen
  252. nineteen
  253. twenty
  254. This line contains pattern not on a line by itself.
  255. This is the last line of this file.
  256. RC=0
  257. ---------------------------- Test 28 -----------------------------
  258. 14-of lines all by themselves.
  259. 15-
  260. 16-complete pair
  261. 17-of lines
  262. 18-
  263. 19-And there they were again, to check line numbers.
  264. 20-
  265. 21-one
  266. 22-two
  267. 23-three
  268. 24:four
  269. 25-five
  270. 26-six
  271. 27-seven
  272. 28-eight
  273. 29-nine
  274. 30-ten
  275. 31-eleven
  276. 32-twelve
  277. 33-thirteen
  278. 34:fourteen
  279. RC=0
  280. ---------------------------- Test 29 -----------------------------
  281. of lines all by themselves.
  282. complete pair
  283. of lines
  284. And there they were again, to check line numbers.
  285. one
  286. two
  287. three
  288. four
  289. five
  290. six
  291. seven
  292. eight
  293. nine
  294. ten
  295. eleven
  296. twelve
  297. thirteen
  298. fourteen
  299. fifteen
  300. sixteen
  301. seventeen
  302. eighteen
  303. nineteen
  304. twenty
  305. This line contains pattern not on a line by itself.
  306. This is the last line of this file.
  307. RC=0
  308. ---------------------------- Test 30 -----------------------------
  309. ./testdata/grepinput-4-features should be added at the end, because some of the tests involve the
  310. ./testdata/grepinput-5-output of line numbers, and we don't want these to change.
  311. ./testdata/grepinput-6-
  312. ./testdata/grepinput:7:PATTERN at the start of a line.
  313. ./testdata/grepinput:8:In the middle of a line, PATTERN appears.
  314. ./testdata/grepinput-9-
  315. ./testdata/grepinput:10:This pattern is in lower case.
  316. --
  317. ./testdata/grepinput-607-PUT NEW DATA ABOVE THIS LINE.
  318. ./testdata/grepinput-608-=============================
  319. ./testdata/grepinput-609-
  320. ./testdata/grepinput:610:Check up on PATTERN near the end.
  321. --
  322. ./testdata/grepinputx-1-This is a second file of input for the pcregrep tests.
  323. ./testdata/grepinputx-2-
  324. ./testdata/grepinputx:3:Here is the pattern again.
  325. ./testdata/grepinputx-4-
  326. ./testdata/grepinputx:5:Pattern
  327. --
  328. ./testdata/grepinputx-39-nineteen
  329. ./testdata/grepinputx-40-twenty
  330. ./testdata/grepinputx-41-
  331. ./testdata/grepinputx:42:This line contains pattern not on a line by itself.
  332. RC=0
  333. ---------------------------- Test 31 -----------------------------
  334. ./testdata/grepinput:7:PATTERN at the start of a line.
  335. ./testdata/grepinput:8:In the middle of a line, PATTERN appears.
  336. ./testdata/grepinput-9-
  337. ./testdata/grepinput:10:This pattern is in lower case.
  338. ./testdata/grepinput-11-
  339. ./testdata/grepinput-12-Here follows a whole lot of stuff that makes the file over 24K long.
  340. ./testdata/grepinput-13-
  341. --
  342. ./testdata/grepinput:610:Check up on PATTERN near the end.
  343. ./testdata/grepinput-611-This is the last line of this file.
  344. --
  345. ./testdata/grepinputx:3:Here is the pattern again.
  346. ./testdata/grepinputx-4-
  347. ./testdata/grepinputx:5:Pattern
  348. ./testdata/grepinputx-6-That time it was on a line by itself.
  349. ./testdata/grepinputx-7-
  350. ./testdata/grepinputx-8-To pat or not to pat, that is the question.
  351. --
  352. ./testdata/grepinputx:42:This line contains pattern not on a line by itself.
  353. ./testdata/grepinputx-43-This is the last line of this file.
  354. RC=0
  355. ---------------------------- Test 32 -----------------------------
  356. ./testdata/grepinputx
  357. RC=0
  358. ---------------------------- Test 33 -----------------------------
  359. pcregrep: Failed to open ./testdata/grepnonexist: No such file or directory
  360. RC=2
  361. ---------------------------- Test 34 -----------------------------
  362. RC=2
  363. ---------------------------- Test 35 -----------------------------
  364. ./testdata/grepinput8
  365. ./testdata/grepinputx
  366. RC=0
  367. ---------------------------- Test 36 -----------------------------
  368. ./testdata/grepinput3
  369. ./testdata/grepinputx
  370. RC=0
  371. ---------------------------- Test 37 -----------------------------
  372. aaaaa0
  373. aaaaa2
  374. 010203040506
  375. RC=0
  376. ======== STDERR ========
  377. pcregrep: pcre_exec() gave error -8 while matching this text:
  378. aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
  379. pcregrep: pcre_exec() gave error -8 while matching this text:
  380. aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
  381. pcregrep: Error -8, -21 or -27 means that a resource limit was exceeded.
  382. pcregrep: Check your regex for nested unlimited loops.
  383. ---------------------------- Test 38 ------------------------------
  384. This line contains a binary zero here >�< for testing.
  385. RC=0
  386. ---------------------------- Test 39 ------------------------------
  387. This is a line before the binary zero.
  388. This line contains a binary zero here >�< for testing.
  389. RC=0
  390. ---------------------------- Test 40 ------------------------------
  391. This line contains a binary zero here >�< for testing.
  392. This is a line after the binary zero.
  393. RC=0
  394. ---------------------------- Test 41 ------------------------------
  395. before the binary zero
  396. after the binary zero
  397. RC=0
  398. ---------------------------- Test 42 ------------------------------
  399. ./testdata/grepinput:595:before the binary zero
  400. ./testdata/grepinput:597:after the binary zero
  401. RC=0
  402. ---------------------------- Test 43 ------------------------------
  403. 595:before
  404. 595:zero
  405. 596:zero
  406. 597:after
  407. 597:zero
  408. RC=0
  409. ---------------------------- Test 44 ------------------------------
  410. 595:before
  411. 595:zero
  412. 596:zero
  413. 597:zero
  414. RC=0
  415. ---------------------------- Test 45 ------------------------------
  416. 10:pattern
  417. 595:binary
  418. 596:binary
  419. 597:binary
  420. RC=0
  421. ---------------------------- Test 46 ------------------------------
  422. pcregrep: Error in 2nd command-line regex at offset 9: missing )
  423. RC=2
  424. ---------------------------- Test 47 ------------------------------
  425. AB.VE
  426. RC=0
  427. ---------------------------- Test 48 ------------------------------
  428. ABOVE the elephant
  429. AB.VE
  430. AB.VE the turtle
  431. RC=0
  432. ---------------------------- Test 49 ------------------------------
  433. ABOVE the elephant
  434. AB.VE
  435. AB.VE the turtle
  436. PUT NEW DATA ABOVE THIS LINE.
  437. RC=0
  438. ---------------------------- Test 50 ------------------------------
  439. RC=1
  440. ---------------------------- Test 51 ------------------------------
  441. over the lazy dog.
  442. This time it jumps and jumps and jumps.
  443. RC=0
  444. ---------------------------- Test 52 ------------------------------
  445. fox jumps
  446. This time it jumps and jumps and jumps.
  447. RC=0
  448. ---------------------------- Test 53 ------------------------------
  449. 36972,6
  450. 36990,4
  451. 37024,4
  452. 37066,5
  453. 37083,4
  454. RC=0
  455. ---------------------------- Test 54 ------------------------------
  456. 595:15,6
  457. 595:33,4
  458. 596:28,4
  459. 597:15,5
  460. 597:32,4
  461. RC=0
  462. ---------------------------- Test 55 -----------------------------
  463. Here is the pattern again.
  464. That time it was on a line by itself.
  465. This line contains pattern not on a line by itself.
  466. RC=0
  467. ---------------------------- Test 56 -----------------------------
  468. ./testdata/grepinput:456
  469. ./testdata/grepinput3:0
  470. ./testdata/grepinput8:0
  471. ./testdata/grepinputv:1
  472. ./testdata/grepinputx:0
  473. RC=0
  474. ---------------------------- Test 57 -----------------------------
  475. ./testdata/grepinput:456
  476. ./testdata/grepinputv:1
  477. RC=0
  478. ---------------------------- Test 58 -----------------------------
  479. PATTERN at the start of a line.
  480. In the middle of a line, PATTERN appears.
  481. Check up on PATTERN near the end.
  482. RC=0
  483. ---------------------------- Test 59 -----------------------------
  484. PATTERN at the start of a line.
  485. In the middle of a line, PATTERN appears.
  486. Check up on PATTERN near the end.
  487. RC=0
  488. ---------------------------- Test 60 -----------------------------
  489. PATTERN at the start of a line.
  490. In the middle of a line, PATTERN appears.
  491. Check up on PATTERN near the end.
  492. RC=0
  493. ---------------------------- Test 61 -----------------------------
  494. PATTERN at the start of a line.
  495. In the middle of a line, PATTERN appears.
  496. Check up on PATTERN near the end.
  497. RC=0
  498. ---------------------------- Test 62 -----------------------------
  499. pcregrep: pcre_exec() gave error -8 while matching text that starts:
  500. This is a file of miscellaneous text that is used as test data for checking
  501. that the pcregrep command is working correctly. The file must be more than 24K
  502. long so that it needs more than a single read
  503. pcregrep: Error -8, -21 or -27 means that a resource limit was exceeded.
  504. pcregrep: Check your regex for nested unlimited loops.
  505. RC=1
  506. ---------------------------- Test 63 -----------------------------
  507. pcregrep: pcre_exec() gave error -21 while matching text that starts:
  508. This is a file of miscellaneous text that is used as test data for checking
  509. that the pcregrep command is working correctly. The file must be more than 24K
  510. long so that it needs more than a single read
  511. pcregrep: Error -8, -21 or -27 means that a resource limit was exceeded.
  512. pcregrep: Check your regex for nested unlimited loops.
  513. RC=1
  514. ---------------------------- Test 64 ------------------------------
  515. appears
  516. RC=0
  517. ---------------------------- Test 65 ------------------------------
  518. pear
  519. RC=0
  520. ---------------------------- Test 66 ------------------------------
  521. RC=0
  522. ---------------------------- Test 67 ------------------------------
  523. RC=0
  524. ---------------------------- Test 68 ------------------------------
  525. pear
  526. RC=0
  527. ---------------------------- Test 69 -----------------------------
  528. 1:This is a second file of input for the pcregrep tests.
  529. 2:
  530. 4:
  531. 5:Pattern
  532. 6:That time it was on a line by itself.
  533. 7:
  534. 8:To pat or not to pat, that is the question.
  535. 9:
  536. 10:complete pair
  537. 11:of lines
  538. 12:
  539. 13:That was a complete pair
  540. 14:of lines all by themselves.
  541. 15:
  542. 16:complete pair
  543. 17:of lines
  544. 18:
  545. 19:And there they were again, to check line numbers.
  546. 20:
  547. 21:one
  548. 22:two
  549. 23:three
  550. 24:four
  551. 25:five
  552. 26:six
  553. 27:seven
  554. 28:eight
  555. 29:nine
  556. 30:ten
  557. 31:eleven
  558. 32:twelve
  559. 33:thirteen
  560. 34:fourteen
  561. 35:fifteen
  562. 36:sixteen
  563. 37:seventeen
  564. 38:eighteen
  565. 39:nineteen
  566. 40:twenty
  567. 41:
  568. 43:This is the last line of this file.
  569. RC=0
  570. ---------------------------- Test 70 -----------------------------
  571. triple: t1_txt s1_tag s_txt p_tag p_txt o_tag o_txt
  572. triple: t3_txt s2_tag s_txt p_tag p_txt o_tag o_txt
  573. triple: t4_txt s1_tag s_txt p_tag p_txt o_tag o_txt
  574. triple: t6_txt s2_tag s_txt p_tag p_txt o_tag o_txt
  575. RC=0
  576. ---------------------------- Test 71 -----------------------------
  577. 01
  578. RC=0
  579. ---------------------------- Test 72 -----------------------------
  580. 010203040506
  581. RC=0
  582. ---------------------------- Test 73 -----------------------------
  583. 01
  584. RC=0
  585. ---------------------------- Test 74 -----------------------------
  586. 01
  587. 02
  588. RC=0
  589. ---------------------------- Test 75 -----------------------------
  590. 010203040506
  591. RC=0
  592. ---------------------------- Test 76 -----------------------------
  593. 01
  594. 02
  595. RC=0
  596. ---------------------------- Test 77 -----------------------------
  597. 01
  598. 03
  599. RC=0
  600. ---------------------------- Test 78 -----------------------------
  601. 010203040506
  602. RC=0
  603. ---------------------------- Test 79 -----------------------------
  604. 01
  605. 03
  606. RC=0
  607. ---------------------------- Test 80 -----------------------------
  608. 01
  609. RC=0
  610. ---------------------------- Test 81 -----------------------------
  611. 010203040506
  612. RC=0
  613. ---------------------------- Test 82 -----------------------------
  614. 01
  615. RC=0
  616. ---------------------------- Test 83 -----------------------------
  617. pcregrep: line 4 of file ./testdata/grepinput3 is too long for the internal buffer
  618. pcregrep: check the --buffer-size option
  619. RC=2
  620. ---------------------------- Test 84 -----------------------------
  621. testdata/grepinputv:fox jumps
  622. testdata/grepinputx:complete pair
  623. testdata/grepinputx:That was a complete pair
  624. testdata/grepinputx:complete pair
  625. testdata/grepinput3:triple: t7_txt s1_tag s_txt p_tag p_txt o_tag o_txt
  626. RC=0
  627. ---------------------------- Test 85 -----------------------------
  628. ./testdata/grepinput3:Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
  629. RC=0
  630. ---------------------------- Test 86 -----------------------------
  631. Binary file ./testdata/grepbinary matches
  632. RC=0
  633. ---------------------------- Test 87 -----------------------------
  634. RC=1
  635. ---------------------------- Test 88 -----------------------------
  636. Binary file ./testdata/grepbinary matches
  637. RC=0
  638. ---------------------------- Test 89 -----------------------------
  639. RC=1
  640. ---------------------------- Test 90 -----------------------------
  641. RC=1
  642. ---------------------------- Test 91 -----------------------------
  643. The quick brown f�x jumps over the lazy dog.
  644. RC=0
  645. ---------------------------- Test 92 -----------------------------
  646. The quick brown f�x jumps over the lazy dog.
  647. RC=0
  648. ---------------------------- Test 93 -----------------------------
  649. The quick brown f�x jumps over the lazy dog.
  650. RC=0
  651. ---------------------------- Test 94 -----------------------------
  652. ./testdata/grepinput8
  653. ./testdata/grepinputx
  654. RC=0
  655. ---------------------------- Test 95 -----------------------------
  656. testdata/grepinputx:complete pair
  657. testdata/grepinputx:That was a complete pair
  658. testdata/grepinputx:complete pair
  659. RC=0
  660. ---------------------------- Test 96 -----------------------------
  661. ./testdata/grepinput3
  662. ./testdata/grepinput8
  663. ./testdata/grepinputx
  664. RC=0
  665. ---------------------------- Test 97 -----------------------------
  666. ./testdata/grepinput3
  667. ./testdata/grepinputx
  668. RC=0
  669. ---------------------------- Test 98 -----------------------------
  670. ./testdata/grepinputx
  671. RC=0
  672. ---------------------------- Test 99 -----------------------------
  673. ./testdata/grepinput3
  674. ./testdata/grepinputx
  675. RC=0
  676. ---------------------------- Test 100 ------------------------------
  677. ./testdata/grepinput:zerothe.
  678. ./testdata/grepinput:zeroa
  679. ./testdata/grepinput:zerothe.
  680. RC=0
  681. ---------------------------- Test 101 ------------------------------
  682. ./testdata/grepinput:.|zero|the|.
  683. ./testdata/grepinput:zero|a
  684. ./testdata/grepinput:.|zero|the|.
  685. RC=0
  686. ---------------------------- Test 102 -----------------------------
  687. 2:
  688. 5:
  689. 7:
  690. 9:
  691. 12:
  692. 14:
  693. RC=0
  694. ---------------------------- Test 103 -----------------------------
  695. RC=0
  696. ---------------------------- Test 104 -----------------------------
  697. 2:
  698. 5:
  699. 7:
  700. 9:
  701. 12:
  702. 14:
  703. RC=0
  704. ---------------------------- Test 105 -----------------------------
  705. triple: t1_txt s1_tag s_txt p_tag p_txt o_tag o_txt
  706. 
  707. triple: t2_txt s1_tag s_txt p_tag p_txt o_tag
  708. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
  709. 
  710. triple: t3_txt s2_tag s_txt p_tag p_txt o_tag o_txt
  711. 
  712. triple: t4_txt s1_tag s_txt p_tag p_txt o_tag o_txt
  713. 
  714. triple: t5_txt s1_tag s_txt p_tag p_txt o_tag
  715. o_txt
  716. 
  717. triple: t6_txt s2_tag s_txt p_tag p_txt o_tag o_txt
  718. 
  719. triple: t7_txt s1_tag s_txt p_tag p_txt o_tag o_txt
  720. RC=0
  721. ---------------------------- Test 106 -----------------------------
  722. a
  723. RC=0
  724. ---------------------------- Test 107 -----------------------------
  725. 1:0,1
  726. 2:0,1
  727. 2:1,1
  728. 2:2,1
  729. 2:3,1
  730. 2:4,1
  731. RC=0
  732. ---------------------------- Test 108 ------------------------------
  733. RC=0
  734. ---------------------------- Test 109 -----------------------------
  735. RC=0