Skip to content

Commit 7913dd1

Browse files
committed
Fix by review
1 parent 6e7587e commit 7913dd1

File tree

2 files changed

+7
-13
lines changed

2 files changed

+7
-13
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ ifdef ENABLE_GIS
1919
PG_CFLAGS += -DSQLITE_FDW_GIS_ENABLE
2020
GIS_TEST = postgis
2121
GIS_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)
2323
else
2424
GIS_TEST = nogis
2525
GIS_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)
2727
endif
2828

2929
# Tests for PostgreSQL data types support

test.sh

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,10 @@ while (( "$#" )); do
1919
shift;
2020
done
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;
3428
export REGRESS=;

0 commit comments

Comments
 (0)