File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / pcre / RunGrepTest
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:50:25 2012 UTC (12 years, 4 months ago) by misho
Branches: pcre, MAIN
CVS tags: v8_30, HEAD
pcre

    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: 
   12: # Remove any non-default colouring and aliases that the caller may have set.
   13: 
   14: unset PCREGREP_COLOUR PCREGREP_COLOR
   15: unset cp ls mv rm
   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: 
   70: ./pcretest -C utf >/dev/null
   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: 
  410: # Now compare the results.
  411: 
  412: $cf $srcdir/testdata/grepoutput testtry
  413: if [ $? != 0 ] ; then exit 1; fi
  414: 
  415: 
  416: # These tests require UTF-8 support
  417: 
  418: if [ $utf8 -ne 0 ] ; then
  419:   echo "Testing pcregrep UTF-8 features"
  420: 
  421:   echo "---------------------------- Test U1 ------------------------------" >testtry
  422:   (cd $srcdir; $valgrind $pcregrep -n -u --newline=any "^X" ./testdata/grepinput8) >>testtry
  423:   echo "RC=$?" >>testtry
  424: 
  425:   echo "---------------------------- Test U2 ------------------------------" >>testtry
  426:   (cd $srcdir; $valgrind $pcregrep -n -u -C 3 --newline=any "Match" ./testdata/grepinput8) >>testtry
  427:   echo "RC=$?" >>testtry
  428: 
  429:   $cf $srcdir/testdata/grepoutput8 testtry
  430:   if [ $? != 0 ] ; then exit 1; fi
  431: 
  432: else
  433:   echo "Skipping pcregrep UTF-8 tests: no UTF-8 support in PCRE library"
  434: fi
  435: 
  436: 
  437: # We go to some contortions to try to ensure that the tests for the various
  438: # newline settings will work in environments where the normal newline sequence
  439: # is not \n. Do not use exported files, whose line endings might be changed.
  440: # Instead, create an input file using printf so that its contents are exactly
  441: # what we want. Note the messy fudge to get printf to write a string that
  442: # starts with a hyphen.
  443: 
  444: echo "Testing pcregrep newline settings"
  445: printf "abc\rdef\r\nghi\njkl" >testNinput
  446: 
  447: printf "%c--------------------------- Test N1 ------------------------------\r\n" - >testtry
  448: $valgrind $pcregrep -n -N CR "^(abc|def|ghi|jkl)" testNinput >>testtry
  449: 
  450: printf "%c--------------------------- Test N2 ------------------------------\r\n" - >>testtry
  451: $valgrind $pcregrep -n --newline=crlf "^(abc|def|ghi|jkl)" testNinput >>testtry
  452: 
  453: printf "%c--------------------------- Test N3 ------------------------------\r\n" - >>testtry
  454: pattern=`printf 'def\rjkl'`
  455: $valgrind $pcregrep -n --newline=cr -F "$pattern" testNinput >>testtry
  456: 
  457: printf "%c--------------------------- Test N4 ------------------------------\r\n" - >>testtry
  458: $valgrind $pcregrep -n --newline=crlf -F -f $srcdir/testdata/greppatN4 testNinput >>testtry
  459: 
  460: printf "%c--------------------------- Test N5 ------------------------------\r\n" - >>testtry
  461: $valgrind $pcregrep -n --newline=any "^(abc|def|ghi|jkl)" testNinput >>testtry
  462: 
  463: printf "%c--------------------------- Test N6 ------------------------------\r\n" - >>testtry
  464: $valgrind $pcregrep -n --newline=anycrlf "^(abc|def|ghi|jkl)" testNinput >>testtry
  465: 
  466: $cf $srcdir/testdata/grepoutputN testtry
  467: if [ $? != 0 ] ; then exit 1; fi
  468: 
  469: exit 0
  470: 
  471: # End

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>