"Fix" test_ddl_deparse regress test schedule

MSVC is not smart enough to figure it out, so dumb down the Makefile and
remove the schedule file.

Also add a .gitignore file.

Author: Michael Paquier
This commit is contained in:
Alvaro Herrera 2015-05-12 12:12:39 -03:00
parent e8c19263e4
commit 007c932e5a
3 changed files with 24 additions and 22 deletions

View File

@ -0,0 +1 @@
/results/

View File

@ -1,10 +1,32 @@
# src/test/modules/test_ddl_deparse/Makefile
MODULES = test_ddl_deparse
PGFILEDESC = "test_ddl_deparse - regression testing for DDL deparsing"
EXTENSION = test_ddl_deparse
DATA = test_ddl_deparse--1.0.sql
REGRESS = --schedule=$(srcdir)/regress_schedule
# test_ddl_deparse must be first
REGRESS = test_ddl_deparse \
create_extension \
create_schema \
create_type \
create_conversion \
create_domain \
create_sequence_1 \
create_table \
alter_table \
create_view \
create_trigger \
create_rule \
comment_on \
alter_function \
alter_sequence \
alter_type_enum \
opfamily \
defprivs \
matviews
EXTRA_INSTALL = contrib/pg_stat_statements
ifdef USE_PGXS

View File

@ -1,21 +0,0 @@
# must be first
test: test_ddl_deparse
test: create_extension
test: create_schema
test: create_type
test: create_conversion
test: create_domain
test: create_sequence_1
test: create_table
test: alter_table
test: create_view
test: create_trigger
test: create_rule
test: comment_on
test: alter_function
test: alter_sequence
test: alter_type_enum
test: opfamily
test: defprivs
test: matviews