| 132 |
echo "Test 1: main functionality (Perl compatible)" |
echo "Test 1: main functionality (Perl compatible)" |
| 133 |
$valgrind ./pcretest -q $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 |
| 137 |
else exit 1 |
else exit 1 |
| 138 |
fi |
fi |
| 146 |
echo "Test 2: API and error handling (not Perl compatible)" |
echo "Test 2: API and error handling (not Perl compatible)" |
| 147 |
$valgrind ./pcretest -q $testdata/testinput2 testtry |
$valgrind ./pcretest -q $testdata/testinput2 testtry |
| 148 |
if [ $? = 0 ] ; then |
if [ $? = 0 ] ; then |
| 149 |
$cf testtry $testdata/testoutput2 |
$cf $testdata/testoutput2 testtry |
| 150 |
if [ $? != 0 ] ; then exit 1; fi |
if [ $? != 0 ] ; then exit 1; fi |
| 151 |
else exit 1 |
else exit 1 |
| 152 |
fi |
fi |
| 184 |
echo "Test 3: locale-specific features (using '$locale' locale)" |
echo "Test 3: locale-specific features (using '$locale' locale)" |
| 185 |
$valgrind ./pcretest -q $infile testtry |
$valgrind ./pcretest -q $infile testtry |
| 186 |
if [ $? = 0 ] ; then |
if [ $? = 0 ] ; then |
| 187 |
$cf testtry $outfile |
$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." |
| 209 |
echo "Test 4: UTF-8 support (Perl compatible)" |
echo "Test 4: UTF-8 support (Perl compatible)" |
| 210 |
$valgrind ./pcretest -q $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 |
| 221 |
echo "Test 5: API and internals for UTF-8 support (not Perl compatible)" |
echo "Test 5: API and internals for UTF-8 support (not Perl compatible)" |
| 222 |
$valgrind ./pcretest -q $testdata/testinput5 testtry |
$valgrind ./pcretest -q $testdata/testinput5 testtry |
| 223 |
if [ $? = 0 ] ; then |
if [ $? = 0 ] ; then |
| 224 |
$cf testtry $testdata/testoutput5 |
$cf $testdata/testoutput5 testtry |
| 225 |
if [ $? != 0 ] ; then exit 1; fi |
if [ $? != 0 ] ; then exit 1; fi |
| 226 |
else exit 1 |
else exit 1 |
| 227 |
fi |
fi |
| 237 |
echo "Test 6: Unicode property support" |
echo "Test 6: Unicode property support" |
| 238 |
$valgrind ./pcretest -q $testdata/testinput6 testtry |
$valgrind ./pcretest -q $testdata/testinput6 testtry |
| 239 |
if [ $? = 0 ] ; then |
if [ $? = 0 ] ; then |
| 240 |
$cf testtry $testdata/testoutput6 |
$cf $testdata/testoutput6 testtry |
| 241 |
if [ $? != 0 ] ; then exit 1; fi |
if [ $? != 0 ] ; then exit 1; fi |
| 242 |
else exit 1 |
else exit 1 |
| 243 |
fi |
fi |
| 254 |
echo "Test 7: DFA matching" |
echo "Test 7: DFA matching" |
| 255 |
$valgrind ./pcretest -q -dfa $testdata/testinput7 testtry |
$valgrind ./pcretest -q -dfa $testdata/testinput7 testtry |
| 256 |
if [ $? = 0 ] ; then |
if [ $? = 0 ] ; then |
| 257 |
$cf testtry $testdata/testoutput7 |
$cf $testdata/testoutput7 testtry |
| 258 |
if [ $? != 0 ] ; then exit 1; fi |
if [ $? != 0 ] ; then exit 1; fi |
| 259 |
else exit 1 |
else exit 1 |
| 260 |
fi |
fi |
| 265 |
echo "Test 8: DFA matching with UTF-8" |
echo "Test 8: DFA matching with UTF-8" |
| 266 |
$valgrind ./pcretest -q -dfa $testdata/testinput8 testtry |
$valgrind ./pcretest -q -dfa $testdata/testinput8 testtry |
| 267 |
if [ $? = 0 ] ; then |
if [ $? = 0 ] ; then |
| 268 |
$cf testtry $testdata/testoutput8 |
$cf $testdata/testoutput8 testtry |
| 269 |
if [ $? != 0 ] ; then exit 1; fi |
if [ $? != 0 ] ; then exit 1; fi |
| 270 |
else exit 1 |
else exit 1 |
| 271 |
fi |
fi |
| 276 |
echo "Test 9: DFA matching with Unicode properties" |
echo "Test 9: DFA matching with Unicode properties" |
| 277 |
$valgrind ./pcretest -q -dfa $testdata/testinput9 testtry |
$valgrind ./pcretest -q -dfa $testdata/testinput9 testtry |
| 278 |
if [ $? = 0 ] ; then |
if [ $? = 0 ] ; then |
| 279 |
$cf testtry $testdata/testoutput9 |
$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 |