X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/2f8e0a5f6bc17ccd0749c0dc28f5da28da5d25a2..cd19f9a79c20f9c0c9d650a8aa21d9cc54a66620:/test/scripts/2620-Postgresql/2620 diff --git a/test/scripts/2620-Postgresql/2620 b/test/scripts/2620-Postgresql/2620 index 5d160774d..bad032b30 100644 --- a/test/scripts/2620-Postgresql/2620 +++ b/test/scripts/2620-Postgresql/2620 @@ -8,16 +8,21 @@ echo Starting DB server perl system 'DIR/bin.sys/initdb -D DIR/pgsql/data'; **** -sudo rm test-stdout +# +# I don not understand why, but the DB fails to start if this rm is present. +#sudo rm test-stdout +# +# Start the DB server background DIR/bin.sys/postgres -D DIR/pgsql/data -p PORT_N -k DIR/pgsql **** +# sleep 1 echo Waiting for DB server perl system 'DIR/bin.sys/pg_ctl -w -D DIR/pgsql/data status'; system 'createdb -h localhost -p PORT_N test'; -system 'psql -h localhost -p PORT_N -d test \ +system 'DIR/bin.sys/psql -h localhost -p PORT_N -d test \ -c "CREATE TABLE them ( name text, id text ); \ INSERT INTO them VALUES ( \'Philip Hazel\', \'ph10\' ); \ INSERT INTO them VALUES ( \'Aristotle\', \'aaaa\' ); \ @@ -28,6 +33,7 @@ system 'psql -h localhost -p PORT_N -d test \ INSERT INTO them VALUES ( CHR(39) || \'stquot\', \'quote1\' );" \ '; **** +# echo Populated DB server # # now, the tests