installcheck missing in src/bin/pg_rewind/Makefile
Hi all,
As mentioned in $subject, the TAP tests of pg_rewind are currently not
run by buildfarm machines as the buildfarm client uses installcheck to
run the tests in src/bin. A patch is attached to correct the problem.
Regards,
--
Michael
Attachments:
20150421_pgrewind_installcheck.patchtext/x-patch; charset=US-ASCII; name=20150421_pgrewind_installcheck.patchDownload
diff --git a/src/bin/pg_rewind/Makefile b/src/bin/pg_rewind/Makefile
index e3400f5..98213c4 100644
--- a/src/bin/pg_rewind/Makefile
+++ b/src/bin/pg_rewind/Makefile
@@ -49,3 +49,6 @@ clean distclean maintainer-clean:
check:
$(prove_check)
+
+installcheck:
+ $(prove_installcheck)
On 04/21/2015 07:13 AM, Michael Paquier wrote:
Hi all,
As mentioned in $subject, the TAP tests of pg_rewind are currently not
run by buildfarm machines as the buildfarm client uses installcheck to
run the tests in src/bin. A patch is attached to correct the problem.
Thanks, applied.
(I left out the installcheck target originally because I somehow thought
that it would run the tests against an existing cluster, which wouldn't
work. But of course that's not how it works. It uses the installed
binaries, but creates a new temporary cluster for the tests)
- Heikki
--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers