Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
0d38b73f
Unverified
Commit
0d38b73f
authored
Apr 19, 2018
by
Sergei Morozov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed hard-coded configuration filenames from the test runner
parent
f7826870
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
17 deletions
+4
-17
run-all.sh
run-all.sh
+4
-17
No files found.
run-all.sh
View file @
0d38b73f
#!/bin/bash
#!/bin/bash
# This script is a small convenience wrapper for running the doctrine testsuite against a large bunch of databases.
# This script is a small convenience wrapper for running the doctrine testsuite against a large bunch of databases.
# Just create the phpunit.xmls as described in the array below and configure the specific files <php /> section
# Create *.phpunit.xml files and specify database connection parameters in the <php /> section.
# to connect to that database. Just omit a file if you dont have that database and the tests will be skipped.
configs[1]
=
"mysql.phpunit.xml"
for
i
in
*
.phpunit.xml
;
do
configs[2]
=
'postgres.phpunit.xml'
configs[3]
=
'sqlite.phpunit.xml'
configs[4]
=
'oracle.phpunit.xml'
configs[5]
=
'db2.phpunit.xml'
configs[6]
=
'pdo-ibm.phpunit.xml'
configs[7]
=
'sqlsrv.phpunit.xml'
configs[8]
=
'sqlanywhere.phpunit.xml'
for
i
in
"
${
configs
[@]
}
"
;
do
if
[
-f
"
$i
"
]
;
then
echo
"RUNNING TESTS WITH CONFIG
$i
"
echo
"RUNNING TESTS WITH CONFIG
$i
"
phpunit
-c
"
$i
"
"
$@
"
vendor/bin/phpunit
-c
"
$i
"
"
$@
"
fi
;
done
done
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment