File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -382,6 +382,8 @@ matrix:
382382 env : DB=MySQL VERSION=4.1.22 CONC_DB=MariaDB CONC_VERSION=3.0.6
383383 - perl : " 5.22"
384384 env : DB=MySQL VERSION=4.1.22 SERVER=system
385+ - perl : " 5.22"
386+ env : SERVER=none
385387
386388addons :
387389 apt :
@@ -505,6 +507,9 @@ before_script:
505507 elif [ -n "$CONC_DB" ] || [ "$SERVER" = "system" ]; then
506508 export DBD_MARIADB_TESTHOST=127.0.0.1 ;
507509 export DBD_MARIADB_TESTPORT=3306 ;
510+ elif [ "$SERVER" = "none" ]; then
511+ export DBD_MARIADB_TESTHOST=none ;
512+ export DBD_MARIADB_TESTPORT=1 ;
508513 fi
509514 - if [ -n "$CONC_DB" ]; then
510515 if [ -x $HOME/conc/bin/mysql_config ]; then
@@ -528,7 +533,9 @@ before_script:
528533 fi
529534 - export HARNESS_OPTIONS=j4
530535 - export RELEASE_TESTING=1
531- - export CONNECTION_TESTING=1
536+ - if [ "$SERVER" != "none" ]; then
537+ export CONNECTION_TESTING=1 ;
538+ fi
532539
533540script :
534541 - make realclean || true
You can’t perform that action at this time.
0 commit comments