Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-03-05 11:28:36 +0300
committerJoas Schilling <coding@schilljs.com>2019-03-05 11:28:36 +0300
commite18cc22ed9c95d39fcd153ad1725df43623a123d (patch)
tree7c694ced511eb3d36839b34775e95af12bb4d6d9 /autotest.sh
parent358c9e649bebdc82424b999e9941c37541e730ea (diff)
Fix database configuration
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'autotest.sh')
-rwxr-xr-xautotest.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/autotest.sh b/autotest.sh
index f0ceca62b40..974573a4c76 100755
--- a/autotest.sh
+++ b/autotest.sh
@@ -229,9 +229,9 @@ function execute_tests {
-e MYSQL_USER="$DATABASEUSER" \
-e MYSQL_PASSWORD=owncloud \
-e MYSQL_DATABASE="$DATABASENAME" \
- -d mysql:5.7
- --innodb_large_prefix=true
- --innodb_file_format=barracuda
+ -d mysql:5.7 \
+ --innodb_large_prefix=true \
+ --innodb_file_format=barracuda \
--innodb_file_per_table=true)
DATABASEHOST=$(docker inspect --format="{{.NetworkSettings.IPAddress}}" "$DOCKER_CONTAINER_ID")