- BREWVER=5.8.8
# some permutations of tracing and envvar poisoning
+ - perl: 5.18.1_thr_mb
+ env:
+ - CLEANTEST=false
+ - POISON_ENV=true
+ - DBIC_TRACE=1
+ - DBIC_MULTICREATE_DEBUG=0
+ - BREWOPTS="-Duseithreads -Dusemorebits"
+ - BREWVER=5.18.1
+
- perl: 5.18
env:
- CLEANTEST=false
- POISON_ENV=true
+ - DBIC_TRACE_PROFILE=console
- perl: 5.18
env:
# ENVvars and set them to true and see if anything explodes
if [[ "$POISON_ENV" = "true" ]] ; then
for var in $(grep -P '\$ENV\{' -r lib/ | grep -oP 'DBIC_\w+' | sort -u | grep -v DBIC_TRACE) ; do
- export $var=1
+ if [[ -z "${!var}" ]] ; then
+ export $var=1
+ fi
done
export DBI_DSN="dbi:ODBC:server=NonexistentServerAddress"