Merge pull request #3977 from owncloud/enable_oracle_in_autotests

enable oracle testing by default
This commit is contained in:
Thomas Müller 2013-07-08 13:44:12 -07:00
commit 244d376a16
2 changed files with 3 additions and 4 deletions

@ -1 +1 @@
Subproject commit e312294ef62873df2b8c02e774f9dfe1b7fbc38d
Subproject commit 217626723957161191572ea50172a3943c30696d

View File

@ -143,11 +143,10 @@ EOF
#
if [ -z "$1" ]
then
execute_tests "sqlite"
execute_tests 'sqlite'
execute_tests 'mysql'
execute_tests 'pgsql'
# we will add oci as soon as it's stable
#execute_tests 'oci'
execute_tests 'oci'
else
execute_tests $1 $2 $3
fi