Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
86ef4796
Commit
86ef4796
authored
11 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
build: pass EXTRA_REGRESS_OPTS to secondary regression tests
Christoph Berg
parent
5043fc82
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
contrib/pg_upgrade/Makefile
+1
-1
1 addition, 1 deletion
contrib/pg_upgrade/Makefile
src/Makefile.global.in
+2
-2
2 additions, 2 deletions
src/Makefile.global.in
src/test/isolation/Makefile
+4
-4
4 additions, 4 deletions
src/test/isolation/Makefile
with
7 additions
and
7 deletions
contrib/pg_upgrade/Makefile
+
1
−
1
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
...
...
This diff is collapsed.
Click to expand it.
src/Makefile.global.in
+
2
−
2
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/
...
...
This diff is collapsed.
Click to expand it.
src/test/isolation/Makefile
+
4
−
4
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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment