From 177ffdfb84601d0b49ff4a016fce194389bd9da6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=B8=D1=85=D0=B0=D0=B8=D0=BB?= Date: Tue, 17 Dec 2024 14:33:57 +0300 Subject: [PATCH] Fix general test sequence comments to better style --- test.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test.sh b/test.sh index 53bca840..9dc558f7 100755 --- a/test.sh +++ b/test.sh @@ -10,7 +10,8 @@ sqlite3 "$testdir/core.db" < sql/init_data/init_core.sql; sqlite3 "$testdir/common.db" < sql/init_data/init.sql; sqlite3 "$testdir/selectfunc.db" < sql/init_data/init_selectfunc.sql; -#export REGRESS=' YOUR TESTS HERE'; +# full test sequence, you can put your own test sequence here +#export REGRESS='extra/sqlite_fdw_post types/bitstring types/bool types/float4 types/float8 types/int4 types/int8 types/numeric types/macaddr types/macaddr8 types/out_of_range types/timestamp types/uuid extra/join extra/limit extra/aggregates extra/prepare extra/select_having extra/select extra/insert extra/update extra/encodings sqlite_fdw type aggregate selectfunc'; make clean $1; make $1; make check $1 | tee make_check.out;