diff options
Diffstat (limited to 'autotest.sh')
-rwxr-xr-x | autotest.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/autotest.sh b/autotest.sh index 584b5dc0bd8..fa15597bd55 100755 --- a/autotest.sh +++ b/autotest.sh @@ -143,6 +143,10 @@ function cleanup_config { if [ -f config/autotest-storage-swift.config.php ]; then rm config/autotest-storage-swift.config.php fi + # Remove autotest redis config + if [ -f config/redis.config.php ]; then + rm config/redis.config.php + fi # Remove mysqlmb4.config.php rm -f config/mysqlmb4.config.php } @@ -178,6 +182,10 @@ function execute_tests { fi cp tests/preseed-config.php config/config.php + if [ "$ENABLE_REDIS" == "true" ] ; then + cp tests/redis.config.php config/redis.config.php + fi + _DB=$DB # drop database |