| # $PostgreSQL: pgsql/src/interfaces/ecpg/test/Makefile,v 1.77 2009/01/15 09:30:20 petere Exp $ |
| |
| subdir = src/interfaces/ecpg/test |
| top_builddir = ../../../.. |
| include $(top_builddir)/src/Makefile.global |
| |
| override CPPFLAGS := \ |
| -I$(top_builddir)/src/port \ |
| -I$(top_srcdir)/src/test/regress \ |
| -Wno-error \ |
| '-DHOST_TUPLE="$(host_tuple)"' \ |
| '-DMAKEPROG="$(MAKE)"' \ |
| '-DSHELLPROG="$(SHELL)"' \ |
| '-DDLSUFFIX="$(DLSUFFIX)"' \ |
| $(CPPFLAGS) |
| |
| # where to find psql for testing an existing installation |
| PSQLDIR = $(bindir) |
| |
| # default encoding |
| MULTIBYTE = SQL_ASCII |
| |
| # locale |
| NOLOCALE = |
| ifdef NO_LOCALE |
| NOLOCALE += --no-locale |
| endif |
| |
| ifneq ($(build_os),mingw32) |
| abs_builddir := $(shell pwd) |
| else |
| abs_builddir := $(shell pwd -W) |
| endif |
| |
| all install installdirs uninstall distprep: |
| $(MAKE) -C connect $@ |
| $(MAKE) -C sql $@ |
| $(MAKE) -C pgtypeslib $@ |
| $(MAKE) -C preproc $@ |
| $(MAKE) -C compat_informix $@ |
| $(MAKE) -C thread $@ |
| |
| clean distclean maintainer-clean: |
| $(MAKE) -C connect $@ |
| $(MAKE) -C sql $@ |
| $(MAKE) -C pgtypeslib $@ |
| $(MAKE) -C preproc $@ |
| $(MAKE) -C compat_informix $@ |
| $(MAKE) -C thread $@ |
| rm -rf tmp_check results log |
| rm -f pg_regress regression.diffs regression.out pg_regress_ecpg.o |
| |
| # Build regression test driver |
| |
| all: pg_regress$(X) |
| |
| pg_regress$(X): pg_regress_ecpg.o $(top_builddir)/src/test/regress/pg_regress.o |
| $(CC) $(CFLAGS) $(LDFLAGS) $^ $(LIBS) -o $@ |
| |
| $(top_builddir)/src/test/regress/pg_regress.o: |
| $(MAKE) -C $(dir $@) $(notdir $@) |
| |
| # dependencies ensure that path changes propagate |
| pg_regress_ecpg.o: pg_regress_ecpg.c $(top_builddir)/src/port/pg_config_paths.h |
| |
| $(top_builddir)/src/port/pg_config_paths.h: $(top_builddir)/src/Makefile.global |
| $(MAKE) -C $(top_builddir)/src/port pg_config_paths.h |
| |
| # When doing a VPATH build, copy over the .pgc, .stdout and .stderr |
| # files so that the driver script can find them. We have to use an |
| # absolute path for the targets, because otherwise make will try to |
| # locate the missing files using VPATH, and will find them in |
| # $(srcdir), but the point here is that we want to copy them from |
| # $(srcdir) to the build directory. |
| |
| ifdef VPATH |
| remaining_files_src := $(wildcard $(srcdir)/*/*.pgc) $(wildcard $(srcdir)/expected/*.c) $(wildcard $(srcdir)/expected/*.stdout) $(wildcard $(srcdir)/expected/*.stderr) |
| remaining_files_build := $(patsubst $(srcdir)/%, $(abs_builddir)/%, $(remaining_files_src)) |
| |
| all: $(remaining_files_build) |
| $(remaining_files_build): $(abs_builddir)/%: $(srcdir)/% |
| ln -s $< $@ |
| endif |
| |
| |
| check: all |
| ./pg_regress --dbname=regress1,connectdb --top-builddir=$(top_builddir) --temp-install=./tmp_check --multibyte=$(MULTIBYTE) --load-language=plpgsql $(NOLOCALE) $(THREAD) --schedule=$(srcdir)/ecpg_schedule --create-role=connectuser,connectdb |
| |
| # the same options, but with --listen-on-tcp |
| checktcp: all |
| ./pg_regress --dbname=regress1,connectdb --top-builddir=$(top_builddir) --temp-install=./tmp_check --multibyte=$(MULTIBYTE) --load-language=plpgsql $(NOLOCALE) $(THREAD) --schedule=$(srcdir)/ecpg_schedule_tcp --create-role=connectuser,connectdb --host=localhost |
| |
| installcheck: all |
| ./pg_regress --psqldir=$(PSQLDIR) --dbname=regress1,connectdb --top-builddir=$(top_builddir) --multibyte=$(MULTIBYTE) --load-language=plpgsql $(NOLOCALE) $(THREAD) --schedule=$(srcdir)/ecpg_schedule --create-role=connectuser,connectdb |