/[pcre]/code/branches/pcre16/RunTest
ViewVC logotype

Diff of /code/branches/pcre16/RunTest

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

code/trunk/RunTest.in revision 63 by nigel, Sat Feb 24 21:40:03 2007 UTC code/trunk/RunTest revision 159 by ph10, Wed May 2 10:27:18 2007 UTC
# Line 1  Line 1 
1  #! /bin/sh  #! /bin/sh
2    
 # This file is generated by configure from RunTest.in. Make any changes  
 # to that file.  
   
3  # Run PCRE tests  # Run PCRE tests
4    
5  cf=diff  cf="diff -u"
6  testdata=@top_srcdir@/testdata  valgrind=
7    testdata=testdata
8    
9    if [ -n "$srcdir" -a -d "$srcdir" ] ; then
10      testdata="$srcdir/testdata"
11    fi
12    
13    # Find which optional facilities are available
14    
15    case `./pcretest -C | ./pcregrep 'Internal link size'` in
16      *2) link_size=2;;
17      *3) link_size=3;;
18      *4) link_size=4;;
19       *) echo "Failed to find internal link size"; exit 1;;
20    esac
21    
22  # Select which tests to run; if no selection, run all  ./pcretest -C | ./pcregrep 'No UTF-8 support' >/dev/null
23    utf8=$?
24    
25    ./pcretest -C | ./pcregrep 'No Unicode properties support' >/dev/null
26    ucp=$?
27    
28    # Select which tests to run; for those that are explicitly requested, check
29    # that the necessary optional facilities are available.
30    
31  do1=no  do1=no
32  do2=no  do2=no
33  do3=no  do3=no
34  do4=no  do4=no
35  do5=no  do5=no
36    do6=no
37    do7=no
38    do8=no
39    do9=no
40    
41  while [ $# -gt 0 ] ; do  while [ $# -gt 0 ] ; do
42    case $1 in    case $1 in
# Line 22  while [ $# -gt 0 ] ; do Line 44  while [ $# -gt 0 ] ; do
44      2) do2=yes;;      2) do2=yes;;
45      3) do3=yes;;      3) do3=yes;;
46      4) do4=yes;;      4) do4=yes;;
47      5) do5=yes;;      5) do5=yes;;
48        6) do6=yes;;
49        7) do7=yes;;
50        8) do8=yes;;
51        9) do9=yes;;
52        valgrind) valgrind="valgrind -q";;
53      *) echo "Unknown test number $1"; exit 1;;      *) echo "Unknown test number $1"; exit 1;;
54    esac    esac
55    shift    shift
56  done  done
57    
58  if [ "@UTF8@" = "" ] ; then  if [ "$link_size" != "2" ] ; then
59      if [ $do2 = yes ] ; then
60        echo "Can't run test 2 with an internal link size other than 2"
61        exit 1
62      fi
63      if [ $do5 = yes ] ; then
64        echo "Can't run test 5 with an internal link size other than 2"
65        exit 1
66      fi
67      if [ $do6 = yes ] ; then
68        echo "Can't run test 6 with an internal link size other than 2"
69        exit 1
70      fi
71    fi
72    
73    if [ $utf8 -eq 0 ] ; then
74    if [ $do4 = yes ] ; then    if [ $do4 = yes ] ; then
75      echo "Can't run test 4 because UFT8 support is not configured"      echo "Can't run test 4 because UTF-8 support is not configured"
76      exit 1      exit 1
77    fi    fi
78    if [ $do5 = yes ] ; then    if [ $do5 = yes ] ; then
79      echo "Can't run test 5 because UFT8 support is not configured"      echo "Can't run test 5 because UTF-8 support is not configured"
80        exit 1
81      fi
82      if [ $do6 = yes ] ; then
83        echo "Can't run test 6 because UTF-8 support is not configured"
84      exit 1      exit 1
85    fi    fi
86  fi    if [ $do8 = yes ] ; then
87        echo "Can't run test 8 because UTF-8 support is not configured"
88        exit 1
89      fi
90      if [ $do9 = yes ] ; then
91        echo "Can't run test 9 because UTF-8 support is not configured"
92        exit 1
93      fi
94    fi
95    
96    if [ $ucp -eq 0 ] ; then
97      if [ $do6 = yes ] ; then
98        echo "Can't run test 6 because Unicode property support is not configured"
99        exit 1
100      fi
101      if [ $do9 = yes ] ; then
102        echo "Can't run test 9 because Unicode property support is not configured"
103        exit 1
104      fi
105    fi
106    
107  if [ $do1 = no -a $do2 = no -a $do3 = no -a $do4 = no -a\  # If no specific tests were requested, select all that are relevant.
108       $do5 = no ] ; then  
109    if [ $do1 = no -a $do2 = no -a $do3 = no -a $do4 = no -a \
110         $do5 = no -a $do6 = no -a $do7 = no -a $do8 = no -a \
111         $do9 = no ] ; then
112    do1=yes    do1=yes
113    do2=yes    do2=yes
114    do3=yes    do3=yes
115    if [ "@UTF8@" != "" ] ; then do4=yes; fi    if [ $utf8 -ne 0 ] ; then do4=yes; fi
116    if [ "@UTF8@" != "" ] ; then do5=yes; fi    if [ $utf8 -ne 0 ] ; then do5=yes; fi
117      if [ $utf8 -ne 0 -a $ucp -ne 0 ] ; then do6=yes; fi
118      do7=yes
119      if [ $utf8 -ne 0 ] ; then do8=yes; fi
120      if [ $utf8 -ne 0 -a $ucp -ne 0 ] ; then do9=yes; fi
121  fi  fi
122    
123    # Show which release
124    
125    echo ""
126    echo PCRE C library tests
127    ./pcretest /dev/null
128    
129  # Primary test, Perl-compatible  # Primary test, Perl-compatible
130    
131  if [ $do1 = yes ] ; then  if [ $do1 = yes ] ; then
132    echo "Testing main functionality (Perl compatible)"    echo "Test 1: main functionality (Perl compatible)"
133    ./pcretest $testdata/testinput1 testtry    $valgrind ./pcretest -q $testdata/testinput1 testtry
134    if [ $? = 0 ] ; then    if [ $? = 0 ] ; then
135      $cf testtry $testdata/testoutput1      $cf $testdata/testoutput1 testtry
136      if [ $? != 0 ] ; then exit 1; fi      if [ $? != 0 ] ; then exit 1; fi
     echo " "  
137    else exit 1    else exit 1
138    fi    fi
139      echo "OK"
140  fi  fi
141    
142  # PCRE tests that are not Perl-compatible - API & error tests, mostly  # PCRE tests that are not Perl-compatible - API & error tests, mostly
143    
144  if [ $do2 = yes ] ; then  if [ $do2 = yes ] ; then
145    echo "Testing API and error handling (not Perl compatible)"    if [ "$link_size" = "2" ] ; then
146    ./pcretest -i $testdata/testinput2 testtry      echo "Test 2: API and error handling (not Perl compatible)"
147    if [ $? = 0 ] ; then      $valgrind ./pcretest -q $testdata/testinput2 testtry
148      $cf testtry $testdata/testoutput2      if [ $? = 0 ] ; then
149      if [ $? != 0 ] ; then exit 1; fi        $cf $testdata/testoutput2 testtry
150    else exit 1        if [ $? != 0 ] ; then exit 1; fi
151        else exit 1
152        fi
153        echo "OK"
154      else
155        echo Test 2 skipped for link size other than 2 \($link_size\)
156        echo " "
157    fi    fi
158  fi  fi
159    
160  if [ $do1 = yes -a $do2 = yes ] ; then  # Locale-specific tests, provided that either the "fr_FR" or the "french"
161    echo " "  # locale is available. The former is the Unix-like standard; the latter is
162    echo "The two main tests ran OK"  # for Windows.
   echo " "  
 fi  
   
 # Locale-specific tests, provided the "fr" locale is available  
163    
164  if [ $do3 = yes ] ; then  if [ $do3 = yes ] ; then
165    locale -a | grep '^fr$' >/dev/null    locale -a | grep '^fr_FR$' >/dev/null
166    if [ $? -eq 0 ] ; then    if [ $? -eq 0 ] ; then
167      echo "Testing locale-specific features (using 'fr' locale)"      locale=fr_FR
168      ./pcretest $testdata/testinput3 testtry      infile=$testdata/testinput3
169        outfile=$testdata/testoutput3
170      else
171        locale -a | grep '^french$' >/dev/null
172        if [ $? -eq 0 ] ; then
173          locale=french
174          sed 's/fr_FR/french/' $testdata/testinput3 >test3input
175          sed 's/fr_FR/french/' $testdata/testoutput3 >test3output
176          infile=test3input
177          outfile=test3output
178        else
179          locale=
180        fi
181      fi
182    
183      if [ "$locale" != "" ] ; then
184        echo "Test 3: locale-specific features (using '$locale' locale)"
185        $valgrind ./pcretest -q $infile testtry
186      if [ $? = 0 ] ; then      if [ $? = 0 ] ; then
187        $cf testtry $testdata/testoutput3        $cf $outfile testtry
188        if [ $? != 0 ] ; then        if [ $? != 0 ] ; then
189          echo " "          echo " "
190          echo "Locale test did not run entirely successfully."          echo "Locale test did not run entirely successfully."
191          echo "This usually means that there is a problem with the locale"          echo "This usually means that there is a problem with the locale"
192          echo "settings rather than a bug in PCRE."          echo "settings rather than a bug in PCRE."
193        else        else
194        echo "Locale test ran OK"        echo "OK"
195        fi        fi
       echo " "  
196      else exit 1      else exit 1
197      fi      fi
198    else    else
199      echo "Cannot test locale-specific features - 'fr' locale not found,"      echo "Cannot test locale-specific features - neither the 'fr_FR' nor the"
200      echo "or the \"locale\" command is not available to check for it."      echo "'french' locale exists, or the \"locale\" command is not available"
201      echo " "      echo "to check for them."
202        echo " "
203    fi    fi
204  fi  fi
205    
206  # Additional tests for UTF8 support  # Additional tests for UTF8 support
207    
208  if [ $do4 = yes ] ; then  if [ $do4 = yes ] ; then
209    echo "Testing UTF-8 support (Perl compatible)"    echo "Test 4: UTF-8 support (Perl compatible)"
210    ./pcretest $testdata/testinput4 testtry    $valgrind ./pcretest -q $testdata/testinput4 testtry
211    if [ $? = 0 ] ; then    if [ $? = 0 ] ; then
212      $cf testtry $testdata/testoutput4      $cf $testdata/testoutput4 testtry
213      if [ $? != 0 ] ; then exit 1; fi      if [ $? != 0 ] ; then exit 1; fi
214    else exit 1    else exit 1
215    fi    fi
216    echo "UTF8 test ran OK"    echo "OK"
   echo " "  
217  fi  fi
218    
219  if [ $do5 = yes ] ; then  if [ $do5 = yes ] ; then
220    echo "Testing API and internals for UTF-8 support (not Perl compatible)"    if [ "$link_size" = "2" ] ; then
221    ./pcretest $testdata/testinput5 testtry      echo "Test 5: API and internals for UTF-8 support (not Perl compatible)"
222        $valgrind ./pcretest -q $testdata/testinput5 testtry
223        if [ $? = 0 ] ; then
224          $cf $testdata/testoutput5 testtry
225          if [ $? != 0 ] ; then exit 1; fi
226        else exit 1
227        fi
228        echo "OK"
229      else
230        echo Test 5 skipped for link size other than 2 \($link_size\)
231        echo " "
232      fi
233    fi
234    
235    if [ $do6 = yes ] ; then
236      if [ "$link_size" = "2" ] ; then
237        echo "Test 6: Unicode property support"
238        $valgrind ./pcretest -q $testdata/testinput6 testtry
239        if [ $? = 0 ] ; then
240          $cf $testdata/testoutput6 testtry
241          if [ $? != 0 ] ; then exit 1; fi
242        else exit 1
243        fi
244        echo "OK"
245      else
246        echo Test 6 skipped for link size other than 2 \($link_size\)
247        echo " "
248      fi
249    fi
250    
251    # Tests for DFA matching support
252    
253    if [ $do7 = yes ] ; then
254      echo "Test 7: DFA matching"
255      $valgrind ./pcretest -q -dfa $testdata/testinput7 testtry
256      if [ $? = 0 ] ; then
257        $cf $testdata/testoutput7 testtry
258        if [ $? != 0 ] ; then exit 1; fi
259      else exit 1
260      fi
261      echo "OK"
262    fi
263    
264    if [ $do8 = yes ] ; then
265      echo "Test 8: DFA matching with UTF-8"
266      $valgrind ./pcretest -q -dfa $testdata/testinput8 testtry
267      if [ $? = 0 ] ; then
268        $cf $testdata/testoutput8 testtry
269        if [ $? != 0 ] ; then exit 1; fi
270      else exit 1
271      fi
272      echo "OK"
273    fi
274    
275    if [ $do9 = yes ] ; then
276      echo "Test 9: DFA matching with Unicode properties"
277      $valgrind ./pcretest -q -dfa $testdata/testinput9 testtry
278    if [ $? = 0 ] ; then    if [ $? = 0 ] ; then
279      $cf testtry $testdata/testoutput5      $cf $testdata/testoutput9 testtry
280      if [ $? != 0 ] ; then exit 1; fi      if [ $? != 0 ] ; then exit 1; fi
281    else exit 1    else exit 1
282    fi    fi
283    echo "UTF8 internals test ran OK"    echo "OK"
   echo " "  
284  fi  fi
285    
286  # End  # End

Legend:
Removed from v.63  
changed lines
  Added in v.159

webmaster@exim.org
ViewVC Help
Powered by ViewVC 1.1.12