Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit2203ede

Browse files
committed
Install pg_isolation_regress and isolationtester
We already install assorted tools for testing extensions, but these twowere missing. Having them installed, and after ISOLATION support wasadded to PGXS's makefiles byd3c09b9, helps third-party modulesusefully include isolation tests. Comparec3a0818.Author: Craig Ringer <craig.ringer@enterprisedb.com>Reviewed-by: Álvaro Herrera <alvherre@alvh.no-ip.org>Discussion:https://postgr.es/m/CAMsr+YFsCMH3B4uOPFE+2qWM6k=o=hf9LGiPNCfwqKdUPz_BsQ@mail.gmail.com
1 parentb05fe7b commit2203ede

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

‎src/test/isolation/Makefile

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,16 @@ OBJS = \
1818

1919
all: isolationtester$(X) pg_isolation_regress$(X)
2020

21-
# Though we don't install these binaries, build them during installation
22-
# (including temp-install). Otherwise, "make -j check-world" and "make -j
23-
# installcheck-world" would spawn multiple, concurrent builds in this
24-
# directory. Later builds would overwrite files while earlier builds are
25-
# reading them, causing occasional failures.
26-
install: | all
21+
install: all installdirs
22+
$(INSTALL_PROGRAM) pg_isolation_regress$(X)'$(DESTDIR)$(pgxsdir)/$(subdir)/pg_isolation_regress$(X)'
23+
$(INSTALL_PROGRAM) isolationtester$(X)'$(DESTDIR)$(pgxsdir)/$(subdir)/isolationtester$(X)'
24+
25+
installdirs:
26+
$(MKDIR_P)'$(DESTDIR)$(pgxsdir)/$(subdir)'
27+
28+
uninstall:
29+
rm -f'$(DESTDIR)$(pgxsdir)/$(subdir)/pg_isolation_regress$(X)'
30+
rm -f'$(DESTDIR)$(pgxsdir)/$(subdir)/isolationtester$(X)'
2731

2832
submake-regress:
2933
$(MAKE) -C$(top_builddir)/src/test/regress pg_regress.o

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp