Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
86ef4796
Commit
86ef4796
authored
Dec 04, 2013
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build: pass EXTRA_REGRESS_OPTS to secondary regression tests
Christoph Berg
parent
5043fc82
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
contrib/pg_upgrade/Makefile
contrib/pg_upgrade/Makefile
+1
-1
src/Makefile.global.in
src/Makefile.global.in
+2
-2
src/test/isolation/Makefile
src/test/isolation/Makefile
+4
-4
No files found.
contrib/pg_upgrade/Makefile
View file @
86ef4796
...
...
@@ -25,7 +25,7 @@ include $(top_srcdir)/contrib/contrib-global.mk
endif
check
:
test.sh all
MAKE
=
$(MAKE)
bindir
=
$(bindir)
libdir
=
$(libdir)
$(SHELL)
$<
--install
MAKE
=
$(MAKE)
bindir
=
$(bindir)
libdir
=
$(libdir)
EXTRA_REGRESS_OPTS
=
"
$(EXTRA_REGRESS_OPTS)
"
$(SHELL)
$<
--install
# disabled because it upsets the build farm
#installcheck: test.sh
...
...
src/Makefile.global.in
View file @
86ef4796
...
...
@@ -458,8 +458,8 @@ endif
pg_regress_locale_flags
=
$(
if
$(ENCODING)
,--encoding
=
$(ENCODING)
)
$(NOLOCALE)
pg_regress_check
=
$(top_builddir)
/src/test/regress/pg_regress
--inputdir
=
$(srcdir)
--temp-install
=
./tmp_check
--top-builddir
=
$(top_builddir)
$(pg_regress_locale_flags)
pg_regress_installcheck
=
$(top_builddir)
/src/test/regress/pg_regress
--inputdir
=
$(srcdir)
--psqldir
=
'
$(PSQLDIR)
'
$(pg_regress_locale_flags)
pg_regress_check
=
$(top_builddir)
/src/test/regress/pg_regress
--inputdir
=
$(srcdir)
--temp-install
=
./tmp_check
--top-builddir
=
$(top_builddir)
$(pg_regress_locale_flags)
$(EXTRA_REGRESS_OPTS)
pg_regress_installcheck
=
$(top_builddir)
/src/test/regress/pg_regress
--inputdir
=
$(srcdir)
--psqldir
=
'
$(PSQLDIR)
'
$(pg_regress_locale_flags)
$(EXTRA_REGRESS_OPTS)
pg_regress_clean_files
=
results/ regression.diffs regression.out tmp_check/ log/
...
...
src/test/isolation/Makefile
View file @
86ef4796
...
...
@@ -52,17 +52,17 @@ maintainer-clean: distclean
rm
-f
specparse.c specscanner.c
installcheck
:
all
./pg_isolation_regress
--psqldir
=
'
$(PSQLDIR)
'
--inputdir
=
$(srcdir)
--schedule
=
$(srcdir)
/isolation_schedule
./pg_isolation_regress
--psqldir
=
'
$(PSQLDIR)
'
$(EXTRA_REGRESS_OPTS)
--inputdir
=
$(srcdir)
--schedule
=
$(srcdir)
/isolation_schedule
check
:
all
./pg_isolation_regress
--temp-install
=
./tmp_check
--inputdir
=
$(srcdir)
--top-builddir
=
$(top_builddir)
--schedule
=
$(srcdir)
/isolation_schedule
./pg_isolation_regress
--temp-install
=
./tmp_check
--inputdir
=
$(srcdir)
--top-builddir
=
$(top_builddir)
$(EXTRA_REGRESS_OPTS)
--schedule
=
$(srcdir)
/isolation_schedule
# Versions of the check tests that include the prepared_transactions test
# It only makes sense to run these if set up to use prepared transactions,
# via TEMP_CONFIG for the check case, or via the postgresql.conf for the
# installcheck case.
installcheck-prepared-txns
:
all
./pg_isolation_regress
--psqldir
=
'
$(PSQLDIR)
'
--inputdir
=
$(srcdir)
--schedule
=
$(srcdir)
/isolation_schedule prepared-transactions
./pg_isolation_regress
--psqldir
=
'
$(PSQLDIR)
'
$(EXTRA_REGRESS_OPTS)
--inputdir
=
$(srcdir)
--schedule
=
$(srcdir)
/isolation_schedule prepared-transactions
check-prepared-txns
:
all
./pg_isolation_regress
--temp-install
=
./tmp_check
--inputdir
=
$(srcdir)
--top-builddir
=
$(top_builddir)
--schedule
=
$(srcdir)
/isolation_schedule prepared-transactions
./pg_isolation_regress
--temp-install
=
./tmp_check
$(EXTRA_REGRESS_OPTS)
--inputdir
=
$(srcdir)
--top-builddir
=
$(top_builddir)
--schedule
=
$(srcdir)
/isolation_schedule prepared-transactions
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment