2014-05-13 13:20:03 +02:00
|
|
|
#! /bin/sh
|
|
|
|
|
2014-08-10 18:09:24 +02:00
|
|
|
# This is a script for the use of PCRE2 maintainers. It configures and rebuilds
|
2014-05-13 13:20:03 +02:00
|
|
|
# PCRE2 with a variety of configuration options, and in each case runs the
|
|
|
|
# tests to ensure that all goes well. Every possible combination would take far
|
|
|
|
# too long, so we use a representative sample. This script should be run in the
|
|
|
|
# PCRE2 source directory.
|
|
|
|
|
2014-08-10 18:09:24 +02:00
|
|
|
# While debugging, it is sometimes useful to be able to cut out some of the
|
|
|
|
# tests, in order to run those that are giving errors. The following options
|
|
|
|
# do this:
|
|
|
|
#
|
2015-04-15 18:12:51 +02:00
|
|
|
# -noasan skip the test that uses -fsanitize=address
|
2015-05-17 18:11:40 +02:00
|
|
|
# -nousan skip the test that uses -fsanitize=undefined
|
|
|
|
# -nodebug skip the test that uses --enable-debug
|
2014-08-10 18:09:24 +02:00
|
|
|
# -nojit skip JIT tests
|
|
|
|
# -nomain skip the main set of tests
|
|
|
|
# -notmp skip the test in a temporary directory
|
|
|
|
# -novalgrind skip the valgrind tests
|
|
|
|
|
|
|
|
# The -v option causes a call to 'pcre2test -C' to happen for each
|
|
|
|
# configuration.
|
|
|
|
|
|
|
|
# Some of the tests are automatically skipped when PCRE2 is built with non-Unix
|
|
|
|
# newline recognition because they don't work. I am hoping to reduce this as
|
|
|
|
# much as possible in due course.
|
|
|
|
|
2015-04-15 18:12:51 +02:00
|
|
|
useasan=1
|
2015-05-17 18:11:40 +02:00
|
|
|
useusan=1
|
|
|
|
usedebug=1
|
2014-08-10 18:09:24 +02:00
|
|
|
usejit=1
|
|
|
|
usemain=1
|
|
|
|
usetmp=1
|
|
|
|
usevalgrind=1
|
|
|
|
verbose=0
|
2014-05-13 13:20:03 +02:00
|
|
|
|
2014-08-10 18:09:24 +02:00
|
|
|
while [ $# -gt 0 ] ; do
|
|
|
|
case $1 in
|
2015-04-15 18:12:51 +02:00
|
|
|
-noasan) useasan=0;;
|
2015-05-17 18:11:40 +02:00
|
|
|
-nousan) useusan=0;;
|
|
|
|
-nodebug) usedebug=0;;
|
2014-08-10 18:09:24 +02:00
|
|
|
-nojit) usejit=0;;
|
|
|
|
-nomain) usemain=0;;
|
|
|
|
-notmp) usetmp=0;;
|
|
|
|
-novalgrind) usevalgrind=0;;
|
|
|
|
-v) verbose=1;;
|
|
|
|
*) echo "Unknown option '$1'"; exit 1;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
2014-05-13 13:20:03 +02:00
|
|
|
|
|
|
|
# This is in case the caller has set aliases (as I do - PH)
|
|
|
|
|
|
|
|
unset cp ls mv rm
|
|
|
|
|
|
|
|
# This is a temporary directory for testing out-of-line builds
|
|
|
|
|
2014-08-10 18:09:24 +02:00
|
|
|
tmp=/tmp/pcre2testing
|
2014-05-13 13:20:03 +02:00
|
|
|
|
|
|
|
# Don't bother with compiler optimization for most tests; it just slows down
|
2014-08-10 18:09:24 +02:00
|
|
|
# compilation a lot (and running the tests themselves is quick). However, one
|
|
|
|
# special test turns optimization on, because it can provoke some compiler
|
2014-05-13 13:20:03 +02:00
|
|
|
# warnings.
|
|
|
|
|
2014-11-21 13:19:37 +01:00
|
|
|
CFLAGS="-g"
|
|
|
|
OFLAGS="-O0"
|
2014-08-10 18:09:24 +02:00
|
|
|
ISGCC=0
|
2014-05-13 13:20:03 +02:00
|
|
|
|
|
|
|
# If the compiler is gcc, add a lot of warning switches.
|
|
|
|
|
2014-11-18 19:32:12 +01:00
|
|
|
cc --version >/tmp/pcre2ccversion 2>/dev/null
|
|
|
|
if [ $? -eq 0 ] && grep GCC /tmp/pcre2ccversion >/dev/null; then
|
2014-08-10 18:09:24 +02:00
|
|
|
ISGCC=1
|
2014-05-13 13:20:03 +02:00
|
|
|
CFLAGS="$CFLAGS -Wall"
|
|
|
|
CFLAGS="$CFLAGS -Wno-overlength-strings"
|
|
|
|
CFLAGS="$CFLAGS -Wpointer-arith"
|
|
|
|
CFLAGS="$CFLAGS -Wwrite-strings"
|
|
|
|
CFLAGS="$CFLAGS -Wundef -Wshadow"
|
|
|
|
CFLAGS="$CFLAGS -Wmissing-field-initializers"
|
2014-08-10 18:09:24 +02:00
|
|
|
CFLAGS="$CFLAGS -Wunused-parameter"
|
2014-05-13 13:20:03 +02:00
|
|
|
CFLAGS="$CFLAGS -Wextra -Wformat"
|
|
|
|
CFLAGS="$CFLAGS -Wbad-function-cast"
|
|
|
|
CFLAGS="$CFLAGS -Wmissing-declarations"
|
|
|
|
CFLAGS="$CFLAGS -Wnested-externs"
|
|
|
|
CFLAGS="$CFLAGS -pedantic"
|
|
|
|
CFLAGS="$CFLAGS -Wuninitialized"
|
|
|
|
CFLAGS="$CFLAGS -Wmissing-prototypes"
|
|
|
|
CFLAGS="$CFLAGS -Wstrict-prototypes"
|
|
|
|
fi
|
2014-11-18 19:32:12 +01:00
|
|
|
rm -f /tmp/pcre2ccversion
|
2014-05-13 13:20:03 +02:00
|
|
|
|
|
|
|
# This function runs a single test with the set of configuration options that
|
2014-10-16 18:22:44 +02:00
|
|
|
# are in $opts. The source directory must be set in srcdir. The function must
|
2014-11-21 13:19:37 +01:00
|
|
|
# be defined as "runtest()" not "function runtest()" in order to run on
|
2014-10-16 18:22:44 +02:00
|
|
|
# Solaris.
|
2014-05-13 13:20:03 +02:00
|
|
|
|
2014-10-16 18:22:44 +02:00
|
|
|
runtest()
|
2014-05-13 13:20:03 +02:00
|
|
|
{
|
2014-10-15 17:57:49 +02:00
|
|
|
rm -f $srcdir/pcre2test $srcdir/pcre2grep $srcdir/pcre2_jit_test
|
2014-05-13 13:20:03 +02:00
|
|
|
testcount=`expr $testcount + 1`
|
|
|
|
|
|
|
|
if [ "$opts" = "" ] ; then
|
|
|
|
echo "[$testcount/$testtotal] Configuring with: default settings"
|
|
|
|
else
|
|
|
|
echo "[$testcount/$testtotal] Configuring with:"
|
|
|
|
echo " $opts"
|
|
|
|
fi
|
|
|
|
|
2014-08-10 18:09:24 +02:00
|
|
|
CFLAGS="$CFLAGS" \
|
2014-05-13 13:20:03 +02:00
|
|
|
$srcdir/configure $opts >/dev/null 2>teststderr
|
|
|
|
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo " "
|
2014-08-10 18:09:24 +02:00
|
|
|
echo "******** Error while configuring ********"
|
2014-05-13 13:20:03 +02:00
|
|
|
cat teststderr
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Making"
|
|
|
|
make -j >/dev/null 2>teststderr
|
|
|
|
if [ $? -ne 0 -o -s teststderr ]; then
|
|
|
|
echo " "
|
2014-08-10 18:09:24 +02:00
|
|
|
echo "******** Errors or warnings while making ********"
|
2014-05-13 13:20:03 +02:00
|
|
|
echo " "
|
|
|
|
cat teststderr
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $verbose -eq 1 ]; then
|
|
|
|
./pcre2test -C
|
|
|
|
fi
|
|
|
|
|
|
|
|
nl=`./pcre2test -C newline`
|
2014-10-15 17:57:49 +02:00
|
|
|
if [ "$nl" = "LF" -o "$nl" = "ANY" -o "$nl" = "ANYCRLF" ]; then
|
|
|
|
nlok=1
|
|
|
|
else
|
|
|
|
nlok=0
|
2014-11-21 13:19:37 +01:00
|
|
|
fi
|
|
|
|
|
2014-08-10 18:09:24 +02:00
|
|
|
./pcre2test -C jit >/dev/null
|
2014-05-13 13:20:03 +02:00
|
|
|
jit=$?
|
2014-10-17 17:52:57 +02:00
|
|
|
./pcre2test -C pcre2-8 >/dev/null
|
2014-10-15 17:57:49 +02:00
|
|
|
pcre2_8=$?
|
2014-05-13 13:20:03 +02:00
|
|
|
|
2014-10-15 17:57:49 +02:00
|
|
|
if [ $nlok -gt 0 ]; then
|
2015-05-17 18:11:40 +02:00
|
|
|
echo "Running PCRE2 library tests $withvalgrind"
|
2014-10-15 17:57:49 +02:00
|
|
|
$srcdir/RunTest $valgrind >teststdout 2>teststderr
|
|
|
|
if [ $? -ne 0 -o -s teststderr ]; then
|
2014-05-13 13:20:03 +02:00
|
|
|
echo " "
|
|
|
|
echo "**** Test failed ****"
|
2014-11-21 13:19:37 +01:00
|
|
|
cat teststderr
|
2014-10-15 17:57:49 +02:00
|
|
|
if [ -s teststdout ] ; then cat teststdout; fi
|
2014-05-13 13:20:03 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
else
|
2015-05-17 18:11:40 +02:00
|
|
|
echo "Skipping PCRE2 library tests: newline is $nl"
|
2014-05-13 13:20:03 +02:00
|
|
|
fi
|
|
|
|
|
2014-10-15 17:57:49 +02:00
|
|
|
if [ $nlok -gt 0 -a $pcre2_8 -gt 0 ]; then
|
2014-05-13 13:20:03 +02:00
|
|
|
echo "Running pcre2grep tests $withvalgrind"
|
|
|
|
$srcdir/RunGrepTest $valgrind >teststdout 2>teststderr
|
2014-10-15 17:57:49 +02:00
|
|
|
if [ $? -ne 0 -o -s teststderr ]; then
|
2014-05-13 13:20:03 +02:00
|
|
|
echo " "
|
|
|
|
echo "**** Test failed ****"
|
|
|
|
cat teststderr
|
|
|
|
cat teststdout
|
|
|
|
exit 1
|
|
|
|
fi
|
2014-10-15 17:57:49 +02:00
|
|
|
elif [ $nlok -gt 0 ]; then
|
|
|
|
echo "Skipping pcre2grep tests: 8-bit library not compiled"
|
2014-11-21 13:19:37 +01:00
|
|
|
else
|
2014-05-13 13:20:03 +02:00
|
|
|
echo "Skipping pcre2grep tests: newline is $nl"
|
|
|
|
fi
|
|
|
|
|
2014-11-18 19:32:12 +01:00
|
|
|
if [ "$jit" -gt 0 ]; then
|
2014-05-13 13:20:03 +02:00
|
|
|
echo "Running JIT regression tests $withvalgrind"
|
|
|
|
$cvalgrind $srcdir/pcre2_jit_test >teststdout 2>teststderr
|
2014-10-15 17:57:49 +02:00
|
|
|
if [ $? -ne 0 -o -s teststderr ]; then
|
2014-05-13 13:20:03 +02:00
|
|
|
echo " "
|
|
|
|
echo "**** Test failed ****"
|
|
|
|
cat teststderr
|
|
|
|
cat teststdout
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
else
|
2014-11-18 19:32:12 +01:00
|
|
|
echo "Skipping JIT regression tests: JIT is not enabled"
|
2014-05-13 13:20:03 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Update the total count whenever a new test is added; it is used to show
|
|
|
|
# progess as each test is run.
|
|
|
|
|
2015-05-17 18:11:40 +02:00
|
|
|
testtotal=`expr 20 \* $usemain + \
|
|
|
|
1 \* $usemain \* $usedebug + \
|
2014-08-10 18:09:24 +02:00
|
|
|
1 \* $usetmp + \
|
2015-04-15 18:12:51 +02:00
|
|
|
1 \* $ISGCC \* $usemain + \
|
|
|
|
1 \* $ISGCC \* $usemain \* $useasan + \
|
2015-05-17 18:11:40 +02:00
|
|
|
1 \* $ISGCC \* $usemain \* $useusan + \
|
2014-08-10 18:09:24 +02:00
|
|
|
13 \* $usejit + \
|
|
|
|
\( 3 + 2 \* $usejit \) \* $usevalgrind`
|
2014-05-13 13:20:03 +02:00
|
|
|
testcount=0
|
|
|
|
|
2014-08-10 18:09:24 +02:00
|
|
|
# This set of tests builds PCRE2 and runs the tests with a variety of configure
|
2014-05-13 13:20:03 +02:00
|
|
|
# options, in the current (source) directory. The empty configuration builds
|
|
|
|
# with all the default settings. As well as testing that these options work, we
|
|
|
|
# use --disable-shared or --disable-static after the default test (which builds
|
|
|
|
# both) to save a bit of time by building only one version of the library for
|
|
|
|
# the subsequent tests.
|
|
|
|
|
|
|
|
valgrind=
|
|
|
|
cvalgrind=
|
|
|
|
withvalgrind=
|
|
|
|
srcdir=.
|
|
|
|
export srcdir
|
|
|
|
|
|
|
|
# If gcc is in use, run a maximally configured test with -O2, because that can
|
2014-11-21 13:19:37 +01:00
|
|
|
# throw up warnings that are not detected with -O0. Then run a second test with
|
|
|
|
# -fsanitize=address, which also may throw up new warnings as well as checking
|
|
|
|
# things at runtime. Using -fsanitize=address increases the size of stack
|
|
|
|
# frames by a lot, so run this test with --disable-stack-for-recursion, as
|
2015-05-17 18:11:40 +02:00
|
|
|
# otherwise RunTest may fail on test 2. Finally, run another test using
|
|
|
|
# -fsanitize=undefined -std-gnu99 to check for runtime actions that are not
|
|
|
|
# well defined.
|
2014-05-13 13:20:03 +02:00
|
|
|
|
2014-08-10 18:09:24 +02:00
|
|
|
if [ $usejit -ne 0 ]; then
|
|
|
|
enable_jit=--enable-jit
|
|
|
|
else
|
|
|
|
enable_jit=
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $ISGCC -ne 0 -a $usemain -ne 0 ]; then
|
|
|
|
echo "---------- Maximally configured test with -O2 ----------"
|
2014-11-21 13:19:37 +01:00
|
|
|
SAVECFLAGS="$CFLAGS"
|
|
|
|
CFLAGS="-O2 $CFLAGS"
|
|
|
|
echo "CFLAGS=$CFLAGS"
|
2014-11-03 19:27:56 +01:00
|
|
|
opts="--disable-shared $enable_jit --enable-pcre2-16 --enable-pcre2-32"
|
2014-05-13 13:20:03 +02:00
|
|
|
runtest
|
2015-04-15 18:12:51 +02:00
|
|
|
if [ $useasan -ne 0 ]; then
|
|
|
|
echo "---------- Maximally configured test with -fsanitize=address ----------"
|
|
|
|
CFLAGS="$OFLAGS $SAVECFLAGS -fsanitize=address"
|
|
|
|
echo "CFLAGS=$CFLAGS"
|
|
|
|
opts="--disable-shared $enable_jit --disable-stack-for-recursion --enable-pcre2-16 --enable-pcre2-32"
|
|
|
|
runtest
|
|
|
|
fi
|
2015-05-17 18:11:40 +02:00
|
|
|
if [ $useusan -ne 0 ]; then
|
|
|
|
echo "------- Maximally configured test with -fsanitize=undefined -std=gnu99 -------"
|
|
|
|
CFLAGS="$OFLAGS $SAVECFLAGS -fsanitize=undefined -std=gnu99"
|
|
|
|
echo "CFLAGS=$CFLAGS"
|
|
|
|
opts="--disable-shared $enable_jit --disable-stack-for-recursion --enable-pcre2-16 --enable-pcre2-32"
|
|
|
|
runtest
|
|
|
|
fi
|
2014-11-21 13:19:37 +01:00
|
|
|
CFLAGS="$OFLAGS $SAVECFLAGS"
|
2014-05-13 13:20:03 +02:00
|
|
|
fi
|
|
|
|
|
2014-11-21 13:19:37 +01:00
|
|
|
echo "---------- CFLAGS for the remaining tests ----------"
|
|
|
|
echo "CFLAGS=$CFLAGS"
|
|
|
|
|
2014-08-10 18:09:24 +02:00
|
|
|
if [ $usemain -ne 0 ]; then
|
2015-05-17 18:11:40 +02:00
|
|
|
if [ $usedebug -ne 0 ]; then
|
|
|
|
echo "---------- Maximally configured test with --enable-debug ----------"
|
|
|
|
opts="--disable-shared $enable_jit --enable-pcre2-16 --enable-pcre2-32 --enable-debug"
|
|
|
|
runtest
|
|
|
|
fi
|
2015-04-24 13:14:47 +02:00
|
|
|
|
2014-08-10 18:09:24 +02:00
|
|
|
echo "---------- Non-JIT tests in the current directory ----------"
|
|
|
|
for opts in \
|
|
|
|
"" \
|
2014-11-03 19:27:56 +01:00
|
|
|
"--disable-static" \
|
|
|
|
"--disable-shared" \
|
|
|
|
"--disable-unicode --disable-stack-for-recursion --disable-shared" \
|
2014-08-10 18:09:24 +02:00
|
|
|
"--disable-stack-for-recursion --disable-shared" \
|
2014-11-03 19:27:56 +01:00
|
|
|
"--with-link-size=3 --disable-shared" \
|
|
|
|
"--disable-unicode --enable-rebuild-chartables --disable-shared" \
|
|
|
|
"--disable-unicode --enable-newline-is-any --disable-shared" \
|
|
|
|
"--disable-unicode --enable-newline-is-cr --disable-shared" \
|
|
|
|
"--disable-unicode --enable-newline-is-crlf --disable-shared" \
|
|
|
|
"--disable-unicode --enable-newline-is-anycrlf --enable-bsr-anycrlf --disable-shared" \
|
|
|
|
"--enable-newline-is-any --disable-stack-for-recursion --disable-static" \
|
|
|
|
"--disable-unicode --enable-pcre2-16" \
|
|
|
|
"--disable-unicode --enable-pcre2-16 --disable-stack-for-recursion --disable-shared" \
|
2014-10-17 17:52:57 +02:00
|
|
|
"--enable-pcre2-16 --disable-stack-for-recursion --disable-shared" \
|
2014-11-03 19:27:56 +01:00
|
|
|
"--disable-unicode --enable-pcre2-32" \
|
|
|
|
"--disable-unicode --enable-pcre2-32 --disable-stack-for-recursion --disable-shared" \
|
2014-10-17 17:52:57 +02:00
|
|
|
"--enable-pcre2-32 --disable-stack-for-recursion --disable-shared" \
|
2014-11-03 19:27:56 +01:00
|
|
|
"--disable-unicode --enable-pcre2-32 --enable-pcre2-16 --disable-shared" \
|
|
|
|
"--disable-unicode --enable-pcre2-32 --enable-pcre2-16 --disable-pcre2-8 --disable-shared"
|
2014-08-10 18:09:24 +02:00
|
|
|
do
|
|
|
|
runtest
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Now run the JIT tests unless disabled
|
|
|
|
|
|
|
|
if [ $usejit -ne 0 ]; then
|
|
|
|
echo "---------- JIT tests in the current directory ----------"
|
|
|
|
for opts in \
|
2014-11-03 19:27:56 +01:00
|
|
|
"--disable-unicode --enable-jit --disable-shared" \
|
2014-08-10 18:09:24 +02:00
|
|
|
"--enable-jit --disable-shared" \
|
2014-11-03 19:27:56 +01:00
|
|
|
"--enable-jit --with-link-size=3 --disable-shared" \
|
|
|
|
"--enable-jit --enable-pcre2-16 --disable-shared" \
|
|
|
|
"--disable-unicode --enable-jit --enable-pcre2-16 --disable-pcre2-8 --disable-shared" \
|
2014-10-17 17:52:57 +02:00
|
|
|
"--enable-jit --enable-pcre2-16 --disable-pcre2-8 --disable-shared" \
|
2014-11-03 19:27:56 +01:00
|
|
|
"--enable-jit --enable-pcre2-16 --with-link-size=3 --disable-shared" \
|
|
|
|
"--enable-jit --enable-pcre2-16 --with-link-size=4 --disable-shared" \
|
|
|
|
"--enable-jit --enable-pcre2-32 --disable-shared" \
|
|
|
|
"--disable-unicode --enable-jit --enable-pcre2-32 --disable-pcre2-8 --disable-shared" \
|
2014-10-17 17:52:57 +02:00
|
|
|
"--enable-jit --enable-pcre2-32 --disable-pcre2-8 --disable-shared" \
|
2014-11-03 19:27:56 +01:00
|
|
|
"--enable-jit --enable-pcre2-32 --with-link-size=4 --disable-shared" \
|
|
|
|
"--enable-jit --enable-pcre2-32 --enable-pcre2-16 --disable-pcre2-8 --enable-newline-is-anycrlf --enable-bsr-anycrlf --disable-shared"
|
2014-08-10 18:09:24 +02:00
|
|
|
do
|
|
|
|
runtest
|
|
|
|
done
|
|
|
|
fi
|
2014-05-13 13:20:03 +02:00
|
|
|
|
|
|
|
# Now re-run some of the tests under valgrind.
|
|
|
|
|
2014-08-10 18:09:24 +02:00
|
|
|
if [ $usevalgrind -ne 0 ]; then
|
|
|
|
echo "---------- Tests in the current directory using valgrind ----------"
|
|
|
|
valgrind=valgrind
|
|
|
|
cvalgrind="valgrind -q --smc-check=all"
|
|
|
|
withvalgrind="with valgrind"
|
|
|
|
|
|
|
|
for opts in \
|
2014-11-03 19:27:56 +01:00
|
|
|
"--disable-stack-for-recursion --disable-shared" \
|
2015-01-23 17:51:47 +01:00
|
|
|
"--with-link-size=3 --enable-pcre2-16 --enable-pcre2-32 --disable-shared" \
|
2014-11-03 19:27:56 +01:00
|
|
|
"--disable-unicode --disable-shared"
|
2014-08-10 18:09:24 +02:00
|
|
|
do
|
|
|
|
opts="--enable-valgrind $opts"
|
|
|
|
runtest
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ $usejit -ne 0 ]; then
|
|
|
|
for opts in \
|
2014-11-03 19:27:56 +01:00
|
|
|
"--enable-jit --disable-shared" \
|
|
|
|
"--enable-jit --enable-pcre2-16 --enable-pcre2-32"
|
2014-08-10 18:09:24 +02:00
|
|
|
do
|
|
|
|
opts="--enable-valgrind $opts"
|
|
|
|
runtest
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
fi
|
2014-05-13 13:20:03 +02:00
|
|
|
|
|
|
|
valgrind=
|
|
|
|
cvalgrind=
|
|
|
|
withvalgrind=
|
|
|
|
|
|
|
|
# Clean up the distribution and then do at least one build and test in a
|
|
|
|
# directory other than the source directory. It doesn't work unless the
|
|
|
|
# source directory is cleaned up first.
|
|
|
|
|
|
|
|
if [ -f Makefile ]; then
|
|
|
|
echo "Running 'make distclean'"
|
|
|
|
make distclean >/dev/null 2>&1
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo "** 'make distclean' failed"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2014-08-10 18:09:24 +02:00
|
|
|
echo "---------- Tests in the $tmp directory ----------"
|
2014-05-13 13:20:03 +02:00
|
|
|
srcdir=`pwd`
|
|
|
|
export srcdir
|
|
|
|
|
|
|
|
if [ ! -e $tmp ]; then
|
|
|
|
mkdir $tmp
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -d $tmp ]; then
|
|
|
|
echo "** Failed to create $tmp or it is not a directory"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd $tmp
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo "** Failed to cd to $tmp"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2014-08-10 18:09:24 +02:00
|
|
|
if [ $usetmp -ne 0 ]; then
|
|
|
|
for opts in \
|
2014-11-03 19:27:56 +01:00
|
|
|
"--disable-shared"
|
2014-08-10 18:09:24 +02:00
|
|
|
do
|
|
|
|
runtest
|
|
|
|
done
|
|
|
|
fi
|
2014-05-13 13:20:03 +02:00
|
|
|
|
|
|
|
echo "Removing $tmp"
|
|
|
|
|
|
|
|
rm -rf $tmp
|
|
|
|
|
|
|
|
echo "All done"
|
|
|
|
|
|
|
|
# End
|