File tree Expand file tree Collapse file tree 2 files changed +7
-13
lines changed
Expand file tree Collapse file tree 2 files changed +7
-13
lines changed Original file line number Diff line number Diff line change @@ -19,11 +19,11 @@ ifdef ENABLE_GIS
1919PG_CFLAGS += -DSQLITE_FDW_GIS_ENABLE
2020GIS_TEST = postgis
2121GIS_DEP_TESTS_DIR = with_gis_support
22- $(info There is PostGIS support for PostgreSQL SQLite FDW)
22+ $(info There is PostGIS support for SQLite FDW)
2323else
2424GIS_TEST = nogis
2525GIS_DEP_TESTS_DIR = without_gis_support
26- $(info There is NO PostGIS support for PostgreSQL SQLite FDW)
26+ $(info There is NO PostGIS support for SQLite FDW)
2727endif
2828
2929# Tests for PostgreSQL data types support
Original file line number Diff line number Diff line change @@ -19,16 +19,10 @@ while (( "$#" )); do
1919 shift ;
2020done
2121
22- [ " $ENABLE_GIS " == " 1 " ] && GIS_TEST= ' post ' || GIS_TEST= ' no ' ;
23- type_tests= " types/bitstring types/bool types/float4 types/float8 types/int4 types/int8 types/numeric types/ ${GIS_TEST} gis types/macaddr types/macaddr8 types/out_of_range types/timestamp types/uuid " ;
22+ # full composed test sequence, you can put your own test sequence here by example
23+ # export REGRESS="extra/sqlite_fdw_post .... ";
2424
25- [ " $ENABLE_GIS " == " 1" ] && GIS_DEP_TESTS_DIR=' with_gis_support' || GIS_DEP_TESTS_DIR=' without_gis_support' ;
26- gis_dep_tests=" $GIS_DEP_TESTS_DIR /type $GIS_DEP_TESTS_DIR /auto_import" ;
27-
28- # full composed test sequence, you can put your own test sequence here
29- export REGRESS=" extra/sqlite_fdw_post $type_tests extra/join extra/limit extra/aggregates extra/prepare extra/select_having extra/select extra/insert extra/update extra/encodings sqlite_fdw aggregate selectfunc $gis_dep_tests " ;
30-
31- make clean $1 ;
32- make $1 ;
33- make check $1 | tee make_check.out;
25+ make clean $@ ;
26+ make $@ ;
27+ make check $@ | tee make_check.out;
3428export REGRESS=;
You can’t perform that action at this time.
0 commit comments