12345678910111213141516171819202122 |
- #!/bin/bash
-
-
-
-
-
- configs[1]="mysql.phpunit.xml"
- 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'
-
- for i in "${configs[@]}"; do
- if [ -f "$i" ];
- then
- echo "RUNNING TESTS WITH CONFIG $i"
- phpunit -c "$i" "$@"
- fi;
- done
|