File tree Expand file tree Collapse file tree 6 files changed +9
-8
lines changed Expand file tree Collapse file tree 6 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ check: all
81
81
$(with_temp_install ) ./pg_regress $(REGRESS_OPTS ) --temp-instance=./tmp_check $(TEMP_CONF ) --bindir= $(pg_regress_locale_flags ) $(THREAD ) --schedule=$(srcdir ) /ecpg_schedule sql/twophase
82
82
83
83
# the same options, but with --listen-on-tcp
84
- checktcp : all
84
+ checktcp : all | temp-install
85
85
$(with_temp_install ) ./pg_regress $(REGRESS_OPTS ) --temp-instance=./tmp_check $(TEMP_CONF ) --bindir= $(pg_regress_locale_flags ) $(THREAD ) --schedule=$(srcdir ) /ecpg_schedule_tcp --host=localhost
86
86
87
87
installcheck : all
@@ -95,5 +95,5 @@ installcheck: all
95
95
installcheck-prepared-txns : all
96
96
./pg_regress $(REGRESS_OPTS ) --bindir=' $(bindir)' $(pg_regress_locale_flags ) $(THREAD ) --schedule=$(srcdir ) /ecpg_schedule sql/twophase
97
97
98
- check-prepared-txns : all
98
+ check-prepared-txns : all | temp-install
99
99
$(with_temp_install ) ./pg_regress $(REGRESS_OPTS ) --temp-instance=./tmp_check $(TEMP_CONF ) --bindir= $(pg_regress_locale_flags ) $(THREAD ) --schedule=$(srcdir ) /ecpg_schedule sql/twophase
Original file line number Diff line number Diff line change @@ -16,5 +16,6 @@ clean distclean maintainer-clean:
16
16
$(MAKE ) -C $$ d clean || exit ; \
17
17
done
18
18
19
+ # These behave like installcheck targets.
19
20
check-% : all
20
21
@$(MAKE ) -C ` echo $@ | sed ' s/^check-//' ` test
Original file line number Diff line number Diff line change @@ -21,13 +21,13 @@ endif
21
21
22
22
check : isolation-check prove-check
23
23
24
- isolation-check : | submake-isolation
24
+ isolation-check : | submake-isolation temp-install
25
25
$(MKDIR_P ) isolation_output
26
26
$(pg_isolation_regress_check ) \
27
27
--outputdir=./isolation_output \
28
28
$(ISOLATIONCHECKS )
29
29
30
- prove-check :
30
+ prove-check : | temp-install
31
31
$(prove_check )
32
32
33
33
.PHONY : check isolation-check prove-check
Original file line number Diff line number Diff line change 16
16
17
17
check : prove-check
18
18
19
- prove-check :
19
+ prove-check : | temp-install
20
20
$(prove_check )
Original file line number Diff line number Diff line change 21
21
22
22
check : prove-check
23
23
24
- prove-check :
24
+ prove-check : | temp-install
25
25
$(prove_check )
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ REGRESS_OPTS = --dlpath=. --max-concurrent-tests=20 $(EXTRA_REGRESS_OPTS)
129
129
check : all tablespace-setup
130
130
$(pg_regress_check ) $(REGRESS_OPTS ) --schedule=$(srcdir ) /parallel_schedule $(MAXCONNOPT ) $(EXTRA_TESTS )
131
131
132
- check-tests : all tablespace-setup
132
+ check-tests : all tablespace-setup | temp-install
133
133
$(pg_regress_check ) $(REGRESS_OPTS ) $(MAXCONNOPT ) $(TESTS ) $(EXTRA_TESTS )
134
134
135
135
installcheck : all tablespace-setup
@@ -153,7 +153,7 @@ runtest-parallel: installcheck-parallel
153
153
bigtest : all tablespace-setup
154
154
$(pg_regress_installcheck ) $(REGRESS_OPTS ) --schedule=$(srcdir ) /serial_schedule numeric_big
155
155
156
- bigcheck : all tablespace-setup
156
+ bigcheck : all tablespace-setup | temp-install
157
157
$(pg_regress_check ) $(REGRESS_OPTS ) --schedule=$(srcdir ) /parallel_schedule $(MAXCONNOPT ) numeric_big
158
158
159
159
You can’t perform that action at this time.
0 commit comments