diff options
author | Noah Misch <noah@leadboat.com> | 2017-11-05 18:51:08 -0800 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2017-11-05 18:51:08 -0800 |
commit | c66b438db62748000700c9b90b585e756dd54141 (patch) | |
tree | 17b581f6d427a346e9c33346de8a303fb2cbf2b5 /src/test/modules/commit_ts | |
parent | b35b185bf705c4dbaf21198c81b3d85f4a96804a (diff) | |
download | postgresql-c66b438db62748000700c9b90b585e756dd54141.tar.gz postgresql-c66b438db62748000700c9b90b585e756dd54141.zip |
Add a temp-install prerequisite to "check"-like targets not having one.
Makefile.global assigns this prerequisite to every target named "check",
but similar targets must mention it explicitly. Affected targets
failed, tested $PATH binaries, or tested a stale temporary installation.
The src/test/modules examples worked properly when called as "make -C
src/test/modules/$FOO check", but "make -j" allowed the test to start
before the temporary installation was in place. Back-patch to 9.5,
where commit dcae5faccab64776376d354decda0017c648bb53 introduced the
shared temp-install.
Diffstat (limited to 'src/test/modules/commit_ts')
-rw-r--r-- | src/test/modules/commit_ts/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/modules/commit_ts/Makefile b/src/test/modules/commit_ts/Makefile index 86b93b5e762..6d4f3be358e 100644 --- a/src/test/modules/commit_ts/Makefile +++ b/src/test/modules/commit_ts/Makefile @@ -16,5 +16,5 @@ endif check: prove-check -prove-check: +prove-check: | temp-install $(prove_check) |