From: Robert Bohne Date: Fri, 13 Dec 2013 15:37:46 +0000 (+0100) Subject: Increase oracle xe user process limit from 40 (default) to 150 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fa7907b0476a2aa2fc866ba6326cb49b379b027e;p=dbsrgits%2FDBIx-Class-Historic.git Increase oracle xe user process limit from 40 (default) to 150 --- diff --git a/maint/travis-ci_scripts/10_before_install.bash b/maint/travis-ci_scripts/10_before_install.bash index 1b57e6f..ce9128a 100755 --- a/maint/travis-ci_scripts/10_before_install.bash +++ b/maint/travis-ci_scripts/10_before_install.bash @@ -101,6 +101,12 @@ if [[ "$CLEANTEST" != "true" ]]; then done ### config oracle + SRV_ORA_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server + + # without this some of the more zealous tests can exhaust the amount + # of listeners and oracle is too slow to spin extras up :( + sudo bash -c "echo -e '\nprocesses=150' >> $SRV_ORA_HOME/config/scripts/init.ora" + EXPECT_ORA_SCRIPT=' spawn /etc/init.d/oracle-xe configure @@ -140,12 +146,11 @@ if [[ "$CLEANTEST" != "true" ]]; then # FIXME: I couldn't figure it out after 3 hours of headdesking, # would be nice to know the reason eventually run_or_err "Configuring OracleXE" "sudo $(which expect) -c '$EXPECT_ORA_SCRIPT' &>/tmp/ora_configure_10.2.log" - SRV_ORA_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server export DBICTEST_ORA_DSN=dbi:Oracle://localhost:1521/XE export DBICTEST_ORA_USER=dbic_test export DBICTEST_ORA_PASS=abc123456 - export DBICTEST_ORA_EXTRAUSER_DSN=dbi:Oracle://localhost:1521/XE + export DBICTEST_ORA_EXTRAUSER_DSN="$DBICTEST_ORA_DSN" export DBICTEST_ORA_EXTRAUSER_USER=dbic_test_extra export DBICTEST_ORA_EXTRAUSER_PASS=abc123456