blob: 6c2a480796ee05c7957648e6844147525ac52ec1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
#-------------------------------------------------------------------------
#
# Makefile--
# Makefile for regress (the regression test)
#
# Copyright (c) 1994, Regents of the University of California
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/test/regress/Makefile,v 1.7 1996/11/12 11:16:44 scrappy Exp $
#
#-------------------------------------------------------------------------
MKDIR= ../../mk
include $(MKDIR)/postgres.mk
include $(MKDIR)/postgres.user.mk
CFLAGS+=-I../../include
#
# try locating libpq.a in the following places
#
LIBPQ:= -L$(srcdir)/libpq/$(objdir) -L$(LIBDIR) -lpq
LDADD+= $(LIBPQ)
#
# build dynamically-loaded object files
#
DLOBJS= regress$(SLSUFF)
#
# ... plus test query inputs
#
CREATEFILES= $(DLOBJS:%=$(objdir)/%) \
create.sql queries.sql errors.sql destroy.sql security.sql expected.out
OUTFILES= stud_emp.data onek.data regress.out aportal.out
CLEANFILES+= $(notdir $(CREATEFILES)) $(OUTFILES)
$(OUTFILES): $(CREATEFILES)
$(SHELL) ./regress.sh 2>&1 | tee $(objdir)/regress.out
@echo "RESULTS OF REGRESSION ARE SAVED IN $(objdir)/regress.out"
#
# expected results file -- expand macros for user and location
#
# the expected.input file is make by hand from 'regress.out' when the
# regression test has been updated and a successful output obtained
#
expected.out: expected.input
if [ -z "$$USER" ]; then USER=$$LOGNAME; fi; \
if [ -z "$$USER" ]; then USER=`whoami`; fi; \
if [ -z "$$USER" ]; then echo 'Cannot deduce $USER.'; exit 1; fi; \
rm -f $(objdir)/expected.out; \
C="`pwd`"; \
sed -e "s:_CWD_:$$C:g" \
-e "s:_OBJWD_:$$C/$(objdir):g" \
-e "s:_SLSUFF_:$(SLSUFF):g" \
-e "s/_USER_/$$USER/g" < expected.input > $(objdir)/expected.out
#
# prepare to run the test (including clean-up after the last run)
#
all:: $(CREATEFILES)
cd $(objdir); rm -f $(OUTFILES)
#
# run the test
#
runtest: expected.out regress.out
#
# installation
#
install: localobj all
|