summaryrefslogtreecommitdiff
path: root/RunTest.in
diff options
context:
space:
mode:
Diffstat (limited to 'RunTest.in')
-rwxr-xr-xRunTest.in101
1 files changed, 77 insertions, 24 deletions
diff --git a/RunTest.in b/RunTest.in
index f203ac7..5e945e1 100755
--- a/RunTest.in
+++ b/RunTest.in
@@ -15,6 +15,7 @@ do2=no
do3=no
do4=no
do5=no
+do6=no
while [ $# -gt 0 ] ; do
case $1 in
@@ -23,29 +24,57 @@ while [ $# -gt 0 ] ; do
3) do3=yes;;
4) do4=yes;;
5) do5=yes;;
+ 6) do6=yes;;
*) echo "Unknown test number $1"; exit 1;;
esac
shift
done
+if [ "@LINK_SIZE@" != "" -a "@LINK_SIZE@" != "-DLINK_SIZE=2" ] ; then
+ if [ $do2 = yes ] ; then
+ echo "Can't run test 2 with an internal link size other than 2"
+ exit 1
+ fi
+ if [ $do5 = yes ] ; then
+ echo "Can't run test 5 with an internal link size other than 2"
+ exit 1
+ fi
+ if [ $do6 = yes ] ; then
+ echo "Can't run test 6 with an internal link size other than 2"
+ exit 1
+ fi
+fi
+
if [ "@UTF8@" = "" ] ; then
if [ $do4 = yes ] ; then
- 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"
exit 1
fi
if [ $do5 = yes ] ; then
- 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"
+ exit 1
+ fi
+ if [ $do6 = yes ] ; then
+ echo "Can't run test 6 because UTF-8 support is not configured"
exit 1
fi
fi
-if [ $do1 = no -a $do2 = no -a $do3 = no -a $do4 = no -a\
- $do5 = no ] ; then
+if [ "@UCP@" = "" ] ; then
+ if [ $do6 = yes ] ; then
+ echo "Can't run test 6 because Unicode property support is not configured"
+ exit 1
+ fi
+fi
+
+if [ $do1 = no -a $do2 = no -a $do3 = no -a $do4 = no -a \
+ $do5 = no -a $do6 = no ] ; then
do1=yes
- do2=yes
+ do2=yes
do3=yes
if [ "@UTF8@" != "" ] ; then do4=yes; fi
if [ "@UTF8@" != "" ] ; then do5=yes; fi
+ if [ "@UTF8@" != "" -a "@UCP@" != "" ] ; then do6=yes; fi
fi
# Show which release
@@ -55,7 +84,7 @@ fi
# Primary test, Perl-compatible
if [ $do1 = yes ] ; then
- echo "Testing main functionality (Perl compatible)"
+ echo "Test 1: main functionality (Perl compatible)"
./pcretest $testdata/testinput1 testtry
if [ $? = 0 ] ; then
$cf testtry $testdata/testoutput1
@@ -68,13 +97,17 @@ fi
# PCRE tests that are not Perl-compatible - API & error tests, mostly
if [ $do2 = yes ] ; then
- echo "Testing API and error handling (not Perl compatible)"
- ./pcretest -i $testdata/testinput2 testtry
- if [ $? = 0 ] ; then
- $cf testtry $testdata/testoutput2
- if [ $? != 0 ] ; then exit 1; fi
- else exit 1
- fi
+ if [ "@LINK_SIZE@" = "" -o "@LINK_SIZE@" = "-DLINK_SIZE=2" ] ; then
+ echo "Test 2: API and error handling (not Perl compatible)"
+ ./pcretest -i $testdata/testinput2 testtry
+ if [ $? = 0 ] ; then
+ $cf testtry $testdata/testoutput2
+ if [ $? != 0 ] ; then exit 1; fi
+ else exit 1
+ fi
+ else
+ echo Test 2 skipped for link size other than 2 \(@LINK_SIZE@\)
+ fi
fi
if [ $do1 = yes -a $do2 = yes ] ; then
@@ -88,7 +121,7 @@ fi
if [ $do3 = yes ] ; then
locale -a | grep '^fr_FR$' >/dev/null
if [ $? -eq 0 ] ; then
- echo "Testing locale-specific features (using 'fr_FR' locale)"
+ echo "Test 3: locale-specific features (using 'fr_FR' locale)"
./pcretest $testdata/testinput3 testtry
if [ $? = 0 ] ; then
$cf testtry $testdata/testoutput3
@@ -113,7 +146,7 @@ fi
# Additional tests for UTF8 support
if [ $do4 = yes ] ; then
- echo "Testing UTF-8 support (Perl compatible)"
+ echo "Test 4: UTF-8 support (Perl compatible)"
./pcretest $testdata/testinput4 testtry
if [ $? = 0 ] ; then
$cf testtry $testdata/testoutput4
@@ -125,15 +158,35 @@ if [ $do4 = yes ] ; then
fi
if [ $do5 = yes ] ; then
- echo "Testing API and internals for UTF-8 support (not Perl compatible)"
- ./pcretest $testdata/testinput5 testtry
- if [ $? = 0 ] ; then
- $cf testtry $testdata/testoutput5
- if [ $? != 0 ] ; then exit 1; fi
- else exit 1
- fi
- echo "UTF8 internals test ran OK"
- echo " "
+ if [ "@LINK_SIZE@" = "" -o "@LINK_SIZE@" = "-DLINK_SIZE=2" ] ; then
+ echo "Test 5: API and internals for UTF-8 support (not Perl compatible)"
+ ./pcretest $testdata/testinput5 testtry
+ if [ $? = 0 ] ; then
+ $cf testtry $testdata/testoutput5
+ if [ $? != 0 ] ; then exit 1; fi
+ else exit 1
+ fi
+ echo "UTF8 internals test ran OK"
+ echo " "
+ else
+ echo Test 5 skipped for link size other than 2 \(@LINK_SIZE@\)
+ fi
+fi
+
+if [ $do6 = yes ] ; then
+ if [ "@LINK_SIZE@" = "" -o "@LINK_SIZE@" = "-DLINK_SIZE=2" ] ; then
+ echo "Test 6: Unicode property support"
+ ./pcretest $testdata/testinput6 testtry
+ if [ $? = 0 ] ; then
+ $cf testtry $testdata/testoutput6
+ if [ $? != 0 ] ; then exit 1; fi
+ else exit 1
+ fi
+ echo "Unicode properties test ran OK"
+ echo " "
+ else
+ echo Test 6 skipped for link size other than 2 \(@LINK_SIZE@\)
+ fi
fi
# End