updated options in testing.conf

This commit is contained in:
Andreas Steffen
2010-05-02 11:47:24 +02:00
parent 34f92dcfba
commit 4c9b5e742a
2 changed files with 11 additions and 5 deletions
+7 -2
View File
@@ -206,9 +206,9 @@ then
echo -n " --enable-leak-detective" >> $INSTALLSHELL
fi
if [ "$USE_LOAD_TESTS" = "yes" ]
if [ "$USE_LOAD_TESTER" = "yes" ]
then
echo -n " --enable-load-tests" >> $INSTALLSHELL
echo -n " --enable-load-tester" >> $INSTALLSHELL
fi
if [ "$USE_TEST_VECTORS" = "yes" ]
@@ -226,6 +226,11 @@ then
echo -n " --enable-socket-default" >> $INSTALLSHELL
fi
if [ "$USE_SOCKET_DYNAMIC" = "yes" ]
then
echo -n " --enable-socket-dynamic" >> $INSTALLSHELL
fi
if [ "$USE_DHCP" = "yes" ]
then
echo -n " --enable-dhcp" >> $INSTALLSHELL
+4 -3
View File
@@ -19,7 +19,7 @@ UMLTESTDIR=~/strongswan-testing
# Bzipped kernel sources
# (file extension .tar.bz2 required)
KERNEL=$UMLTESTDIR/linux-2.6.33.1.tar.bz2
KERNEL=$UMLTESTDIR/linux-2.6.33.3.tar.bz2
# Extract kernel version
KERNELVERSION=`basename $KERNEL .tar.bz2 | sed -e 's/linux-//'`
@@ -28,7 +28,7 @@ KERNELVERSION=`basename $KERNEL .tar.bz2 | sed -e 's/linux-//'`
KERNELCONFIG=$UMLTESTDIR/.config-2.6.33
# Bzipped uml patch for kernel
#UMLPATCH=$UMLTESTDIR/aead_init.patch.bz2
UMLPATCH=$UMLTESTDIR/aes_gmac.patch.bz2
# Bzipped source of strongSwan
STRONGSWAN=$UMLTESTDIR/strongswan-4.4.0.tar.bz2
@@ -49,10 +49,11 @@ USE_BLOWFISH="yes"
USE_KERNEL_PFKEY="yes"
USE_INTEGRITY_TEST="yes"
USE_LEAK_DETECTIVE="yes"
USE_LOAD_TESTS="yes"
USE_LOAD_TESTER="yes"
USE_TEST_VECTORS="yes"
USE_GCRYPT="yes"
USE_SOCKET_DEFAULT="yes"
USE_SOCKET_DYNAMIC="yes"
USE_DHCP="yes"
USE_FARP="yes"