X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=maint%2Ftravis-ci_scripts%2F40_script.bash;h=21a1d8451233aa841b8b4294ca27d4f38026899f;hb=e52712a81216ad371188391dc3184dee9ba4f0ab;hp=0ad3961427f9b59f2e282019ebdeb6a7b46ddec9;hpb=f207111d67e64351cbae6f9c8c092735c681df1d;p=dbsrgits%2FDBIx-Class.git diff --git a/maint/travis-ci_scripts/40_script.bash b/maint/travis-ci_scripts/40_script.bash index 0ad3961..21a1d84 100755 --- a/maint/travis-ci_scripts/40_script.bash +++ b/maint/travis-ci_scripts/40_script.bash @@ -1,10 +1,11 @@ #!/bin/bash +# this file is executed in a subshell - set up the common stuff source maint/travis-ci_scripts/common.bash -if [[ -n "$SHORT_CIRCUIT_SMOKE" ]] ; then return ; fi + +if [[ -n "$SHORT_CIRCUIT_SMOKE" ]] ; then exit 0 ; fi run_harness_tests() { - local -x HARNESS_TIMER=1 local -x HARNESS_OPTIONS=c:j$NUMTHREADS make test 2> >(tee "$TEST_STDERR_LOG") } @@ -15,7 +16,7 @@ if [[ "$CLEANTEST" = "true" ]] ; then run_or_err "Prepare blib" "make pure_all" run_harness_tests else - PROVECMD="prove --timer -lrswj$NUMTHREADS t xt" + PROVECMD="prove -lrswj$NUMTHREADS xt t" # FIXME - temporary, until Package::Stash is fixed if perl -M5.010 -e 1 &>/dev/null ; then @@ -27,24 +28,27 @@ else fi TEST_T1=$SECONDS -if [[ -z "$DBICTRACE" ]] && [[ -z "$POISON_ENV" ]] && [[ -s "$TEST_STDERR_LOG" ]] ; then +if [[ -z "$DBIC_TRACE" ]] && [[ -z "$DBIC_MULTICREATE_DEBUG" ]] && [[ -s "$TEST_STDERR_LOG" ]] ; then STDERR_LOG_SIZE=$(wc -l < "$TEST_STDERR_LOG") - echo - echo "Test run produced $STDERR_LOG_SIZE lines of output on STDERR:" - echo "=============================================================" - cat "$TEST_STDERR_LOG" - echo "=============================================================" - echo "End of test run STDERR output ($STDERR_LOG_SIZE lines)" - echo - - if [[ -n "$INSTALLDEPS_SKIPPED_TESTLIST" ]] ; then - echo "The following non-essential tests were skipped during deps installation" + # prepend STDERR log + POSTMORTEM="$( + echo + echo "Test run produced $STDERR_LOG_SIZE lines of output on STDERR:" echo "=============================================================" - echo "$INSTALLDEPS_SKIPPED_TESTLIST" + cat "$TEST_STDERR_LOG" echo "=============================================================" + echo "End of test run STDERR output ($STDERR_LOG_SIZE lines)" echo - fi + echo + )$POSTMORTEM" fi +echo +echo "${POSTMORTEM:- \o/ No notable smoke run issues \o/ }" +echo echo "$(tstamp) Testing took a total of $(( $TEST_T1 - $TEST_T0 ))s" +if [[ -n "$INSTALLDEPS_OUT" ]] ; then + echo "$(tstamp) Full dep install log at $(/usr/bin/nopaste -q -s Shadowcat -d DepInstall <<< "$INSTALLDEPS_OUT")" +fi +echo