mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-04 00:30:59 -05:00
13 lines
283 B
Bash
13 lines
283 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
SCRIPTS="
|
||
|
tests/testdata/provider/testdata_pg.sql
|
||
|
tests/testdata/provider/testdata_pg_reltests.sql
|
||
|
tests/testdata/provider/testdata_pg_vectorjoin.sql
|
||
|
"
|
||
|
|
||
|
createdb qgis_test || exit 1
|
||
|
for f in ${SCRIPTS}; do
|
||
|
psql -f $f qgis_test --set ON_ERROR_STOP=1 || exit 1
|
||
|
done
|