/[pcre]/code/trunk/RunTest
ViewVC logotype

Diff of /code/trunk/RunTest

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

code/trunk/RunTest.in revision 53 by nigel, Sat Feb 24 21:39:42 2007 UTC code/trunk/RunTest revision 139 by ph10, Fri Mar 30 13:41:47 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    ./pcretest -C | ./pcregrep 'No UTF-8 support' >/dev/null
23    utf8=$?
24    
25  # Select which tests to run; if no selection, run all  ./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
# Line 16  do3=no Line 34  do3=no
34  do4=no  do4=no
35  do5=no  do5=no
36  do6=no  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 23  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;;      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    if [ $do5 = yes ] ; then
64      echo "Can't run test 5 because UFT8 support is not configured"      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
75        echo "Can't run test 4 because UTF-8 support is not configured"
76        exit 1
77      fi
78      if [ $do5 = yes ] ; then
79        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
85      fi
86      if [ $do8 = yes ] ; then
87        echo "Can't run test 8 because UTF-8 support is not configured"
88      exit 1      exit 1
89    fi    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    if [ $do6 = yes ] ; then
98      echo "Can't run test 6 because UFT8 support is not configured"      echo "Can't run test 6 because Unicode property support is not configured"
99      exit 1      exit 1
100    fi    fi
101  fi    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 no specific tests were requested, select all that are relevant.
108    
109  if [ $do1 = no -a $do2 = no -a $do3 = no -a $do4 = no -a\  if [ $do1 = no -a $do2 = no -a $do3 = no -a $do4 = no -a \
110       $do5 = no -a $do6 = no ] ; then       $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    do4=yes    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@" != "" ] ; then do6=yes; fi    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 testtry $testdata/testoutput1
136      if [ $? != 0 ] ; then exit 1; fi      if [ $? != 0 ] ; then exit 1; fi
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 testtry $testdata/testoutput2
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  # Additional Perl-compatible tests for Perl 5.005's new features  # Locale-specific tests, provided the "fr_FR" locale is available.
161    # TODO: Try the locale name "french" instead - as used on Windows - but
162    # this will mean modifying the input and output data.
163    
164  if [ $do3 = yes ] ; then  if [ $do3 = yes ] ; then
165    echo "Testing Perl 5.005 features (Perl 5.005 compatible)"    locale -a | grep '^fr_FR$' >/dev/null
   ./pcretest $testdata/testinput3 testtry  
   if [ $? = 0 ] ; then  
     $cf testtry $testdata/testoutput3  
     if [ $? != 0 ] ; then exit 1; fi  
   else exit 1  
   fi  
 fi  
   
 if [ $do1 = yes -a $do2 = yes -a $do3 = yes ] ; then  
   echo " "  
   echo "The three main tests all ran OK"  
   echo " "  
 fi  
   
 # Locale-specific tests, provided the "fr" locale is available  
   
 if [ $do4 = yes ] ; then  
   locale -a | grep '^fr$' >/dev/null  
166    if [ $? -eq 0 ] ; then    if [ $? -eq 0 ] ; then
167      echo "Testing locale-specific features (using 'fr' locale)"      echo "Test 3: locale-specific features (using 'fr_FR' locale)"
168      ./pcretest $testdata/testinput4 testtry      $valgrind ./pcretest -q $testdata/testinput3 testtry
169      if [ $? = 0 ] ; then      if [ $? = 0 ] ; then
170        $cf testtry $testdata/testoutput4        $cf testtry $testdata/testoutput3
171        if [ $? != 0 ] ; then        if [ $? != 0 ] ; then
172          echo " "          echo " "
173          echo "Locale test did not run entirely successfully."          echo "Locale test did not run entirely successfully."
174          echo "This usually means that there is a problem with the locale"          echo "This usually means that there is a problem with the locale"
175          echo "settings rather than a bug in PCRE."          echo "settings rather than a bug in PCRE."
176        else        else
177        echo "Locale test ran OK"        echo "OK"
178        fi        fi
       echo " "  
179      else exit 1      else exit 1
180      fi      fi
181    else    else
182      echo "Cannot test locale-specific features - 'fr' locale not found,"      echo "Cannot test locale-specific features - 'fr_FR' locale not found,"
183      echo "or the \"locale\" command is not available to check for it."      echo "or the \"locale\" command is not available to check for it."
184      echo " "      echo " "
185    fi    fi
186  fi  fi
187    
188  # Additional tests for UTF8 support  # Additional tests for UTF8 support
189    
190  if [ $do5 = yes ] ; then  if [ $do4 = yes ] ; then
191    echo "Testing experimental, incomplete UTF8 support (Perl compatible)"    echo "Test 4: UTF-8 support (Perl compatible)"
192    ./pcretest $testdata/testinput5 testtry    $valgrind ./pcretest -q $testdata/testinput4 testtry
193    if [ $? = 0 ] ; then    if [ $? = 0 ] ; then
194      $cf testtry $testdata/testoutput5      $cf testtry $testdata/testoutput4
195      if [ $? != 0 ] ; then exit 1; fi      if [ $? != 0 ] ; then exit 1; fi
196    else exit 1    else exit 1
197    fi    fi
198    echo "UTF8 test ran OK"    echo "OK"
199    echo " "  fi
200    
201    if [ $do5 = yes ] ; then
202      if [ "$link_size" = "2" ] ; then
203        echo "Test 5: API and internals for UTF-8 support (not Perl compatible)"
204        $valgrind ./pcretest -q $testdata/testinput5 testtry
205        if [ $? = 0 ] ; then
206          $cf testtry $testdata/testoutput5
207          if [ $? != 0 ] ; then exit 1; fi
208        else exit 1
209        fi
210        echo "OK"
211      else
212        echo Test 5 skipped for link size other than 2 \($link_size\)
213        echo " "
214      fi
215  fi  fi
216    
217  if [ $do6 = yes ] ; then  if [ $do6 = yes ] ; then
218    echo "Testing API and internals for UTF8 support (not Perl compatible)"    if [ "$link_size" = "2" ] ; then
219    ./pcretest $testdata/testinput6 testtry      echo "Test 6: Unicode property support"
220        $valgrind ./pcretest -q $testdata/testinput6 testtry
221        if [ $? = 0 ] ; then
222          $cf testtry $testdata/testoutput6
223          if [ $? != 0 ] ; then exit 1; fi
224        else exit 1
225        fi
226        echo "OK"
227      else
228        echo Test 6 skipped for link size other than 2 \($link_size\)
229        echo " "
230      fi
231    fi
232    
233    # Tests for DFA matching support
234    
235    if [ $do7 = yes ] ; then
236      echo "Test 7: DFA matching"
237      $valgrind ./pcretest -q -dfa $testdata/testinput7 testtry
238      if [ $? = 0 ] ; then
239        $cf testtry $testdata/testoutput7
240        if [ $? != 0 ] ; then exit 1; fi
241      else exit 1
242      fi
243      echo "OK"
244    fi
245    
246    if [ $do8 = yes ] ; then
247      echo "Test 8: DFA matching with UTF-8"
248      $valgrind ./pcretest -q -dfa $testdata/testinput8 testtry
249      if [ $? = 0 ] ; then
250        $cf testtry $testdata/testoutput8
251        if [ $? != 0 ] ; then exit 1; fi
252      else exit 1
253      fi
254      echo "OK"
255    fi
256    
257    if [ $do9 = yes ] ; then
258      echo "Test 9: DFA matching with Unicode properties"
259      $valgrind ./pcretest -q -dfa $testdata/testinput9 testtry
260    if [ $? = 0 ] ; then    if [ $? = 0 ] ; then
261      $cf testtry $testdata/testoutput6      $cf testtry $testdata/testoutput9
262      if [ $? != 0 ] ; then exit 1; fi      if [ $? != 0 ] ; then exit 1; fi
263    else exit 1    else exit 1
264    fi    fi
265    echo "UTF8 internals test ran OK"    echo "OK"
   echo " "  
266  fi  fi
267    
268  # End  # End

Legend:
Removed from v.53  
changed lines
  Added in v.139

webmaster@exim.org
ViewVC Help
Powered by ViewVC 1.1.12